all repos — quickshell @ 727ccf344295a4d24ca5be0c5197a9a2ff39193d

A desert-witch desktop shell

bar/TopBar.qml (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
// TopBar.qml
import Quickshell
import QtQuick
import QtQuick.Layouts
import ".."

PanelWindow {
  id: top_bar
  anchors {
      top: true
      left: true
      right: true
  }
  margins {
    left: 8
    right:8
    top: 0
    bottom: 0
  }
  height: Resources.barsize.topbar
  // height: 50
  color: Resources.palette.bg
}