mirror of
https://github.com/kasmtech/KasmVNC.git
synced 2024-11-22 16:13:13 +01:00
16 lines
395 B
Bash
Executable File
16 lines
395 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo -e "\n------------------ Xfce4 window manager startup------------------"
|
|
|
|
### disable screen saver and power management
|
|
xset -dpms &
|
|
xset s noblank &
|
|
xset s off &
|
|
|
|
if [ "$SINGLE_APPLICATION" -eq "1" ]; then
|
|
echo "Configured of Single Application Mode"
|
|
sed -i "s/O|SHMC/|/g" $HOME/.config/xfce4/xfconf/xfce-perchannel-xml/xfwm4.xml
|
|
#xfwm4 --daemon
|
|
fi
|