diff options
author | Mark Nipper <nipsy@bitgnome.net> | 2025-02-17 10:20:32 -0800 |
---|---|---|
committer | Mark Nipper <nipsy@bitgnome.net> | 2025-02-17 10:20:32 -0800 |
commit | bb3dde2d935a0dbb7662f88efaac2d5d53310fda (patch) | |
tree | c422096479daf23b3ccfaaea2562ed02f3a0d689 /home | |
parent | 07a41b935eb60ed34c9eb1744f6dea07fef65138 (diff) | |
download | nix-bb3dde2d935a0dbb7662f88efaac2d5d53310fda.tar nix-bb3dde2d935a0dbb7662f88efaac2d5d53310fda.tar.gz nix-bb3dde2d935a0dbb7662f88efaac2d5d53310fda.tar.bz2 nix-bb3dde2d935a0dbb7662f88efaac2d5d53310fda.tar.lz nix-bb3dde2d935a0dbb7662f88efaac2d5d53310fda.tar.xz nix-bb3dde2d935a0dbb7662f88efaac2d5d53310fda.tar.zst nix-bb3dde2d935a0dbb7662f88efaac2d5d53310fda.zip |
Fix Steam path reference
Diffstat (limited to 'home')
-rwxr-xr-x | home/nipsy/common/optional/desktops/i3/xscreensaver-activate | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/nipsy/common/optional/desktops/i3/xscreensaver-activate b/home/nipsy/common/optional/desktops/i3/xscreensaver-activate index edcfa62..05f98fa 100755 --- a/home/nipsy/common/optional/desktops/i3/xscreensaver-activate +++ b/home/nipsy/common/optional/desktops/i3/xscreensaver-activate @@ -75,7 +75,7 @@ while true; do fi # a Steam game is running - elif ps axfu | grep '/home/nipsy/.steam/debian-installation/steamapps/common' | grep -qv grep; then + elif ps axfu | grep -v grep | grep -q '/home/nipsy/.local/share/Steam/steamapps/common/'; then # make sure xscreensaver is even running before telling it to stay idle if pidof xscreensaver &>/dev/null; then |