diff options
-rw-r--r-- | .config/i3/config##mobile.Linux.Luchs | 25 | ||||
-rwxr-xr-x | .config/nvim/init.vim | 6 |
2 files changed, 22 insertions, 9 deletions
diff --git a/.config/i3/config##mobile.Linux.Luchs b/.config/i3/config##mobile.Linux.Luchs index 3eefb06..8ef79c3 100644 --- a/.config/i3/config##mobile.Linux.Luchs +++ b/.config/i3/config##mobile.Linux.Luchs | |||
@@ -14,18 +14,18 @@ exec --no-startup-id xset -b & | |||
14 | exec --no-startup-id nm-applet & | 14 | exec --no-startup-id nm-applet & |
15 | 15 | ||
16 | # removable media | 16 | # removable media |
17 | exec --no-startup-id udiskie --automount --file-manager thunar --tray --notify & | 17 | exec --no-startup-id udiskie --automount --file-manager pcmanfm --tray --notify & |
18 | 18 | ||
19 | # set the wallpaper and other visuals | 19 | # set the wallpaper and other visuals |
20 | exec --no-startup-id ~/.fehbg & | 20 | exec --no-startup-id ~/.fehbg & |
21 | exec --no-startup-id compton -b & | 21 | exec --no-startup-id compton -b & |
22 | exec --no-startup-id xsettingsd & | 22 | # exec --no-startup-id xsettingsd & |
23 | 23 | ||
24 | exec --no-startup-id gebaard -b | 24 | exec --no-startup-id gebaard -b |
25 | exec --no-startup-id volnoti & | 25 | exec --no-startup-id volnoti & |
26 | 26 | ||
27 | # utilities | 27 | # utilities |
28 | exec --no-startup-id dropbox & | 28 | # exec --no-startup-id dropbox & |
29 | exec --no-startup-id copyq & | 29 | exec --no-startup-id copyq & |
30 | # exec --no-startup-id conky --daemonize -c ~/.config/conky/conky.conf & | 30 | # exec --no-startup-id conky --daemonize -c ~/.config/conky/conky.conf & |
31 | # exec --no-startup-id conky --daemonize -c ~/.config/conky/task.conf & | 31 | # exec --no-startup-id conky --daemonize -c ~/.config/conky/task.conf & |
@@ -42,8 +42,14 @@ exec --no-startup-id $HOME/.config/polybar/launch.sh & | |||
42 | # start the screensaver, '' at the end is not a typo | 42 | # start the screensaver, '' at the end is not a typo |
43 | exec --no-startup-id xidlehook --not-when-fullscreen --not-when-audio --timer normal 300 'betterlockscreen -l dimblur -t "Welcome Back"' '' | 43 | exec --no-startup-id xidlehook --not-when-fullscreen --not-when-audio --timer normal 300 'betterlockscreen -l dimblur -t "Welcome Back"' '' |
44 | 44 | ||
45 | gaps inner 0 | 45 | # start the brightness utility |
46 | gaps outer 0 | 46 | exec --no-startup-id clight & |
47 | |||
48 | # flash the active window | ||
49 | exec --no-startup-id flashfocus & | ||
50 | |||
51 | gaps inner 5 | ||
52 | gaps outer 2 | ||
47 | 53 | ||
48 | # Font for window titles | 54 | # Font for window titles |
49 | font pango:Lato 11 | 55 | font pango:Lato 11 |
@@ -81,8 +87,8 @@ bindsym XF86AudioPlay exec mpc toggle | |||
81 | bindsym XF86AudioPrev exec /home/yigit/bin/mpcPrevSong.sh | 87 | bindsym XF86AudioPrev exec /home/yigit/bin/mpcPrevSong.sh |
82 | bindsym XF86AudioNext exec mpc next | 88 | bindsym XF86AudioNext exec mpc next |
83 | 89 | ||
84 | bindsym XF86MonBrightnessUp exec xbacklight -inc 5 | 90 | bindsym XF86MonBrightnessUp exec --no-startup-id xbacklight -inc 5 & |
85 | bindsym XF86MonBrightnessDown exec xbacklight -dec 5 | 91 | bindsym XF86MonBrightnessDown exec --no-startup-id xbacklight -dec 5 & |
86 | 92 | ||
87 | bindsym XF86TouchpadToggle exec --no-startup-id perl -e '{`xinput list-props 11` =~ /^.*Device Enabled.+?(\d)$/m and {$1 ? `xinput --disable 11 && dunstify -a "touchpad" "disabled"` : `xinput --enable 11 && dunstify -a "touchpad" "enabled"`}} ' | 93 | bindsym XF86TouchpadToggle exec --no-startup-id perl -e '{`xinput list-props 11` =~ /^.*Device Enabled.+?(\d)$/m and {$1 ? `xinput --disable 11 && dunstify -a "touchpad" "disabled"` : `xinput --enable 11 && dunstify -a "touchpad" "enabled"`}} ' |
88 | 94 | ||
@@ -264,9 +270,14 @@ mode "$mode_gaps_inner" { | |||
264 | bindsym Escape mode "default" | 270 | bindsym Escape mode "default" |
265 | } | 271 | } |
266 | 272 | ||
273 | # disable borders for all windows | ||
267 | for_window [class=".*"] border pixel 0 | 274 | for_window [class=".*"] border pixel 0 |
275 | |||
276 | # zotero citation dialogs and preferences windows should float | ||
268 | for_window [class="Zotero" instance="Toplevel" title="Quick Format Citation"] floating enable | 277 | for_window [class="Zotero" instance="Toplevel" title="Quick Format Citation"] floating enable |
269 | for_window [class="Zotero" instance="Toplevel" title="Progress"] floating enable | 278 | for_window [class="Zotero" instance="Toplevel" title="Progress"] floating enable |
279 | for_window [class="Zotero" window_role="pref"] floating enable | ||
280 | |||
270 | assign [class="^Thunderbird$"] 8 | 281 | assign [class="^Thunderbird$"] 8 |
271 | 282 | ||
272 | # class border backgr. text indicator child_border | 283 | # class border backgr. text indicator child_border |
diff --git a/.config/nvim/init.vim b/.config/nvim/init.vim index 1f9b024..ab433ca 100755 --- a/.config/nvim/init.vim +++ b/.config/nvim/init.vim | |||
@@ -230,6 +230,8 @@ nmap ` <Plug>Sneak_s | |||
230 | nmap <leader>` <Plug>Sneak_S | 230 | nmap <leader>` <Plug>Sneak_S |
231 | nnoremap ' ` | 231 | nnoremap ' ` |
232 | 232 | ||
233 | nmap <leader>i :IndentGuidesToggle<CR> | ||
234 | |||
233 | """"""""""""""""""""""""""" | 235 | """"""""""""""""""""""""""" |
234 | " yanks/registers/clips " | 236 | " yanks/registers/clips " |
235 | """"""""""""""""""""""""""" | 237 | """"""""""""""""""""""""""" |
@@ -334,8 +336,8 @@ let g:startify_custom_header = | |||
334 | "}}} | 336 | "}}} |
335 | 337 | ||
336 | "{{{ vimwiki | 338 | "{{{ vimwiki |
337 | let g:vimwiki_list = [{'path': '/home/yigit/Dropbox/personal_wiki', | 339 | let g:vimwiki_list = [{'path': '/home/yigit/Documents/personal_wiki', |
338 | \ 'path_html': '~/Dropbox/personal_wiki_html', | 340 | \ 'path_html': '/home/yigit/Documents/personal_wiki_html', |
339 | \ 'css_name': 'tufte.css', | 341 | \ 'css_name': 'tufte.css', |
340 | \ 'auto_export': 1}] | 342 | \ 'auto_export': 1}] |
341 | let g:vimwiki_global_ext = 0 | 343 | let g:vimwiki_global_ext = 0 |