diff options
| -rw-r--r-- | .github/workflows/update-flake-inputs.yml | 2 | ||||
| -rwxr-xr-x | run.fish | 9 |
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 |