You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
395 B
Bash
16 lines
395 B
Bash
#!/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
|