all repos — quickshell @ c697d17aa981dceb9b93e2b66735b1f784e6bbca

A desert-witch desktop shell

bar/BottomBar.qml (view raw)

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

PanelWindow {
  id: bottom_bar
  anchors {
    bottom: true
    left: true
    right: true
  }
  margins {
    left: 8
    right:8
  }
  implicitHeight: 12
  color: Resources.palette.bg
}