mirror of
https://github.com/linuxserver/docker-webtop.git
synced 2025-09-02 23:48:32 +02:00
* rebase arch-xfce to new kasmvnc baseimage * swap to os for tagging * point readme to master screen blanking tweeks * update bin wrapper to pass cli options --------- Co-authored-by: ryan.kuba <ryan.kuba@kasmweb.com> Co-authored-by: thelamer <ryankuba@gmai.com>
11 lines
361 B
Bash
Executable File
11 lines
361 B
Bash
Executable File
#!/bin/bash
|
|
|
|
setterm blank 0
|
|
setterm powerdown 0
|
|
if [ -f "${HOME}"/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml ]; then
|
|
sed -i \
|
|
'/use_compositing/c <property name="use_compositing" type="bool" value="false"/>' \
|
|
"${HOME}"/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml
|
|
fi
|
|
/usr/bin/dbus-launch /usr/bin/startxfce4 --replace > /dev/null 2>&1
|