diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-06-23 02:55:59 -0500 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-06-23 02:55:59 -0500 |
commit | 573911316dc44f4572984d672f3235dc7397d715 (patch) | |
tree | 68ea7e3e0bf0b84f853a844503c1be4c6575a8d5 | |
parent | be32732db2830b50d6400665ddcd4ed71c0805cc (diff) | |
download | horizon-573911316dc44f4572984d672f3235dc7397d715.tar.gz horizon-573911316dc44f4572984d672f3235dc7397d715.tar.bz2 horizon-573911316dc44f4572984d672f3235dc7397d715.tar.xz horizon-573911316dc44f4572984d672f3235dc7397d715.zip |
boot: Set background and disable compositing
-rw-r--r-- | boot/README.rst | 4 | ||||
-rw-r--r-- | boot/kwinrc | 2 | ||||
-rwxr-xr-x | boot/start-horizon-qt5 | 1 |
3 files changed, 7 insertions, 0 deletions
diff --git a/boot/README.rst b/boot/README.rst index b8f46f2..04f4e34 100644 --- a/boot/README.rst +++ b/boot/README.rst @@ -55,6 +55,10 @@ Directory Layout SDDM configuration file to automatically start the Horizon wizard. Installed as ``/etc/sddm.conf.d/horizon.conf``. +``kwinrc`` + KWin configuration file. + Installed as ``/etc/xdg/kwinrc``. + ``qt5ct.conf`` Qt 5 theme. Installed as ``/usr/share/qt5ct/qt5ct.conf``. diff --git a/boot/kwinrc b/boot/kwinrc new file mode 100644 index 0000000..b5b0784 --- /dev/null +++ b/boot/kwinrc @@ -0,0 +1,2 @@ +[Compositing] +Enabled=false diff --git a/boot/start-horizon-qt5 b/boot/start-horizon-qt5 index 0541de6..ce27931 100755 --- a/boot/start-horizon-qt5 +++ b/boot/start-horizon-qt5 @@ -1,5 +1,6 @@ #!/bin/sh +xsetroot -bg "Steel Blue" kwin_x11 & horizon-qt5 if [ $? -eq 0 ]; then |