mirror of
https://github.com/SinTan1729/random.git
synced 2024-12-26 13:18:35 -06:00
11 lines
352 B
Bash
11 lines
352 B
Bash
#!/bin/sh
|
|
|
|
# This script replaces the Plasma sessions after waking up from hibernation.
|
|
# It's a temporary fix for the app menu breaking after waking up from hibernation.
|
|
# Have to place this script inside `/lib/systemd/system-sleep` and make it executable for it to work.
|
|
|
|
case $1/$2 in
|
|
post/hibernate)
|
|
DISPLAY=:0 kwin_x11 --replace
|
|
;;
|
|
esac
|