-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathshell.qml
More file actions
69 lines (60 loc) · 1.3 KB
/
Copy pathshell.qml
File metadata and controls
69 lines (60 loc) · 1.3 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
import Quickshell
import Quickshell.Io
import QtQuick
import qs.bar
import qs.widgets.dashboard
Scope {
id: root
property var theme
property var config
property var configFile: "./config.json"
property var scripts: "/scripts/"
FileView {
id: pywal
path: Quickshell.env("HOME") + "/.cache/wal/colors.json"
watchChanges: true
onFileChanged: reload()
Component.onCompleted: reload()
onLoaded: {
root.theme = JSON.parse(text())
}
}
Process {
id: weather
running: true
command: ["bash", Quickshell.shellDir + "/scripts/get_weather.sh"]
}
Timer {
interval: 1800000
running: true
repeat: true
onTriggered: {
weather.running = true
}
}
FileView {
id: config
path: Qt.resolvedUrl(configFile)
watchChanges: true
onFileChanged: reload()
Component.onCompleted: reload()
onLoaded: {
root.config = JSON.parse(text())
}
}
Bar {
id: bar
theme: root.theme
font: root.config.bar.font
alpha: root.config.bar.alpha
radius: root.config.bar.radius
}
DashboardWindow {
font: root.config.dashboard.font
alpha: root.config.dashboard.alpha
spacing: root.config.dashboard.spacing
radius: root.config.bar.radius
theme: root.theme
open: bar.dashboardTrigger
}
}