all repos — quickshell @ d85440c28de6488836af2d9cd5de788d1e9c1dab

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
// TopBar.qml
import Quickshell
import QtQuick
import QtQuick.Layouts
import ".."

PanelWindow {
  id: top_bar
  anchors {
    top: true
    left: true
    right: true
  }
  margins {
    left: 0
    right:8
  }
  implicitHeight: 24
  color: Resources.palette.bg
}