Add Protontricks
This commit is contained in:
parent
1fa2752721
commit
556cdd82ec
@ -61,6 +61,7 @@
|
||||
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
|
||||
protonup-qt # Proton ge manager
|
||||
protontricks # Tricks
|
||||
ungoogled-chromium # For sites that don't work with firefox based browsers
|
||||
abcde # CLI audio ripper
|
||||
jellyfin-mpv-shim # Jellyfin media with mpv
|
||||
|
8
home-manager/modules/scripts/cue2chd
Executable file
8
home-manager/modules/scripts/cue2chd
Executable 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
|
8
home-manager/modules/scripts/iso2chd
Executable file
8
home-manager/modules/scripts/iso2chd
Executable 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
|
Loading…
Reference in New Issue
Block a user