blob: 245fd4767f6eeb28c6a1d517949e1b911b49625e (
plain)
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
70
71
72
|
import "root:/widgets"
import "root:/config"
import Quickshell
import QtQuick
import QtQuick.Shapes
import Qt5Compat.GraphicalEffects
Scope {
id: root
property bool bindInterrupted
property bool launcherVisible
LazyLoader {
id: loader
loading: true
StyledWindow {
id: win
name: "launcher"
width: content.width + bg.rounding * 2
height: content.implicitHeight
anchors.bottom: true
Background {
id: bg
realWrapperHeight: wrapper.height
}
Wrapper {
id: wrapper
launcherVisible: root.launcherVisible
PaddedRect {
id: content
width: LauncherConfig.sizes.width
padding: Appearance.padding.large
anchors.horizontalCenter: parent.horizontalCenter
StyledText {
text: "Launcher"
font.pointSize: 80
}
}
}
}
}
CustomShortcut {
name: "launcher"
description: "Toggle launcher"
onPressed: root.bindInterrupted = false
onReleased: {
if (!root.bindInterrupted)
root.launcherVisible = !root.launcherVisible;
root.bindInterrupted = false;
}
}
CustomShortcut {
name: "launcherInterrupt"
description: "Interrupt launcher keybind"
onPressed: root.bindInterrupted = true
}
}
|