install: better discord install + fix broken links

Take any number of inputs
Hardcode some custom clients
For some reason test -e doesnt count broken links as existing idk why
This commit is contained in:
2 * r + 2 * t
2025-03-02 22:38:36 +11:00
parent edacf1ef06
commit 4f4109784d
2 changed files with 10 additions and 10 deletions
+8 -8
View File
@@ -1,16 +1,10 @@
#!/bin/fish
if test -z "$argv[1]"
echo 'Usage: caelestia install discord <client_config_folder_name>'
exit 1
end
. (dirname (status filename))/util.fish
install-deps git
install-optional-deps 'arrpc (rich presence)'
set -l client $CONFIG/$argv[1]
set -l dist $C_DATA/discord
# Update/Clone repo
@@ -19,7 +13,13 @@ update-repo discord $dist
# Install systemd service
setup-systemd-monitor discord $dist
# Link themes to client config
install-link $dist/themes $client/themes
# Link themes to client configs
set -l clients discord vesktop equibop legcord $argv
for client in $clients
if test -d $CONFIG/$client
log "Linking themes for $client"
install-link $dist/themes $CONFIG/$client/themes
end
end
log 'Done.'