all repos

dotfiles @ 025b243c4845c8e23a777ece3bc1ec7727710a16

my dotfiles

config/niri/config.kdl (view raw)

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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
// vim: foldmethod=marker ts=2 sw=2
// auto start {{{
spawn-at-startup "/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1";
spawn-at-startup "~/.config/niri/waybar"
spawn-at-startup "dunst";
spawn-at-startup "xwayland-satellite"
spawn-at-startup "wlsunset" "-S" "9:00" "-s" "21:00";
// }}}
// env {{{
environment {
  DISPLAY ":0"
  QT_QPA_PLATFORM "wayland;xcb"
  QT_WAYLAND_DISABLE_WINDOWDECORATION "1"
}
// }}}
// inputs {{{
// https://github.com/YaLTeR/niri/wiki/Configuration:-Input
input {
  keyboard {
    numlock
    xkb {
      layout "us,ua"
      options "grp:win_space_toggle,compose:ralt,ctrl:nocaps"
    }
  }
  focus-follows-mouse
  touchpad {
    tap
    dwt
    // dwtp
    // drag false
    // drag-lock
    // natural-scroll
    accel-speed 0.1
    accel-profile "adaptive"
    scroll-method "two-finger"
    // disabled-on-external-mouse
  }
  mouse {
    accel-speed 0.0
    accel-profile "flat"
  }
}
/// }}}
// Monitors {{{
// https://github.com/YaLTeR/niri/wiki/Configuration:-Outputs
output "HDMI-A-1" {
  focus-at-startup
  mode "1920x1080@100.00"
  scale 1
  transform "normal"
  position x=0 y=0
  background-color "#000000"
}

output "eDP-1" {
  focus-at-startup
  mode "1920x1080@60.001"
  scale 1
  transform "normal"
  position x=1920 y=144
  background-color "#000020"
}
/// }}}
// Layout {{{
// https://github.com/YaLTeR/niri/wiki/Configuration:-Layout
layout {
  gaps 0
  center-focused-column "never"
  default-column-width { proportion 0.5; }
  border { off; }
  preset-column-widths {
    proportion 0.33333
    proportion 0.5
    proportion 0.66667
  }
  focus-ring {
    width 2
    active-color "#7aa2f7"
    inactive-color "#292e42"
  }
}
// }}}
// general {{{
// disables client-side decorrations if possible
prefer-no-csd

// set to null if u want disable saving to disk behavior
screenshot-path "~/Pictures/Screenshots/Screenshot from %Y-%m-%d %H-%M-%S.png"

// https://github.com/YaLTeR/niri/wiki/Configuration:-Animations
animations {
  // off
  slowdown 1.0
}
// }}}
// window/workspace rules {{{
// https://github.com/YaLTeR/niri/wiki/Configuration:-Window-Rules
// https://github.com/YaLTeR/niri/wiki/Configuration:-move-column-to-workspace

workspace "laptop" { open-on-output "eDP-1"; }
workspace "tools" { open-on-output "HDMI-A-1"; }
workspace "web"{ open-on-output "HDMI-A-1"; }
workspace "dev"{ open-on-output "HDMI-A-1"; }
workspace "media" { open-on-output "HDMI-A-1"; }

window-rule {
  match app-id=r#"anki$"#
  match app-id=r#"obsidian$"#
  match app-id=r#"thunderbird$"#
  match app-id=r#"^org\.keepassxc\.KeePassXC$"#
  match app-id=r#"^org\.telegram\.desktop$"#
  open-on-workspace "tools"
}

window-rule {
  match app-id=r#"zen$"#
  match app-id=r#"brave$"#
  open-on-workspace "web"
}

window-rule {
  match app-id=r#"Spotify$"#
  match app-id=r#"^org.gnome.Snapshot$"#
  open-on-workspace "laptop"
}

window-rule {
  match app-id=r#"Spotify$"#
  match app-id=r#"zen$"#
  match app-id=r#"brave$"#
  match app-id=r#"kitty$"#
  match app-id=r#"anki$"#
  match app-id=r#"obsidian$"#
  open-maximized true
}

window-rule {
  match app-id=r#"pavucontrol$"#
  open-floating true
}

window-rule {
  match is-window-cast-target=true
  border { inactive-color "#7d0d2d"; }
  shadow { color "#7d0d2d70"; }
  focus-ring {
    active-color "#f38ba8"
    inactive-color "#7d0d2d"
  }
  tab-indicator {
    active-color "#f38ba8"
    inactive-color "#7d0d2d"
  }
}

window-rule {
  match app-id=r#"^org\.keepassxc\.KeePassXC$"#
  match app-id=r#"obsidian$"#
  block-out-from "screen-capture"
}
// }}}
// keybinds {{{
binds {
  Mod+Q { close-window; }
  Mod+Return { spawn "kitty"; }
  Mod+Shift+Return { spawn "wofi" "--show" "drun"; }
  Mod+Shift+Escape { spawn "~/bin/wofi-power-menu" "niri";}
  Super+Alt+L { spawn "swaylock"; } // TODO: change to hyprlock

  // programs {{{
  Mod+Shift+a { spawn "anki"; }
  Mod+Shift+d { spawn "obsidian"; }
  // Mod+Shift+f { spawn "newsflash"; } // TODO: fix conflict
  Mod+Shift+s { spawn "spotify"; }
  Mod+Shift+t { spawn "telegram-desktop"; }
  Mod+Shift+w { spawn "zen-browser"; }
  // }}}
  // func keys {{{
  // audio
  XF86AudioRaiseVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "5%+"; }
  XF86AudioLowerVolume allow-when-locked=true { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "5%-"; }
  XF86AudioMute        allow-when-locked=true { spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SINK@" "toggle"; }
  XF86AudioMicMute     allow-when-locked=true { spawn "wpctl" "set-mute" "@DEFAULT_AUDIO_SOURCE@" "toggle"; }
  XF86AudioPlay        allow-when-locked=true { spawn "playerctl" "play-pause"; }
  XF86AudioNext        allow-when-locked=true { spawn "playerctl" "next"; }
  XF86AudioPrev        allow-when-locked=true { spawn "playerctl" "prev"; }
  // brighthness
  XF86MonBrightnessUp   allow-when-locked=true { spawn "brightnessctl" "set" "+5%"; }
  XF86MonBrightnessDown allow-when-locked=true { spawn "brightnessctl" "set" "5%-"; }
  // screen shots
  Print { screenshot; }
  Ctrl+Print { screenshot-screen; }
  Alt+Print { screenshot-window; }
  // }}}
  // wm {{{
  Mod+O repeat=false { toggle-overview; }
  Alt+Tab { focus-window-previous; }

  // window management {{{
  Mod+r { switch-preset-column-width; }
  Mod+t { maximize-column; }
  Mod+f { fullscreen-window; }

  Mod+Ctrl+f       { toggle-window-floating; }

  Mod+h { focus-column-left; }
  Mod+j { focus-window-down; }
  Mod+k { focus-window-up; }
  Mod+l { focus-column-right; }
  Mod+Shift+h { move-column-left; }
  Mod+Shift+j { move-window-down; }
  Mod+Shift+k { move-window-up; }
  Mod+Shift+l { move-column-right; }

  Mod+Minus { set-column-width "-10%"; }
  Mod+Equal { set-column-width "+10%"; }
  // }}}
  // monitor navigation {{{
  Mod+Comma { focus-monitor-left; }
  Mod+Period { focus-monitor-right; }
  Mod+Shift+Comma { move-column-to-monitor-left; }
  Mod+Shift+Period { move-column-to-monitor-right; }
  // }}}
  // workspaces {{{
  Mod+1 { focus-workspace 1; }
  Mod+2 { focus-workspace 2; }
  Mod+3 { focus-workspace 3; }
  Mod+4 { focus-workspace 4; }
  Mod+5 { focus-workspace 5; }
  Mod+Shift+1 { move-column-to-workspace 1; }
  Mod+Shift+2 { move-column-to-workspace 2; }
  Mod+Shift+3 { move-column-to-workspace 3; }
  Mod+Shift+4 { move-column-to-workspace 4; }
  Mod+Shift+5 { move-column-to-workspace 5; }

  Mod+WheelScrollDown      cooldown-ms=150 { focus-workspace-down; }
  Mod+WheelScrollUp        cooldown-ms=150 { focus-workspace-up; }
  // }}}
  // }}}
}
// }}}