mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-26 09:35:24 +00:00
13 lines
229 B
Plaintext
13 lines
229 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
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
|