distribution/packages/jelos/sources/scripts/getshaders
fewtarius 8ce7d8436d
* Deprecate overlayfs for RetroArch as it's unnecessary complexity that requires resyncing.
* Fix pcsx_rearmed so the 64bit version is called from runemu.
2022-04-20 16:33:47 -04:00

10 lines
338 B
Bash
Executable file

#!/bin/sh
# SPDX-License-Identifier: GPL-2.0-or-later
# Copyright (C) 2020-present Shanti Gilbert (https://github.com/shantigilbert)
# Copyright (C) 2022 Fewtarius (https://github.com/fewtarius)
find /usr/share/common-shaders -name '*.glslp' -print0 |
while IFS= read -r -d '' line; do
echo ${line#/usr/share/common-shaders/},
done