Add Protontricks

This commit is contained in:
CronyAkatsuki 2024-03-27 12:33:52 +01:00
parent 1fa2752721
commit 556cdd82ec
3 changed files with 17 additions and 0 deletions

View File

@ -61,6 +61,7 @@
starsector # Nice little game I got coaxed into trying starsector # Nice little game I got coaxed into trying
inputs.hb-downloader.packages.${pkgs.system}.default # My custom humble bundle bulk link extractor for aria2 list format inputs.hb-downloader.packages.${pkgs.system}.default # My custom humble bundle bulk link extractor for aria2 list format
protonup-qt # Proton ge manager protonup-qt # Proton ge manager
protontricks # Tricks
ungoogled-chromium # For sites that don't work with firefox based browsers ungoogled-chromium # For sites that don't work with firefox based browsers
abcde # CLI audio ripper abcde # CLI audio ripper
jellyfin-mpv-shim # Jellyfin media with mpv jellyfin-mpv-shim # Jellyfin media with mpv

View File

@ -0,0 +1,8 @@
#!/usr/bin/env sh
for File in *.cue
do
[ -f "$File" ] || continue
chdman createcd -i "$File" -o "${File%.cue}.chd"
rm -v "$File" "${File%.cue}.bin"
done

View File

@ -0,0 +1,8 @@
#!/usr/bin/env sh
for File in *.iso
do
[ -f "$File" ] || continue
chdman createcd -i "$File" -o "${File%.iso}.chd"
rm -v "$File"
done