13 lines
272 B
Bash
Executable file
13 lines
272 B
Bash
Executable file
#!/bin/sh
|
|
|
|
PIDFILE="/tmp/.compositing_mgr_$DISPLAY.pid"
|
|
|
|
if [ -e "$PIDFILE" ]; then
|
|
kill `cat "$PIDFILE"`
|
|
rm "$PIDFILE"
|
|
else
|
|
#compton -c -f -C -t-5 -l-5 -r4.2 -o.55 -I0.08 -O0.08 -D16 &
|
|
compton -cCzf -O 0.035 --backend glx --blur-background &
|
|
echo $! > "$PIDFILE"
|
|
fi
|