all repos — quickshell @ 6ba4e831953f010032fe5db10d8df5a275f931a3

A desert-witch desktop shell

0
trickyni trickyniv56@gmail.com
Sat, 06 Sep 2025 14:47:36 +0300
commit

6ba4e831953f010032fe5db10d8df5a275f931a3

parent

2a7e4cf51e45c23d4cdab371f2cf6dc8de2cbb86

10 files changed, 2 insertions(+), 97 deletions(-)

jump to
M Icons.qmlIcons.qml

@@ -15,6 +15,7 @@ }

property var workspaces: { "volume_mixer": "", "download": "", + "writing": "" } property var volume: { "mute": "",
M bar/modules/Network.qmlbar/modules/Network.qml

@@ -14,8 +14,4 @@ color: Resources.palette.grey

font.family: font_jetbrains.name anchors.centerIn: parent } - // Class.BottombarText { - // text:"MI_10023" - // color: Resources.palette.grey - // } }
M bar/modules/Workspaces.qmlbar/modules/Workspaces.qml

@@ -40,6 +40,7 @@ property var ws_special: (modelData.number > 10)

horizontalAlignment: Text.AlignHCenter verticalAlignment: Text.AlignVCenter text: ({ + "10": Icons.workspaces.writing, "11": Icons.workspaces.download, "12": Icons.workspaces.volume_mixer }) [modelData.name] ?? modelData.name
D lockscreen/AnimationTest.qml

@@ -1,32 +0,0 @@

-import QtQuick -import Quickshell - -PanelWindow { - id: root - width: 32 - height: 32 - visible: true - color: "black" - anchors { - right: true - bottom: true - } - SpriteSequence { - id: anim - anchors.centerIn: parent - width: 64 - height: 64 - running: true - interpolate: false - - Sprite { - name: "idle" - source: "WhiteCatRun.png" - frameCount: 6 - frameWidth: 32 - frameHeight: 32 - frameRate: 12 - } - } -} -
D lockscreen/Lock.qml

@@ -1,23 +0,0 @@

-import QtQuick -import Quickshell -import Quickshell.Services.Pam -import Quickshell.Wayland -import QtQuick.Controls - -WlSessionLock { - id: lock - - WlSessionLockSurface { - color: "black" - AnimationTest{ - Button { - text: "unlock me" - onClicked: lock.locked = false - } - } - } -} - - - -
D lockscreen/LockButton.qml

@@ -1,15 +0,0 @@

-import QtQuick -import Quickshell -import Quickshell.Services.Pam -import Quickshell.Wayland -import QtQuick.Controls - -PanelWindow { - Rectangle { - height:200 - width:200 - Button { - onClicked: Lock.lock.locked=true - } - } -}
D lockscreen/Pam.qml

@@ -1,4 +0,0 @@

-import QtQuick -import Quickshell -import Quickshell.Services.Pam -import Quickshell.Wayland
D lockscreen/Surface.qml

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

-import QtQuick -import Quickshell -import Quickshell.Services.Pam -import Quickshell.Wayland -import QtQuick.Controls - -WlSessionLockSurface { - - AnimationTest { - Button { - onClicked: Lock.lock.locked = true - } - } -}
D lockscreen/lockscreen.qml

@@ -1,5 +0,0 @@

-import QtQuick -import Quickshell -import Quickshell.Services.Pam - -