mirror of
https://github.com/brain-hackers/brain-config.git
synced 2024-11-05 09:48:03 +09:00
Only run xcompmgr if openbox is running
This commit is contained in:
parent
8607dbc728
commit
7171417561
6
debian/changelog
vendored
6
debian/changelog
vendored
@ -1,3 +1,9 @@
|
||||
raspi-config (20210604) bullseye; urgency=medium
|
||||
|
||||
* Disable xcompmgr when openbox not running
|
||||
|
||||
-- Simon Long <simon@raspberrypi.com> Fri, 04 Jun 2021 13:53:42 +0100
|
||||
|
||||
raspi-config (20210212) buster; urgency=medium
|
||||
|
||||
* Update boot order menu
|
||||
|
2
debian/compat
vendored
2
debian/compat
vendored
@ -1 +1 @@
|
||||
9
|
||||
10
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/bin/sh
|
||||
if grep -q okay /proc/device-tree/soc/v3d@7ec00000/status 2> /dev/null || grep -q okay /proc/device-tree/soc/firmwarekms@7e600000/status 2> /dev/null ; then
|
||||
exec xcompmgr -aR
|
||||
if ps ax | grep -v grep | grep -q openbox ; then
|
||||
exec xcompmgr -aR
|
||||
fi
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user