mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-01-18 13:18:40 +00:00
13 lines
229 B
Bash
Executable File
13 lines
229 B
Bash
Executable File
#!/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
|