[presets] update steam

This commit is contained in:
Philip Mueller
2023-07-03 15:56:02 +02:00
parent e4c9ded69f
commit b3d6b09f61
6 changed files with 128 additions and 71 deletions

View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -eu
TARGETS=('/bin/bash /usr/bin/gamescope-session'
'/usr/bin/kwin_x11')
for target in "${TARGETS[@]}"; do
for processtree in $(pgrep -xf "$target" || true); do
kill -- "-$processtree"
done
done