mirror of
https://github.com/linuxserver/docker-webtop.git
synced 2025-07-31 01:24:47 +02:00
12 lines
357 B
Bash
Executable File
12 lines
357 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
|
|
setterm blank 0
|
|
setterm powerdown 0
|
|
/usr/bin/startplasma-x11 > /dev/null 2>&1
|