all repos — quickshell @ 30865761e689b0a29ec234f784984f91de45e8c6

A desert-witch desktop shell

shell.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
 24
 25
 26
 27
 28
 29
//@ pragma Env QT_QPA_PLATFORM=wayland
import Quickshell
import QtQuick
import "bar"

Scope {
  FontLoader {
    id: font_proggy
    source: "fonts/ProggyCleanSZNerdFontMono-Regular.ttf"
  }
  FontLoader {
    id: font_icon
    source: "fonts/SymbolsNerdFontMono-Regular.ttf"
  }
  FontLoader {
    id: font_notosans
    source: "fonts/NotoSansMono-Thin.ttf"
  }
  FontLoader {
    id: font_jetbrains
    source: "fonts/JetBrainsMonoNerdFont-Light.ttf"
  }
  FontLoader {
    id: font_emoji
    source: "fonts/twemoji.ttf"
  }
  Bar {}
  // BarOneRow {}
}