blob: e496cd9ad7f6971ecbee7365cf9bde1db96ed700 (
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
|
# Pyprland Configuration
# https://hyprland-community.github.io/pyprland/
[pyprland]
plugins = [
"scratchpads",
"magnify",
]
# ============================================================================
# Magnify
# ============================================================================
[magnify]
factor = 2
# ============================================================================
# Scratchpads
# ============================================================================
# Scratchpads use normal workspaces by default (not special workspaces),
# which prevents newly launched apps from being captured by the scratchpad.
[scratchpads.term]
command = "foot --app-id foot-term tmux"
class = "foot-term"
size = "60% 60%"
position = "20% 20%"
animation = "fromBottom"
[scratchpads.term2]
command = "foot --app-id foot-term2 tmux"
class = "foot-term2"
size = "60% 60%"
position = "20% 30%"
animation = "fromBottom"
[scratchpads.audio]
command = "foot --app-id foot-audio pulsemixer"
class = "foot-audio"
size = "60% 60%"
position = "20% 20%"
animation = "fromBottom"
[scratchpads.monitor]
command = "foot --app-id foot-monitor monitor-dashboard"
class = "foot-monitor"
size = "60% 60%"
position = "20% 20%"
animation = "fromBottom"
[scratchpads.music]
command = "foot --app-id foot-music ncmpcpp"
class = "foot-music"
size = "60% 60%"
position = "20% 20%"
animation = "fromBottom"
|