diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 15:42:20 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-06-14 15:42:20 +1000 |
| commit | b5a91d3ca57d1369d0b7b502112c4b4c9849d26c (patch) | |
| tree | 8ea45e54e0b0c826f65f54ebf82e41cb68163221 /install/safeeyes.fish | |
| parent | feat: impl pip subcommand (diff) | |
| download | caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.tar.gz caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.tar.bz2 caelestia-cli-b5a91d3ca57d1369d0b7b502112c4b4c9849d26c.zip | |
internal: remove all legacy fish scripts
Diffstat (limited to 'install/safeeyes.fish')
| -rwxr-xr-x | install/safeeyes.fish | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/install/safeeyes.fish b/install/safeeyes.fish deleted file mode 100755 index bbea62b..0000000 --- a/install/safeeyes.fish +++ /dev/null @@ -1,34 +0,0 @@ -#!/usr/bin/env fish - -. (dirname (status filename))/util.fish - -install-deps git dart-sass aylurs-gtk-shell-git alsa-utils libappindicator-gtk3 - -# Update/Clone repo -update-repo safeeyes $C_DATA/safeeyes - -if which systemctl &> /dev/null - log 'Installing systemd service...' - - set -l systemd $CONFIG/systemd/user - mkdir -p $systemd - echo -n " -[Unit] -Description=Protect your eyes from eye strain using this simple and beautiful, yet extensible break reminder. -After=graphical-session.target - -[Service] -Type=exec -ExecStart=/usr/bin/ags run -d $C_DATA/safeeyes -Restart=on-failure -Slice=app-graphical.slice - -[Install] -WantedBy=graphical-session.target -" > $systemd/caelestia-safeeyes.service - - systemctl --user daemon-reload - systemctl --user enable --now caelestia-safeeyes.service -end - -log 'Done.' |