-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.sh
More file actions
97 lines (90 loc) · 1 KB
/
test.sh
File metadata and controls
97 lines (90 loc) · 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# swayr & swayrbar setting
if cargo; then
else
pacman -S --noconfirm cargo
fi
git clone https://git.sr.ht/\~tsdh/swayr ~/swayr
cd ~/swayr && cargo build
cargo install swayr swayrbar
cat > ~/.config/swayr/config.toml << "EOF"
[menu]
executable = "fuzzel"
args = [
'--dmenu',
'--lines=5',
'--prompt=Select window: ',
'--width=50',
]
[format]
window_format = '{app_name} - {title} - Workspace: {workspace_name}'
[layout]
auto_tile = false
auto_tile_min_window_width_per_output_width = [
[
800,
400,
],
[
1024,
500,
],
[
1280,
600,
],
[
1400,
680,
],
[
1440,
700,
],
[
1600,
780,
],
[
1680,
780,
],
[
1920,
920,
],
[
2048,
980,
],
[
2560,
1000,
],
[
3440,
1200,
],
[
3840,
1280,
],
[
4096,
1400,
],
[
4480,
1600,
],
[
7680,
2400,
],
]
[focus]
lockin_delay = 750
[misc]
seq_inhibit = false
[swaymsg_commands]
include_predefined = true
EOF