Uninstall vim

This commit is contained in:
2025-06-11 13:28:17 +03:00
parent 05b43b89d0
commit 40fb5a6ea5
10 changed files with 261 additions and 7 deletions

20
scripts/shell/Bar.qml Normal file
View File

@@ -0,0 +1,20 @@
import Quickshell // for PanelWindow
import QtQuick // for Text
import Quickshell.Services.Mpris
PanelWindow {
anchors {
top: true
left: true
right: true
}
implicitHeight: 30
Text {
// center the bar in its parent component (the window)
anchors.centerIn: parent
text: "hello world"
}
}