diff --git a/Main.qml b/Main.qml index 31c6e49..4f73cfa 100644 --- a/Main.qml +++ b/Main.qml @@ -376,6 +376,7 @@ Rectangle { anchors.top: parent.top; anchors.horizontalCenter: parent.horizontalCenter color: "transparent" + visible: config.showTopBar != "false" Row { id: row_left diff --git a/README.md b/README.md index 46ac8b5..31b6f61 100644 --- a/README.md +++ b/README.md @@ -56,6 +56,7 @@ You can change a few settings in this file - `showClearPasswordButton` - if set to false will hide the clear password button that appears when text is inputed - `passwordLeftMargin` and `usernameLeftMargin` - set margin between input boxes and labels, some fonts are messy and allows fixing of overlap - `relativePositionX` and `relativePositionY` - position the login text box and clock +- `showTopBar` - if set to false will hide the wm/keyboard top bar Example config (not the same as the screenshots): @@ -67,6 +68,7 @@ displayFont="Misc Fixed" showLoginButton=false passwordLeftMargin=15 usernameLeftMargin=15 +showTopBar=true ``` ## Preview diff --git a/theme.conf b/theme.conf index 4d274cc..fcf35b0 100644 --- a/theme.conf +++ b/theme.conf @@ -8,3 +8,4 @@ passwordLeftMargin=15 usernameLeftMargin=15 relativePositionX=0.3 relativePositionY=0.7 +showTopBar=true diff --git a/theme.conf.user b/theme.conf.user index 7f0fc81..3bf7c1f 100644 --- a/theme.conf.user +++ b/theme.conf.user @@ -8,3 +8,4 @@ relativePositionY=0.75 showLoginButton=false type=color usernameLeftMargin=15 +showTopBar=true