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
|
{ pkgs, ... }:
{
wayland.windowManager.mango = {
enable = true;
settings = ''
animations=1
layer_animations=1
borderpx=1
gappih=0
gappiv=0
gappoh=0
gappov=0
smartgaps=0
tagrule=id:1,layout_name=scroller
tagrule=id:2,layout_name=tile
tagrule=id:3,layout_name=tile
tagrule=id:4,layout_name=tile
tagrule=id:5,layout_name=tile
tagrule=id:6,layout_name=tile
tagrule=id:7,layout_name=tile
tagrule=id:8,layout_name=tile
tagrule=id:9,layout_name=tile
tagrule=id:10,layout_name=tile
bind=Super+Shift,1,tagsilent,1
bind=Super+Shift,2,tagsilent,2
bind=Super+Shift,3,tagsilent,3
bind=Super+Shift,4,tagsilent,4
bind=Super+Shift,5,tagsilent,5
bind=Super+Shift,6,tagsilent,6
bind=Super+Shift,7,tagsilent,7
bind=Super+Shift,8,tagsilent,8
bind=Super+Shift,9,tagsilent,9
bind=Super+Shift,10,tagsilent,10
bind=Super,F1,spawn,rofi -show drun
bind=Super,F2,spawn,kitty
bind=Super,F3,spawn_shell,kitty yazi
bind=Super,F4,killclient
bind=Super,m,quit
bind=Super,1,view,1
bind=Super,2,view,2
bind=Super,3,view,3
bind=Super,4,view,4
bind=Super,5,view,5
bind=Super,6,view,6
bind=Super,7,view,7
bind=Super,8,view,8
bind=Super,9,view,9
bind=Super,10,view,10
bind=Super,n,switch_layout
mousebind=SUPER,btn_left,moveresize,curmove
mousebind=SUPER,btn_right,moveresize,curresize
accel_profile=1
accel_speed=-0.35
'';
};
}
|