scheme: new way of tracking

centralise the colours so all of them are kept here
This commit is contained in:
2 * r + 2 * t
2025-02-19 17:26:31 +11:00
parent bd45501b31
commit 066b9256b2
17 changed files with 188 additions and 288 deletions
+15
View File
@@ -5,8 +5,23 @@
install-deps git adw-gtk-theme
set -l gtk $CONFIG/gtk
set -l systemd $CONFIG/../systemd/user
confirm-overwrite $gtk
git clone 'https://github.com/caelestia-dots/gtk.git' $gtk
# Install systemd service
if test -d $systemd
log 'Installing systemd service...'
echo "[Service]
Type=oneshot
ExecStart=$gtk/monitor/update.fish" > $systemd/gtk-monitor-scheme.service
cp $gtk/monitor/gtk-monitor-scheme.path $systemd/gtk-monitor-scheme.path
systemctl --user daemon-reload
systemctl --user enable --now gtk-monitor-scheme.path
systemctl --user start gtk-monitor-scheme.service
end
log 'Done.'