-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.qml
More file actions
53 lines (50 loc) · 1.1 KB
/
Copy pathshell.qml
File metadata and controls
53 lines (50 loc) · 1.1 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//@ pragma UseQApplication
//@ pragma Env QT_QPA_PLATFORMTHEME=gtk3
//@ pragma Env QS_NO_RELOAD_POPUP=1
//@ pragma Env QSG_RENDER_LOOP=threaded
//@ pragma Env QT_QUICK_FLICKABLE_WHEEL_DECELERATION=10000
import Quickshell
import Quickshell.Io
import QtQuick
import "bar"
import "launcher"
import "notifications"
import "themeSwitcher"
import "wifiSwitcher"
import "vpnSwitcher"
import "wallpaper"
import "osd"
import "controlCentre"
import "mediaControl"
import "usb"
import "timer"
import "niriEngine"
import "system"
Scope {
ThemeSwitcher { id: ts }
WifiSwitcher {
id: wifi
theme: ts.theme
}
VpnSwitcher {
id: vpn
theme: ts.theme
}
Bar {
theme: ts.theme
}
AppLauncher { theme: ts.theme }
NotificationPopup { theme: ts.theme }
WallpaperManager { theme: ts.theme }
OSD { theme: ts.theme }
ControlCentre {
id: controlCentre
theme: ts.theme
}
MediaControl { theme: ts.theme }
UsbLogic { id: usbMonitor }
UsbPopup { id: usbPopupComp; theme: ts.theme }
MasterTimer { id: masterTimer }
NiriEngine { id: niriEngine }
SystemEngine { id: systemEngine }
}