From: Silvio Rhatto Date: Sat, 28 Jan 2023 15:46:47 +0000 (-0300) Subject: Feat: provision: openbox: additional xsession config X-Git-Tag: 0.1.0~28 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=refs%2Fheads%2Fdevelop;p=kvmx.git Feat: provision: openbox: additional xsession config --- diff --git a/share/provision/debian/openbox b/share/provision/debian/openbox index df47622..0791ea1 100755 --- a/share/provision/debian/openbox +++ b/share/provision/debian/openbox @@ -37,4 +37,21 @@ fi # Custom xsession config if [ -f "$HOME/.custom/xsession" ]; then sed -i -e 's/^WINDOW_MANAGER=.*$/WINDOW_MANAGER="openbox"/' $HOME/.custom/xsession + + echo "" > $HOME/.custom/xsession + echo '# Custom config' >> $HOME/.custom/xsession + echo 'PROGRAMS="$PROGRAMS tint2"' >> $HOME/.custom/xsession + + cat <<-EOF > $HOME/.custom/xsession-ready +#!/bin/bash +# +# xsession-ready: runs after the X11 session is ready +# + +# Fix the background color due to window resize +sleep 20 +xsetroot -solid '#1C1C1C' +EOF + + chmod +x $HOME/.custom/xsession-ready fi