somewhat broken compton toggle fixed

This commit is contained in:
Von Random 2017-08-15 12:40:00 +03:00
parent 8546396fd9
commit bca8ee86a3

View file

@ -11,11 +11,11 @@ if [[ -r $pidfile ]]; then
fi fi
if [[ -e $nvidia_dev ]]; then if [[ -e $nvidia_dev ]]; then
vsync_backend= gpu_opts=
else else
vsync_backend=('--vsync' 'drm') gpu_opts=(--dbe --vsync opengl --backend xrender)
fi fi
compton $vsync_backend[@] -cGC -t-5 -l-5 -r4 -o.55 -m.9 & compton $gpu_opts[@] -cGC -t-5 -l-5 -r4 -o.55 &
pid=$! pid=$!
if [[ -n $pid ]]; then if [[ -n $pid ]]; then
printf '%s' $pid > $pidfile printf '%s' $pid > $pidfile