blob: a01538fa65a10e9b93858fd3ba0f9c0db9d8033d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#!/usr/bin/env fish
. (dirname (status filename))/util.fish
install-deps git discord equicord-installer-bin
sudo Equilotl -install -location /opt/discord
sudo Equilotl -install-openasar -location /opt/discord
set -l dist $C_DATA/discord
# Update/Clone repo
update-repo discord $dist
# Install systemd service
setup-systemd-monitor discord $dist
# Link themes to client configs
set -l clients Vencord Equicord 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.'
|