all repos — quickshell @ 61c790ee8d3b664ef6f9d65dfaa3dad496429847

A desert-witch desktop shell

0
trickyni trickyniv56@gmail.com
Mon, 01 Sep 2025 15:47:40 +0300
commit

61c790ee8d3b664ef6f9d65dfaa3dad496429847

parent

00ca151a9d8eb2986b9fa7a1bbb0e32ae4e8323a

M TODO.txtTODO.txt

@@ -2,18 +2,16 @@ Network

Low Priority - resize indicator - zen mode -workspaces - - make code less trash -UI/Animations: - workspaces - - animations - volume - - mute animation - - size match text - Battery - - UI - - animations +Animations: + - workspaces + - volume mute + - battery disconnect/reconnect + +UI: +Battery + - indicator + - low level indicator Sunset - disappears at night
M bar/classes/TopbarText.qmlbar/classes/TopbarText.qml

@@ -7,8 +7,8 @@ import "../.."

Text { font.pixelSize: Resources.fontsize.topbar_text - color: Resources.palette.fg font.family: font_proggy.name + color: Resources.palette.fg antialiasing: true renderType: Text.NativeRendering }
M bar/modules/Battery.qmlbar/modules/Battery.qml

@@ -12,6 +12,7 @@ model: UPower.devices.values.filter(d=>d.model)

Class.RightRowLayout { Class.BottombarText { text: modelData.percentage*100+"%" + font.family: font_notosans.name color: (modelData.percentage*100 < 20) ? Resources.palette.scarlet : Resources.palette.fg
M bar/modules/Network.qmlbar/modules/Network.qml

@@ -11,6 +11,7 @@ spacing: 2

Class.BottombarIcon { text: Icons.network.crossed_empty + " MI_10023" color: Resources.palette.grey + // font.family: } // Class.BottombarText { // text:"MI_10023"
M shell.qmlshell.qml

@@ -16,8 +16,8 @@ id: font_icon

source: "fonts/SymbolsNerdFontMono-Regular.ttf" } FontLoader { - id: font_XXX - source: "fonts/XXX" + id: font_notosans + source: "fonts/NotoSansMono-Thin.ttf" } Bar {} }