summaryrefslogtreecommitdiff
path: root/install/discord.fish
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-06-14 22:50:55 +1000
committerGitHub <noreply@github.com>2025-06-14 22:50:55 +1000
commitee7291b7f64a359d17eb1d050086ef5357d79055 (patch)
treef1c200d8c8ba81030cbb2113a2be122db6508c8f /install/discord.fish
parentMerge pull request #5 from dalpax/patch-1 (diff)
parentMerge branch 'main' into python-rework (diff)
downloadcaelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.tar.gz
caelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.tar.bz2
caelestia-cli-ee7291b7f64a359d17eb1d050086ef5357d79055.zip
Merge pull request #6 from caelestia-dots/python-rework
feat: rewrite in python
Diffstat (limited to 'install/discord.fish')
-rwxr-xr-xinstall/discord.fish26
1 files changed, 0 insertions, 26 deletions
diff --git a/install/discord.fish b/install/discord.fish
deleted file mode 100755
index a01538f..0000000
--- a/install/discord.fish
+++ /dev/null
@@ -1,26 +0,0 @@
-#!/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.'