summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/update-flake-inputs.yml2
-rwxr-xr-xrun.fish9
2 files changed, 1 insertions, 10 deletions
diff --git a/.github/workflows/update-flake-inputs.yml b/.github/workflows/update-flake-inputs.yml
index e5d0d42..0bb4bb3 100644
--- a/.github/workflows/update-flake-inputs.yml
+++ b/.github/workflows/update-flake-inputs.yml
@@ -74,7 +74,7 @@ jobs:
- name: Check for changes
id: check
- run: echo modified=$(test -n "$(git status --porcelain)" && echo 'true' || echo 'false') >> $GITHUB_OUTPUT
+ run: echo modified=$(git diff --exit-code flake.lock && echo 'false' || echo 'true') >> $GITHUB_OUTPUT
- name: Commit and push changes
if: steps.check.outputs.modified == 'true'
diff --git a/run.fish b/run.fish
deleted file mode 100755
index ada4152..0000000
--- a/run.fish
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/usr/bin/env fish
-
-set -l dbus 'quickshell.dbus.properties.warning = false;quickshell.dbus.dbusmenu.warning = false' # System tray dbus property errors
-set -l notifs 'quickshell.service.notifications.warning = false' # Notification server warnings on reload
-set -l sni 'quickshell.service.sni.host.warning = false' # StatusNotifierItem warnings on reload
-set -l process 'QProcess: Destroyed while process' # Long running processes on reload
-set -l cache "Cannot open: file://$XDG_CACHE_HOME/caelestia/imagecache/"
-
-qs -p (dirname (status filename)) --log-rules "$dbus;$notifs;$sni" | grep -vF -e $process -e $cache