mirror of
https://github.com/linuxserver/docker-webtop.git
synced 2025-11-14 18:09:55 +01:00
* rebase fedora-kde to new kasmvnc baseimage * remove debug * 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>
15 lines
521 B
Bash
Executable File
15 lines
521 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ ! -f $HOME/.config/kwinrc ]; then
|
|
kwriteconfig5 --file $HOME/.config/kwinrc --group Compositing --key Enabled false
|
|
fi
|
|
if [ ! -f $HOME/.config/kscreenlockerrc ]; then
|
|
kwriteconfig5 --file $HOME/.config/kscreenlockerrc --group Daemon --key Autolock false
|
|
fi
|
|
if [ ! -f $HOME/.config/kdeglobals ]; then
|
|
kwriteconfig5 --file $HOME/.config/kdeglobals --group KDE --key LookAndFeelPackage org.fedoraproject.fedora.desktop
|
|
fi
|
|
setterm blank 0
|
|
setterm powerdown 0
|
|
/usr/bin/startplasma-x11 > /dev/null 2>&1
|