mirror of
https://git.davidovski.xyz/dot.git
synced 2024-08-15 00:43:28 +00:00
17 lines
252 B
Text
17 lines
252 B
Text
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
if [ "$2" = "suspend" ] || [ "$2" = "hybrid-sleep" ]
|
||
|
then
|
||
|
case "$1" in
|
||
|
pre)
|
||
|
true
|
||
|
;;
|
||
|
post)
|
||
|
sleep 1
|
||
|
pkill -f 'brave \-\-type=gpu-process'
|
||
|
;;
|
||
|
esac
|
||
|
fi
|