all repos — quickshell @ 57aba02fccefb654ba9426cd3e1f08bf1127bcbc

A desert-witch desktop shell

0
trickyni trickyniv56@gmail.com
Wed, 29 Oct 2025 14:53:13 +0200
commit

57aba02fccefb654ba9426cd3e1f08bf1127bcbc

parent

5e7fad004123b1ff10da2d47ddba9eb4bcf582fb

4 files changed, 21 insertions(+), 6 deletions(-)

jump to
M Resources.qmlResources.qml

@@ -24,7 +24,7 @@ "grey": "#868686"

} property var fontsize: { "topbar_text": 16*Size.scale, - "topbar_bamum": 16*Size.scale, + "topbar_bamum": 14*Size.scale, "topbar_icon": 12*Size.scale, "workspace_icon": 10*Size.scale, "bottombar_text": 10*Size.scale,

@@ -35,11 +35,12 @@ "network_indicator": 9*Size.scale

} property var barsize: { - "topbar": 15*Size.scale, + + "topbar": 18*Size.scale, + "topbar_twister": 15*Size.scale, "bottombar": 12*Size.scale, - //"topbar": 18*Size.scale, - //"bottombar": 12*Size.scale, - //to maintain optimal aspect ratio for terminal at fontsize 16, with 1.5 monitor scaling, bars should have a combined 10px,27px, or 45px height + //on twister, to maintain optimal aspect ratio for terminal at fontsize 16, with 1.5 monitor scaling, bars should have a combined 10px,27px, or 45px height + //on irregularnotes, combined height should be 25px or 42px } }
M bar/Bar.qmlbar/Bar.qml

@@ -20,6 +20,7 @@ //topbar middle

Module.Scale{} TopbarLeft { Module.Workspaces {} + Module.Test {} } } BottomBar {
M bar/TopBar.qmlbar/TopBar.qml

@@ -18,6 +18,5 @@ top: 0

bottom: 0 } height: Resources.barsize.topbar - // height: 50 color: Resources.palette.bg }
A bar/modules/Test.qml

@@ -0,0 +1,14 @@

+import QtQuick +import QtQuick.Controls.Basic +import QtQuick.Layouts +import Quickshell +import Quickshell.I3 +import Quickshell.Widgets +import "../classes" as Class +import "../../" + +RowLayout { + Class.TopbarText { + text: I3.focusedMonitor.name + } +}