all repos — quickshell @ a0bff86fe528f7c7c7b6921c008e53b3a9610c25

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
//@ pragma Env QT_QPA_PLATFORM=wayland
import Quickshell
import Quickshell.Io
import QtQuick
import ".."
import "bar"
import "animation"

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/JetBrainsMono-Thin.ttf"
  }
  Bar {}
  // AnimationTest{}
}