[rc/sway] add original ws switch / window move keys on Mod1 (alt)
[~bandali/configs] / rc.org
1 #+title: rc.org
2 #+property: header-args :comments link :mkdirp yes :results silent
3
4 * About
5
6 This org file contains the configuration files of pretty much every
7 program I use. The files are tangled (i.e. exported, or derived) from
8 this file using =org-babel=.
9
10 Note: This file is best viewed inside Emacs with org mode.
11
12 * Configs
13
14 This section contains the configuration files (dotfiles) of various
15 programs I use.
16
17 ** bspwm
18
19 *** bspwmrc
20 :PROPERTIES:
21 :header-args+: :tangle ~/.config/bspwm/bspwmrc :shebang "#!/bin/sh"
22 :END:
23
24 #+begin_src sh :tangle no
25 sxhkd &
26 sh ~/.fehbg &
27 xfce4-panel -d &
28 compton &
29 sleep 0.5 && pasystray --notify=all &
30
31 bspc monitor -d I II III IV V VI VII VIII IX X
32 #bspc monitor eDP-1 -d I II III IV V
33 #bspc monitor HDMI-1 -d VI VII VIII IX X
34
35 #bspc config border_width 2
36 #bspc config window_gap 8
37 bspc config window_gap 0
38
39 bspc config bottom_padding 26
40
41 bspc config split_ratio 0.52
42 bspc config borderless_monocle true
43 bspc config gapless_monocle true
44 bspc config click_to_focus button1
45 bspc config directional_focus_tightness low
46
47 #bspc rule -a Firefox desktop='^1' follow=on
48 bspc rule -a Nightly desktop='^1' follow=on
49 bspc rule -a Emacs desktop='^2' state=tiled follow=on
50 #bspc rule -a Chromium desktop='^4' follow=on
51 bspc rule -a URxvt state=floating
52 bspc rule -a URxvt:tiled state=tiled
53 bspc rule -a Connman-gtk state=floating
54 bspc rule -a Xfce4-panel state=floating
55 bspc rule -a TelegramDesktop state=floating
56 bspc rule -a Ec state=floating
57 bspc rule -a Pavucontrol state=floating
58 bspc rule -a Eog state=floating
59 bspc rule -a Seahorse state=floating
60 bspc rule -a mpv state=floating
61 bspc rule -a Evince state=floating
62 bspc rule -a Meld state=floating
63 bspc rule -a Autokey-gtk state=floating
64 bspc rule -a Mousepad state=floating
65 bspc rule -a Wrapper-1.0 state=floating
66 bspc rule -a File-roller state=floating
67 bspc rule -a Gnome-disks state=floating
68 bspc rule -a Termite state=floating
69 bspc rule -a Termite:tiled state=tiled
70 bspc rule -a Thunderbird:Calendar state=floating
71 bspc rule -a Audacity state=floating
72 bspc rule -a Proof state=floating # pvs x-show-proof
73 bspc rule -a Nm-connection-editor state=floating
74 bspc rule -a Wire state=floating
75 bspc rule -a discord state=floating
76 bspc rule -a X2goclient state=floating
77 bspc rule -a SimpleScreenRecorder state=floating
78 bspc rule -a Gimp state=floating
79 bspc rule -a Wrapper-2.0 state=floating
80 bspc rule -a Zathura state=tiled
81 #+end_src
82
83 *** sxhkdrc
84 :PROPERTIES:
85 :header-args+: :tangle ~/.config/sxhkd/sxhkdrc
86 :END:
87
88 #+begin_src conf :tangle no
89 #
90 # wm independent hotkeys
91 #
92
93 # terminal emulator
94 super + {_,shift} + Return
95 urxvt{_, -name tiled}
96
97 #super + {_,shift} + Return
98 # termite{_, --name=tiled}
99
100 # program launcher
101 super + space
102 rofi -show run -display-run '> ' -display-window ' 🗔 '
103
104 super + alt + space
105 xfce4-popup-whiskermenu
106
107 # window finder
108 super + backslash
109 rofi -show window -display-run '> ' -display-window ' 🗔 '
110
111 # password manager
112 alt + space
113 rofi-pass
114
115 # firefox
116 #super + r
117 # firefox
118
119 # chromium
120 #super + c
121 # chromium -incognito
122
123 # emacs
124 super + e
125 emacs
126
127 # make sxhkd reload its configuration files:
128 super + Escape
129 pkill -USR1 -x sxhkd
130
131 # volume {up,down}
132 XF86Audio{Raise,Lower}Volume
133 pamixer --allow-boost --{in,de}crease 5
134
135 # mute
136 XF86AudioMute
137 pamixer --toggle-mute
138
139 XF86AudioMicMute
140 pactl set-source-mute 1 toggle
141
142 # playback control
143 XF86Audio{Play,Prev,Next}
144 mpc {toggle,prev,next}
145
146 # lock the screen
147 super + shift + q
148 light-locker-command -l
149
150 # Toggle keyboard layout
151 super + F7
152 toggle-layout
153
154 # Toggle Xfce presentation mode
155 XF86LaunchB
156 toggle-presentation-mode
157
158 # monitor brightness
159 XF86MonBrightness{Up,Down}
160 light -{A,U} 5
161
162 super + apostrophe
163 rofi-light
164
165 # keyboard brightness
166 #XF86KbdBrightness{Up,Down}
167 # kbdlight {up,down}
168
169 XF86RotateWindows
170 toggle-tablet
171
172 #
173 # bspwm hotkeys
174 #
175
176 # quit bspwm normally
177 super + alt + Escape
178 bspc quit
179
180 # close and kill
181 super + {w,q}
182 bspc node -{c,k}
183
184 # alternate between the tiled and monocle layout
185 super + m
186 bspc desktop -l next
187
188 # send the newest marked node to the newest preselected node
189 super + y
190 bspc node newest.marked.local -n newest.!automatic.local
191
192 # swap the current node and the biggest node
193 super + g
194 bspc node -s biggest
195
196 #
197 # state/flags
198 #
199
200 # set the window state
201 super + {t,shift + t,s,f}
202 bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
203
204 # set the node flags
205 super + ctrl + {m,x,y,z}
206 bspc node -g {marked,locked,sticky,private}
207
208 #
209 # focus/swap
210 #
211
212 # focus the node in the given direction
213 super + {_,shift + }{h,j,k,l}
214 bspc node -{f,s} {west,south,north,east}
215
216 # focus the node for the given path jump
217 super + {p,b,comma,period}
218 bspc node -f @{parent,brother,first,second}
219
220 # focus the next/previous node in the current desktop
221 super + {_,shift + }c
222 bspc node -f {next,prev}.local
223
224 # focus the next/previous desktop in the current monitor
225 super + bracket{left,right}
226 bspc desktop -f {prev,next}.local
227
228 # send to next/prev desktop
229 super + shift + bracket{left,right}
230 bspc node -d {prev,next} --follow
231
232 # focus the last node/desktop
233 super + {grave,Tab}
234 bspc {node,desktop} -f last
235
236 # focus the older or newer node in the focus history
237 super + {o,i}
238 bspc wm -h off; \
239 bspc node {older,newer} -f; \
240 bspc wm -h on
241
242 # focus or send to the given desktop
243 super + {_,shift + }{1-9,0}
244 bspc {desktop -f,node -d} '^{1-9,10}'
245
246 #
247 # preselect
248 #
249
250 # preselect the direction
251 super + ctrl + {h,j,k,l}
252 bspc node -p {west,south,north,east}
253
254 # preselect the ratio
255 super + ctrl + {1-9}
256 bspc node -o 0.{1-9}
257
258 # cancel the preselection for the focused node
259 super + ctrl + space
260 bspc node -p cancel
261
262 # cancel the preselection for the focused desktop
263 super + ctrl + shift + space
264 bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
265
266 #
267 # move/resize
268 #
269
270 # expand a window by moving one of its side outward
271 super + alt + {h,j,k,l}
272 bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
273
274 # contract a window by moving one of its side inward
275 super + alt + shift + {h,j,k,l}
276 bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
277
278 # move a floating window
279 super + {Left,Down,Up,Right}
280 bspc node -v {-20 0,0 20,0 -20,20 0}
281
282 #alt + bracket{left,right}
283 # xdotool key --clearmodifiers ctrl+Page_{Up,Down}
284 #+end_src
285
286 ** compton
287 :PROPERTIES:
288 :header-args+: :tangle ~/.config/compton.conf
289 :END:
290
291 #+begin_src conf :tangle no
292 # Shadow
293 shadow = false; # Enabled client-side shadows on windows.
294 no-dock-shadow = true; # Avoid drawing shadows on dock/panel windows.
295 no-dnd-shadow = true; # Don't draw shadows on DND windows.
296 clear-shadow = true; # Zero the part of the shadow's mask behind the
297 # window. Fix some weirdness with ARGB windows.
298 shadow-radius = 5; # The blur radius for shadows. (default 12)
299 shadow-offset-x = -5; # The left offset for shadows. (default -15)
300 shadow-offset-y = -5; # The top offset for shadows. (default -15)
301 # shadow-opacity = 0.7; # The translucency for shadows. (default .75)
302 # shadow-red = 0.0; # Red color value of shadow. (0.0 - 1.0, defaults to 0)
303 # shadow-green = 0.0; # Green color value of shadow. (0.0 - 1.0, defaults to 0)
304 # shadow-blue = 0.0; # Blue color value of shadow. (0.0 - 1.0, defaults to 0)
305 shadow-exclude = [ "n:e:Notification", "class_g = 'Chromium'", "class_g = 'Dmenu'", "class_g = 'Firefox' && argb" ]; # Exclude conditions for shadows.
306 # shadow-exclude = "n:e:Notification";
307 #shadow-exclude = [ "_GTK_FRAME_EXTENTS@:c" ] # Fix dual shadow on some gtk3 powered applications
308 shadow-ignore-shaped = true; # Avoid drawing shadow on all shaped windows
309 # (see also: --detect-rounded-corners)
310
311 # Opacity
312 menu-opacity = 1.0; # The opacity for menus. (default 1.0)
313 #inactive-opacity = 0.9; # Default opacity of inactive windows. (0.0 - 1.0)
314 # active-opacity = 0.8; # Default opacity for active windows. (0.0 - 1.0)
315 frame-opacity = 1.0; # Opacity of window titlebars and borders. (0.1 - 1.0)
316 # inactive-opacity-override = true; # Let inactive opacity set by 'inactive-opacity' overrides
317 # value of _NET_WM_OPACITY. Bad choice.
318 alpha-step = 0.06; # XRender backend: Step size for alpha pictures. Increasing
319 # it may result in less X resource usage,
320 # Yet fading may look bad.
321 #inactive-dim = 0.5; # Dim inactive windows. (0.0 - 1.0)
322 #inactive-dim-fixed = true; # Do not let dimness adjust based on window opacity.
323 # blur-background = true; # Blur background of transparent windows.
324 # Bad performance with X Render backend.
325 # GLX backend is preferred.
326 # blur-background-frame = true; # Blur background of opaque windows with transparent
327 # frames as well.
328 blur-background-fixed = true; # Do not let blur radius adjust based on window opacity.
329 blur-background-exclude = [ "window_type = 'dock'", "window_type = 'desktop'" ];
330 # Exclude conditions for background blur.
331
332 # Fading
333 fading = false; # Fade windows during opacity changes.
334 fade-delta = 3; # The time between steps in a fade in milliseconds. (default 10).
335 fade-in-step = 0.03; # Opacity change between steps while fading in. (default 0.028).
336 fade-out-step = 0.03; # Opacity change between steps while fading out. (default 0.03).
337 # no-fading-openclose = true; # Avoid fade windows in/out when opening/closing.
338 fade-exclude = [ ]; # Exclude conditions for fading.
339
340 # Other
341 backend = "glx" # Backend to use: "xrender" or "glx". GLX backend is typically
342 # much faster but depends on a sane driver.
343 mark-wmwin-focused = true; # Try to detect WM windows and mark them as active.
344 mark-ovredir-focused = true; # Mark all non-WM but override-redirect windows active (e.g. menus).
345 use-ewmh-active-win = true; # Use EWMH _NET_WM_ACTIVE_WINDOW to determine which window is focused
346 # instead of using FocusIn/Out events. Usually more reliable but
347 # depends on a EWMH-compliant WM.
348 detect-rounded-corners = false; # Detect rounded corners and treat them as rectangular when --shadow-ignore- shaped is on.
349 detect-client-opacity = true; # Detect _NET_WM_OPACITY on client windows, useful for window
350 # managers not passing _NET_WM_OPACITY of client windows to frame
351 # windows.
352 refresh-rate = 0; # For --sw-opti: Specify refresh rate of the screen. 0 for auto.
353 vsync = "drm"; # "none", "drm", "opengl", "opengl-oml", "opengl-swc", "opengl-mswc"
354 # See man page for more details.
355 dbe = false; # Enable DBE painting mode. Rarely needed.
356 paint-on-overlay = true; # Painting on X Composite overlay window. Recommended.
357 sw-opti = false; # Limit compton to repaint at most once every 1 / refresh_rate.
358 # Incompatible with certain VSync methods.
359 unredir-if-possible = false; # Unredirect all windows if a full-screen opaque window is
360 # detected, to maximize performance for full-screen windows.
361 focus-exclude = [ ]; # A list of conditions of windows that should always be considered
362 # focused.
363 detect-transient = true; # Use WM_TRANSIENT_FOR to group windows, and consider windows in
364 # the same group focused at the same time.
365 detect-client-leader = true; # Use WM_CLIENT_LEADER to group windows.
366 invert-color-include = [ ]; # Conditions for windows to be painted with inverted color.
367
368 # GLX backend # GLX backend fine-tune options. See man page for more info.
369 glx-no-stencil = true; # Recommended.
370 glx-copy-from-front = false; # Useful with --glx-swap-method,
371 # glx-use-copysubbuffermesa = true; # Recommended if it works. Breaks VSync.
372 # glx-no-rebind-pixmap = true; # Recommended if it works.
373 glx-no-rebind-pixmap = true; # Recommended if it works.
374 #glx-swap-method = "4"; # See man page.
375 glx-swap-method = "4"; # See man page.
376
377 # Window type settings
378 wintypes:
379 {
380 tooltip = { fade = true; shadow = false; opacity = 1; focus = true; };
381 menu = { shadow = false; };
382 dropdown_menu = { shadow = false; };
383 popup_menu = { shadow = false; };
384 utility = { shadow = false; };
385 # fade: Fade the particular type of windows.
386 # shadow: Give those windows shadow
387 # opacity: Default opacity for the type of windows.
388 # focus: Whether to always consider windows of this type focused.
389 };
390 #+end_src
391
392 ** Dunst
393 :PROPERTIES:
394 :header-args+: :tangle ~/.config/dunst/dunstrc
395 :END:
396
397 #+begin_src conf
398 [global]
399 #font = Ubuntu Mono 10.5
400 font = Inconsolata 11
401
402 # Path to default icons.
403 icon_folders = /usr/share/icons/Moka/16x16/status/:/usr/share/icons/Moka/16x16/devices/:/usr/share/icons/Faba-Mono/16x16/status/:/usr/share/icons/Faba-Mono/16x16/devices/:/usr/share/icons/Moka/16x16/actions/:/usr/share/icons/Moka/16x16/categories/:/usr/share/icons/Moka/16x16/mimetypes/:/usr/share/icons/Moka/16x16/apps/:/usr/share/icons/Moka/16x16/places/:/usr/share/icons/Paper/16x16/status/
404
405 icon_position = left
406 # <b>bold</b>
407 # <i>italic</i>
408 # <s>strikethrough<s/>
409 # <u>underline</u>
410 markup = full
411 # The format of the message. Possible variables are:
412 # %a appname
413 # %s summary
414 # %b body
415 # %i iconname (including its path)
416 # %I iconname (without its path)
417 # %p progress value if set ([ 0%] to [100%]) or nothing
418 # Markup is allowed
419 format = "<b>%s</b>\n%b"
420 # Sort messages by urgency
421 sort = yes
422 # Show how many messages are currently hidden (because of geometry)
423 indicate_hiddenl= no
424 # Alignment of message text.
425 # Possible values are "left", "center" and "right"
426 alignment = center
427 # The frequency with wich text that is longer than the notification
428 # window allows bounces back and forth.
429 # This option conflicts with 'word_wrap'.
430 # Set to 0 to disable
431 bounce_freq = 3
432 # show age of message if message is older than show_age_threshold seconds.
433 # set to -1 to disable
434 show_age_threshold = -1
435 # split notifications into multiple lines if they don't fit into geometry
436 word_wrap = yes
437 # ignore newlines '\n' in notifications
438 ignore_newline = no
439 # The geometry of the message window.
440 # geometry [{width}]x{height}][+/-{x}+/-{y}]
441 # The height is measured in number of notifications everything else in pixels. If the width
442 # is omitted but the height is given ("-geometry x2"), the message window
443 # expands over the whole screen (dmenu-like). If width is 0,
444 # the window expands to the longest message displayed.
445 # A positive x is measured from the left, a negative from the
446 # right side of the screen. Y is measured from the top and down respectevly.
447 # The width can be negative. In this case the actual width is the
448 # screen width minus the width defined in within the geometry option.
449 #geometry = "410x12-12+12"
450 #geometry = "0x0-30-30"
451 geometry = "260x12-30-30"
452 # The transparency of the window. range: [0; 100]
453 # This option will only work if a compositing windowmanager is present (e.g. xcompmgr, compiz, etc..)
454 transparency = 0
455 # Don't remove messages, if the user is idle (no mouse or keyboard input)
456 # for longer than idle_threshold seconds.
457 # Set to 0 to disable.
458 idle_threshold = 120
459 # Which monitor should the notifications be displayed on.
460 monitor = 0
461 # Display notification on focused monitor. Possible modes are:
462 # mouse: follow mouse pointer
463 # keyboard: follow window with keyboard focus
464 # none: don't follow anything
465 #
466 # "keyboard" needs a windowmanager that exports the _NET_ACTIVE_WINDOW property.
467 # This should be the case for almost all modern windowmanagers.
468 #
469 # If this option is set to mouse or keyboard, the monitor option will be
470 # ignored.
471 follow = keyboard
472 # should a notification popped up from history be sticky or
473 # timeout as if it would normally do.
474 sticky_history = yes
475 # The height of a single line. If the height is smaller than the font height,
476 # it will get raised to the font height.
477 # This adds empty space above and under the text.
478 line_height = 0
479
480 show_indicators = yes
481
482 # Draw a line of 'separatpr_height' pixel height between two notifications.
483 # Set to 0 to disable
484 separator_height = 3
485 # padding between text and separator
486 padding = 8
487 # horizontal padding
488 horizontal_padding = 8
489 # Define a color for the separator.
490 # possible values are:
491 # * auto: dunst tries to find a color fitting to the background
492 # * foreground: use the same color as the foreground
493 # * frame: use the same color as the frame.
494 # * anything else will be interpreted as a X color
495 separator_color = foreground
496 # print a notification on startup
497 # This is mainly for error detection, since dbus (re-)starts dunst
498 # automatically after a crash.
499 startup_notification = false
500 # dmenu path
501 #dmenu = /usr/bin/dmenu -p dunst:
502 dmenu = /usr/bin/rofi -dmenu -p dunst:
503 # browser for opening urls in context menu
504 browser = /usr/bin/firefox -new-tab
505 [frame]
506 width = 0
507 color = "#377222"
508 [shortcuts]
509 # shortcuts are specified as [modifier+][modifier+]...key
510 # available modifiers are 'ctrl', 'mod1' (the alt-key), 'mod2', 'mod3'
511 # and 'mod4' (windows-key)
512 # xev might be helpful to find names for keys
513 # close notification
514 close = ctrl+space
515 # close all notifications
516 close_all = ctrl+shift+space
517 # redisplay last message(s)
518 # On the US keyboard layout 'grave' is normally above TAB and left of '1'.
519 history = ctrl+shift+h
520 # context menu
521 context = ctrl+shift+period
522 [urgency_low]
523 # IMPORTANT: colors have to be defined in quotation marks.
524 # Otherwise the '#' and following would be interpreted as a comment.
525 background = "#1d2a30"
526 foreground = "#71c2af"
527 timeout = 3
528 [urgency_normal]
529 background = "#1d2a30"
530 foreground = "#71c2af"
531 timeout = 0
532 [urgency_critical]
533 background = "#1d2a30"
534 foreground = "#ff9982"
535 timeout = 0
536
537 # Every section that isn't one of the above is interpreted as a rules
538 # to override settings for certain messages.
539 # Messages can be matched by 'appname', 'summary', 'body' or 'icon'
540 # and you can override the 'timeout', 'urgency', 'foreground', 'background'
541 # and 'format'.
542 # Shell-like globbing will get expanded.
543 #
544 # SCRIPTING
545 # you can specify a script that gets run when the rule matches by setting
546 # the 'script' option.
547 # The script will be called as follows:
548 # script appname summary body icon urgency
549 # where urgency can be "LOW", "NORMAL" or "CRITICAL".
550 #
551 # NOTE: if you don't want a notification to be displayed, set the format to ""
552 # NOTE: It might be helpful to run dunst -print in a terminal in order to find
553 # fitting options for rules.
554 #[espeak]
555 # summary = "*"
556 # script = dunst_espeak.sh
557 #[script-test]
558 # summary = "*script*"
559 # script = dunst_test.sh
560 #[ignore]
561 ## This notification will not be displayed
562 # summary = "foobar"
563 # format = ""
564 #[signed_on]
565 # appname = Pidgin
566 # summary = "*signed on*"
567 # urgency = low
568 #
569 #[signed_off]
570 # appname = Pidgin
571 # summary = *signed off*
572 # urgency = low
573 #
574 #[says]
575 # appname = Pidgin
576 # summary = *says*
577 # urgency = critical
578 #
579 #[twitter]
580 # appname = Pidgin
581 # summary = *twitter.com*
582 # urgency = normal
583 #
584 [xfpm-backlight]
585 summary = *Brightness*
586 urgency = low
587 #+end_src
588
589 ** Fontconfig
590 :PROPERTIES:
591 :header-args+: :tangle ~/.config/fontconfig/fonts.conf :comments none
592 :END:
593
594 #+begin_src xml
595 <?xml version="1.0"?>
596 <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
597 <fontconfig>
598 <match target="font">
599 <edit mode="assign" name="rgba">
600 <const>rgb</const>
601 </edit>
602 </match>
603 <match target="font">
604 <edit mode="assign" name="hinting">
605 <bool>true</bool>
606 </edit>
607 </match>
608 <match target="font">
609 <edit mode="assign" name="hintstyle">
610 <const>hintslight</const>
611 </edit>
612 </match>
613 <match target="font">
614 <edit mode="assign" name="antialias">
615 <bool>true</bool>
616 </edit>
617 </match>
618 <match target="font">
619 <edit mode="assign" name="lcdfilter">
620 <const>lcddefault</const>
621 </edit>
622 </match>
623 <dir>~/.fonts</dir>
624
625 <!-- Use Liberation Sans for Helvetica (instead of Nimbus Sans) -->
626 <alias binding="same">
627 <family>Helvetica</family>
628 <accept>
629 <family>Liberation Sans</family>
630 </accept>
631 </alias>
632 </fontconfig>
633 #+end_src
634
635 ** Git
636
637 *** gitconfig
638 :PROPERTIES:
639 :header-args+: :tangle ~/.gitconfig
640 :END:
641
642 **** user
643 #+begin_src conf
644 [user]
645 name = Amin Bandali
646 email = amin@aminb.org
647 signingkey = 4E05246AB0BF7FFB
648 #+end_src
649
650 **** signing
651 #+begin_src conf
652 [commit]
653 gpgsign = true
654 # [format]
655 # signoff = true
656 #+end_src
657
658 **** core
659 #+begin_src conf
660 [core]
661 autocrlf = input # CRLF -> LF on commit
662 editor = emacsclient -t
663 excludesfile = ~/.gitignore_global
664 pager = "less"
665 #+end_src
666
667 **** gpg
668 #+begin_src conf
669 [gpg]
670 program = gpg2
671 #+end_src
672
673 **** alias
674 #+begin_src conf
675 [alias]
676 git = !exec git # handle nested git calls, e.g. git git status
677 aliases = config --get-regexp '^alias\\.'
678 a = add
679 s = status
680 sl = status --long
681 c = checkout
682 cb = checkout -b
683 b = branch
684 r = rebase
685 p = pull
686 pr = pull --rebase
687 ps = push
688 psf = push --force
689 #+end_src
690
691 **** color
692 #+begin_src conf
693 [color]
694 ui = auto
695 [color "status"]
696 added = green bold
697 changed = red bold
698 untracked = red bold
699 [color "branch"]
700 current = green bold
701 remote = magenta bold
702 [color "diff"]
703 new = green bold
704 old = red bold
705 #+end_src
706
707 **** status
708 #+begin_src conf
709 [status]
710 # showUntrackedFiles = all
711 short=true
712 branch=true
713 #+end_src
714
715 **** github
716 #+begin_src conf
717 [github]
718 user = aminb
719 #+end_src
720
721 **** send-email
722 #+begin_src conf
723 [sendemail]
724 smtpuser = amin@aminb.org
725 smtpserver = nix.aminb.org
726 smtpserverport = 587
727 smtpencryption = tls
728 annotate = yes
729 #+end_src
730
731 *** gitignore
732 :PROPERTIES:
733 :header-args+: :tangle ~/.gitignore_global
734 :END:
735
736 #+begin_src conf
737 *.orig
738 *.py[co]
739 *.sublime-workspace
740 *~
741 .DS_Store
742 *.elc
743 *-autoloads.el
744 #+end_src
745
746 ** Latexmk
747 :PROPERTIES:
748 :header-args+: :tangle ~/.latexmkrc
749 :END:
750
751 #+begin_src conf
752 $pdf_previewer = "start zathura %O %S";
753 $clean_ext = "aux out";
754
755 # $pdf_update_method = 4;
756 # $pdf_update_command = "zathura %O %S";
757
758 # Synctex allows one to jump to from the PDF in Zathura to the source in Emacs
759 # by Ctrl+click in the PDF.
760 # Tell latexmk to use Zathura as a previewer, and run emacsclient as the Synctex
761 # editor.
762 # $pdf_previewer = 'exec zathura --synctex-forward -x \'emacsclient --no-wait +%{line} %{input}\' %O %S';
763 #+end_src
764
765 ** libinput
766
767 Improve XPS 15 9560's touchpad experience.
768
769 # begin_src conf :tangle (when (and (eq system-type 'gnu/linux) (string= (system-name) "plasma")) "/sudo::/etc/X11/xorg.conf.d/30-touchpad.conf")
770 #+begin_src conf :tangle no
771 Section "InputClass"
772 Identifier "libinput touchpad catchall"
773 Driver "libinput"
774 MatchIsTouchpad "on"
775 Option "ClickMethod" "clickfinger"
776 Option "NaturalScrolling" "true"
777 Option "Tapping" "on"
778 Option "TappingButtonMap" "lrm"
779 EndSection
780 #+end_src
781
782 ** getmail
783
784 *** getmailrc
785 :PROPERTIES:
786 :header-args+: :tangle ~/.getmail/getmailrc
787 :END:
788
789 #+begin_src conf
790 [retriever]
791 type = SimplePOP3SSLRetriever
792 server = fencepost.gnu.org
793 username = aminb
794 password_command = ("gpg2", "--no-tty", "-q", "-d", "/home/amin/.passwd/gnu.gpg")
795 port = 995
796 use_apop = True
797
798 [destination]
799 type = Maildir
800 path = ~/mail/gnu/Inbox/
801
802 [options]
803 delete = True
804 #+end_src
805
806 *** getmail.service
807 :PROPERTIES:
808 :header-args+: :tangle ~/.config/systemd/user/getmail.service
809 :END:
810
811 #+begin_src conf :tangle no
812 [Unit]
813 Description=getmail service
814
815 [Service]
816 Type=oneshot
817 ExecStart=/usr/bin/getmail
818 StandardOutput=syslog
819 StandardError=syslog
820 #+end_src
821
822 *** getmail.timer
823 :PROPERTIES:
824 :header-args+: :tangle ~/.config/systemd/user/getmail.timer
825 :END:
826
827 #+begin_src conf :tangle no
828 [Unit]
829 Description=getmail timer
830
831 [Timer]
832 OnCalendar=*:0/30
833 Persistent=true
834 Unit=getmail.service
835
836 [Install]
837 WantedBy=timers.target
838 #+end_src
839
840 ** GnuPG
841 :PROPERTIES:
842 :header-args+: :tangle ~/.gnupg/gpg-agent.conf
843 :END:
844
845 #+begin_src conf
846 default-cache-ttl 43200
847 max-cache-ttl 43200
848
849 default-cache-ttl-ssh 10800
850 max-cache-ttl-ssh 10800
851
852 # pinentry-program /usr/bin/pinentry-qt
853 #+end_src
854
855 ** GTK
856
857 *** gtk-2.0
858 :PROPERTIES:
859 :header-args+: :tangle ~/.gtkrc-2.0
860 :END:
861
862 #+begin_src conf
863 gtk-theme-name="Greybird"
864 gtk-icon-theme-name="Paper"
865 gtk-font-name="Ubuntu 10"
866 gtk-menu-images=0
867 # gtk-key-theme-name = "Emacs"
868 #+end_src
869
870 *** gtk-3.0
871 :PROPERTIES:
872 :header-args+: :tangle ~/.config/gtk-3.0/settings.ini
873 :END:
874
875 #+begin_src conf :tangle no
876 [Settings]
877 gtk-icon-theme-name = Paper
878 # gtk-theme-name = Adwaita
879
880 gtk-theme-name = Greybird
881 # gtk-theme-name = Arc-Darker
882 # gtk-theme-name = Numix-ArchBlue
883
884 gtk-font-name = Ubuntu 10
885 # gtk-key-theme-name = Emacs
886 #+end_src
887
888 ** isync
889
890 *** mbsyncrc
891 :PROPERTIES:
892 :header-args+: :tangle ~/.mbsyncrc
893 :END:
894
895 #+begin_src conf
896 # Global defaults
897 CopyArrivalDate yes
898
899 ######
900 IMAPAccount amin
901 Host nix.aminb.org
902 User amin@aminb.org
903 PassCmd "gpg -q --for-your-eyes-only --no-tty -d ~/.passwd/amin.gpg"
904 SSLType IMAPS
905
906 IMAPStore amin-remote
907 Account amin
908
909 MaildirStore amin-local
910 Path ~/mail/amin/
911 Inbox ~/mail/amin/Inbox
912 SubFolders Verbatim
913
914 Channel amin
915 Master :amin-remote:
916 Slave :amin-local:
917 Patterns * !dovecot*
918 Create Both
919 SyncState *
920
921 ######
922 IMAPAccount uwaterloo
923 Host connect.uwaterloo.ca
924 User abandali
925 PassCmd "gpg -q --for-your-eyes-only --no-tty -d ~/.passwd/uwaterloo.gpg"
926 SSLType IMAPS
927
928 IMAPStore uwaterloo-remote
929 Account uwaterloo
930
931 MaildirStore uwaterloo-local
932 Path ~/mail/uwaterloo/
933 Inbox ~/mail/uwaterloo/Inbox
934 SubFolders Verbatim
935
936 Channel uwaterloo
937 Master :uwaterloo-remote:
938 Slave :uwaterloo-local:
939 Patterns * !dovecot*
940 Create Both
941 SyncState *
942 #+end_src
943
944 *** mbsync.service
945 :PROPERTIES:
946 :header-args+: :tangle ~/.config/systemd/user/mbsync.service
947 :END:
948
949 #+begin_src conf :tangle no
950 [Unit]
951 Description=mbsync service
952
953 [Service]
954 Type=oneshot
955 ExecStart=/usr/bin/mbsync -Va
956 StandardOutput=syslog
957 StandardError=syslog
958 #+end_src
959
960 *** mbsync.timer
961 :PROPERTIES:
962 :header-args+: :tangle ~/.config/systemd/user/mbsync.timer
963 :END:
964
965 #+begin_src conf :tangle no
966 [Unit]
967 Description=mbsync timer
968
969 [Timer]
970 OnCalendar=*:0/15
971 Persistent=true
972 Unit=mbsync.service
973
974 [Install]
975 WantedBy=timers.target
976 #+end_src
977
978 ** mpd
979 :PROPERTIES:
980 :header-args+: :tangle ~/.config/mpd/mpd.conf
981 :END:
982
983 #+begin_src conf
984 # An example configuration file for MPD.
985 # Read the user manual for documentation: http://www.musicpd.org/doc/user/
986
987
988 # Files and directories #######################################################
989 #
990 # This setting controls the top directory which MPD will search to discover the
991 # available audio files and add them to the daemon's online database. This
992 # setting defaults to the XDG directory, otherwise the music directory will be
993 # be disabled and audio files will only be accepted over ipc socket (using
994 # file:// protocol) or streaming files over an accepted protocol.
995 #
996 music_directory "~/usr/music"
997 #
998 # This setting sets the MPD internal playlist directory. The purpose of this
999 # directory is storage for playlists created by MPD. The server will use
1000 # playlist files not created by the server but only if they are in the MPD
1001 # format. This setting defaults to playlist saving being disabled.
1002 #
1003 playlist_directory "~/.mpd/playlists"
1004 #
1005 # This setting sets the location of the MPD database. This file is used to
1006 # load the database at server start up and store the database while the
1007 # server is not up. This setting defaults to disabled which will allow
1008 # MPD to accept files over ipc socket (using file:// protocol) or streaming
1009 # files over an accepted protocol.
1010 #
1011 db_file "~/.mpd/database"
1012 #
1013 # These settings are the locations for the daemon log files for the daemon.
1014 # These logs are great for troubleshooting, depending on your log_level
1015 # settings.
1016 #
1017 # The special value "syslog" makes MPD use the local syslog daemon. This
1018 # setting defaults to logging to syslog, otherwise logging is disabled.
1019 #
1020 log_file "~/.mpd/log"
1021 #
1022 # This setting sets the location of the file which stores the process ID
1023 # for use of mpd --kill and some init scripts. This setting is disabled by
1024 # default and the pid file will not be stored.
1025 #
1026 pid_file "~/.mpd/pid"
1027 #
1028 # This setting sets the location of the file which contains information about
1029 # most variables to get MPD back into the same general shape it was in before
1030 # it was brought down. This setting is disabled by default and the server
1031 # state will be reset on server start up.
1032 #
1033 state_file "~/.mpd/state"
1034 #
1035 # The location of the sticker database. This is a database which
1036 # manages dynamic information attached to songs.
1037 #
1038 sticker_file "~/.mpd/sticker.sql"
1039 #
1040 ###############################################################################
1041
1042
1043 # General music daemon options ################################################
1044 #
1045 # This setting specifies the user that MPD will run as. MPD should never run as
1046 # root and you may use this setting to make MPD change its user ID after
1047 # initialization. This setting is disabled by default and MPD is run as the
1048 # current user.
1049 #
1050 #user "nobody"
1051 #
1052 # This setting specifies the group that MPD will run as. If not specified
1053 # primary group of user specified with "user" setting will be used (if set).
1054 # This is useful if MPD needs to be a member of group such as "audio" to
1055 # have permission to use sound card.
1056 #
1057 #group "nogroup"
1058 #
1059 # This setting sets the address for the daemon to listen on. Careful attention
1060 # should be paid if this is assigned to anything other then the default, any.
1061 # This setting can deny access to control of the daemon. Not effective if
1062 # systemd socket activiation is in use.
1063 #
1064 # For network
1065 #bind_to_address "any"
1066 #
1067 # And for Unix Socket
1068 #bind_to_address "~/.mpd/socket"
1069 #
1070 # This setting is the TCP port that is desired for the daemon to get assigned
1071 # to.
1072 #
1073 #port "6600"
1074 #
1075 # This setting controls the type of information which is logged. Available
1076 # setting arguments are "default", "secure" or "verbose". The "verbose" setting
1077 # argument is recommended for troubleshooting, though can quickly stretch
1078 # available resources on limited hardware storage.
1079 #
1080 #log_level "default"
1081 #
1082 # If you have a problem with your MP3s ending abruptly it is recommended that
1083 # you set this argument to "no" to attempt to fix the problem. If this solves
1084 # the problem, it is highly recommended to fix the MP3 files with vbrfix
1085 # (available from <http://www.willwap.co.uk/Programs/vbrfix.php>), at which
1086 # point gapless MP3 playback can be enabled.
1087 #
1088 #gapless_mp3_playback "yes"
1089 #
1090 # Setting "restore_paused" to "yes" puts MPD into pause mode instead
1091 # of starting playback after startup.
1092 #
1093 #restore_paused "no"
1094 #
1095 # This setting enables MPD to create playlists in a format usable by other
1096 # music players.
1097 #
1098 #save_absolute_paths_in_playlists "no"
1099 #
1100 # This setting defines a list of tag types that will be extracted during the
1101 # audio file discovery process. The complete list of possible values can be
1102 # found in the user manual.
1103 #metadata_to_use "artist,album,title,track,name,genre,date,composer,performer,disc"
1104 #
1105 # This setting enables automatic update of MPD's database when files in
1106 # music_directory are changed.
1107 #
1108 #auto_update "yes"
1109 #
1110 # Limit the depth of the directories being watched, 0 means only watch
1111 # the music directory itself. There is no limit by default.
1112 #
1113 #auto_update_depth "3"
1114 #
1115 ###############################################################################
1116
1117
1118 # Symbolic link behavior ######################################################
1119 #
1120 # If this setting is set to "yes", MPD will discover audio files by following
1121 # symbolic links outside of the configured music_directory.
1122 #
1123 #follow_outside_symlinks "yes"
1124 #
1125 # If this setting is set to "yes", MPD will discover audio files by following
1126 # symbolic links inside of the configured music_directory.
1127 #
1128 #follow_inside_symlinks "yes"
1129 #
1130 ###############################################################################
1131
1132
1133 # Zeroconf / Avahi Service Discovery ##########################################
1134 #
1135 # If this setting is set to "yes", service information will be published with
1136 # Zeroconf / Avahi.
1137 #
1138 #zeroconf_enabled "yes"
1139 #
1140 # The argument to this setting will be the Zeroconf / Avahi unique name for
1141 # this MPD server on the network.
1142 #
1143 #zeroconf_name "Music Player"
1144 #
1145 ###############################################################################
1146
1147
1148 # Permissions #################################################################
1149 #
1150 # If this setting is set, MPD will require password authorization. The password
1151 # setting can be specified multiple times for different password profiles.
1152 #
1153 #password "password@read,add,control,admin"
1154 #
1155 # This setting specifies the permissions a user has who has not yet logged in.
1156 #
1157 #default_permissions "read,add,control,admin"
1158 #
1159 ###############################################################################
1160
1161
1162 # Database #######################################################################
1163 #
1164
1165 #database {
1166 # plugin "proxy"
1167 # host "other.mpd.host"
1168 # port "6600"
1169 #}
1170
1171 # Input #######################################################################
1172 #
1173
1174 input {
1175 plugin "curl"
1176 # proxy "proxy.isp.com:8080"
1177 # proxy_user "user"
1178 # proxy_password "password"
1179 }
1180
1181 #
1182 ###############################################################################
1183
1184 # Audio Output ################################################################
1185 #
1186
1187 audio_output {
1188 type "pulse"
1189 name "pulse audio"
1190 }
1191
1192 audio_output {
1193 type "fifo"
1194 name "my_fifo"
1195 path "/tmp/mpd.fifo"
1196 format "44100:16:2"
1197 }
1198
1199 # MPD supports various audio output types, as well as playing through multiple
1200 # audio outputs at the same time, through multiple audio_output settings
1201 # blocks. Setting this block is optional, though the server will only attempt
1202 # autodetection for one sound card.
1203 #
1204 # An example of an ALSA output:
1205 #
1206 #audio_output {
1207 # type "alsa"
1208 # name "My ALSA Device"
1209 ## device "hw:0,0" # optional
1210 ## mixer_type "hardware" # optional
1211 ## mixer_device "default" # optional
1212 ## mixer_control "PCM" # optional
1213 ## mixer_index "0" # optional
1214 #}
1215 #
1216 # An example of an OSS output:
1217 #
1218 #audio_output {
1219 # type "oss"
1220 # name "My OSS Device"
1221 ## device "/dev/dsp" # optional
1222 ## mixer_type "hardware" # optional
1223 ## mixer_device "/dev/mixer" # optional
1224 ## mixer_control "PCM" # optional
1225 #}
1226 #
1227 # An example of a shout output (for streaming to Icecast):
1228 #
1229 #audio_output {
1230 # type "shout"
1231 # encoder "vorbis" # optional
1232 # name "My Shout Stream"
1233 # host "localhost"
1234 # port "8000"
1235 # mount "/mpd.ogg"
1236 # password "hackme"
1237 # quality "5.0"
1238 # bitrate "128"
1239 # format "44100:16:1"
1240 ## protocol "icecast2" # optional
1241 ## user "source" # optional
1242 ## description "My Stream Description" # optional
1243 ## url "http://example.com" # optional
1244 ## genre "jazz" # optional
1245 ## public "no" # optional
1246 ## timeout "2" # optional
1247 ## mixer_type "software" # optional
1248 #}
1249 #
1250 # An example of a recorder output:
1251 #
1252 #audio_output {
1253 # type "recorder"
1254 # name "My recorder"
1255 # encoder "vorbis" # optional, vorbis or lame
1256 # path "/var/lib/mpd/recorder/mpd.ogg"
1257 ## quality "5.0" # do not define if bitrate is defined
1258 # bitrate "128" # do not define if quality is defined
1259 # format "44100:16:1"
1260 #}
1261 #
1262 # An example of a httpd output (built-in HTTP streaming server):
1263 #
1264 #audio_output {
1265 # type "httpd"
1266 # name "My HTTP Stream"
1267 # encoder "vorbis" # optional, vorbis or lame
1268 # port "8000"
1269 # bind_to_address "0.0.0.0" # optional, IPv4 or IPv6
1270 ## quality "5.0" # do not define if bitrate is defined
1271 # bitrate "128" # do not define if quality is defined
1272 # format "44100:16:1"
1273 # max_clients "0" # optional 0=no limit
1274 #}
1275 #
1276 # An example of a pulseaudio output (streaming to a remote pulseaudio server)
1277 #
1278 #audio_output {
1279 # type "pulse"
1280 # name "My Pulse Output"
1281 ## server "remote_server" # optional
1282 ## sink "remote_server_sink" # optional
1283 #}
1284 #
1285 # An example of a winmm output (Windows multimedia API).
1286 #
1287 #audio_output {
1288 # type "winmm"
1289 # name "My WinMM output"
1290 ## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional
1291 # or
1292 ## device "0" # optional
1293 ## mixer_type "hardware" # optional
1294 #}
1295 #
1296 # An example of an openal output.
1297 #
1298 #audio_output {
1299 # type "openal"
1300 # name "My OpenAL output"
1301 ## device "Digital Audio (S/PDIF) (High Definition Audio Device)" # optional
1302 #}
1303 #
1304 # An example of an sndio output.
1305 #
1306 #audio_output {
1307 # type "sndio"
1308 # name "sndio output"
1309 # mixer_type "software"
1310 #}
1311 #
1312 # An example of an OS X output:
1313 #
1314 #audio_output {
1315 # type "osx"
1316 # name "My OS X Device"
1317 ## device "Built-in Output" # optional
1318 ## channel_map "-1,-1,0,1" # optional
1319 #}
1320 #
1321 ## Example "pipe" output:
1322 #
1323 #audio_output {
1324 # type "pipe"
1325 # name "my pipe"
1326 # command "aplay -f cd 2>/dev/null"
1327 ## Or if you're want to use AudioCompress
1328 # command "AudioCompress -m | aplay -f cd 2>/dev/null"
1329 ## Or to send raw PCM stream through PCM:
1330 # command "nc example.org 8765"
1331 # format "44100:16:2"
1332 #}
1333 #
1334 ## An example of a null output (for no audio output):
1335 #
1336 #audio_output {
1337 # type "null"
1338 # name "My Null Output"
1339 # mixer_type "none" # optional
1340 #}
1341 #
1342 ###############################################################################
1343
1344
1345 # Normalization automatic volume adjustments ##################################
1346 #
1347 # This setting specifies the type of ReplayGain to use. This setting can have
1348 # the argument "off", "album", "track" or "auto". "auto" is a special mode that
1349 # chooses between "track" and "album" depending on the current state of
1350 # random playback. If random playback is enabled then "track" mode is used.
1351 # See <http://www.replaygain.org> for more details about ReplayGain.
1352 # This setting is off by default.
1353 #
1354 #replaygain "album"
1355 #
1356 # This setting sets the pre-amp used for files that have ReplayGain tags. By
1357 # default this setting is disabled.
1358 #
1359 #replaygain_preamp "0"
1360 #
1361 # This setting sets the pre-amp used for files that do NOT have ReplayGain tags.
1362 # By default this setting is disabled.
1363 #
1364 #replaygain_missing_preamp "0"
1365 #
1366 # This setting enables or disables ReplayGain limiting.
1367 # MPD calculates actual amplification based on the ReplayGain tags
1368 # and replaygain_preamp / replaygain_missing_preamp setting.
1369 # If replaygain_limit is enabled MPD will never amplify audio signal
1370 # above its original level. If replaygain_limit is disabled such amplification
1371 # might occur. By default this setting is enabled.
1372 #
1373 #replaygain_limit "yes"
1374 #
1375 # This setting enables on-the-fly normalization volume adjustment. This will
1376 # result in the volume of all playing audio to be adjusted so the output has
1377 # equal "loudness". This setting is disabled by default.
1378 #
1379 #volume_normalization "no"
1380 #
1381 ###############################################################################
1382
1383 # Character Encoding ##########################################################
1384 #
1385 # If file or directory names do not display correctly for your locale then you
1386 # may need to modify this setting.
1387 #
1388 #filesystem_charset "UTF-8"
1389 #
1390 ###############################################################################
1391 #+end_src
1392
1393 ** msmtp
1394 :PROPERTIES:
1395 :header-args+: :tangle ~/.msmtprc
1396 :END:
1397
1398 #+begin_src conf
1399 # Set default values for all following accounts.
1400 defaults
1401 port 587
1402 tls on
1403 auth on
1404 #tls_trust_file /etc/ssl/certs/ca-certificates.crt
1405 logfile ~/.msmtp.log
1406
1407 # aminb
1408 account aminb
1409 host nix.aminb.org
1410 tls_fingerprint 65:DD:B8:32:D8:CD:F1:DC:B6:34:EE:35:04:18:AC:09:F3:1D:6D:20:F2:4A:E2:BD:64:48:B7:1F:90:BD:C4:BA
1411 tls_starttls on
1412 from amin@aminb.org
1413 user amin@aminb.org
1414 passwordeval gpg2 --no-tty -q -d ~/.passwd/amin.gpg
1415
1416 # gnu
1417 account gnu
1418 host fencepost.gnu.org
1419 # use `msmtp -a gnu --serverinfo --tls --tls-certcheck=off --tls-fingerprint=` to get the current fingerprint
1420 tls_fingerprint 28:70:42:76:1C:EC:91:5F:D1:B3:27:A1:CD:3B:32:A4:8B:0B:DC:3A:CD:CA:F6:6F:E4:61:BA:69:D7:4D:0D:0B
1421 tls_starttls on
1422 from aminb@gnu.org
1423 user aminb
1424 passwordeval gpg2 --no-tty -q -d ~/.passwd/gnu.gpg
1425
1426 # uwaterloo
1427 account uwaterloo
1428 host connect.uwaterloo.ca
1429 tls_starttls on
1430 from abandali@uwaterloo.ca
1431 user abandali
1432 passwordeval gpg2 --no-tty -q -d ~/.passwd/uwaterloo.gpg
1433 tls_trust_file /etc/ssl/certs/ca-certificates.crt
1434
1435 # uwaterloo (friendly address)
1436 account uwaterloo-friendly : uwaterloo
1437 from amin.bandali@uwaterloo.ca
1438
1439 # Set a default account
1440 account default : aminb
1441 #+end_src
1442
1443 ** ncmpcpp
1444
1445 *** config
1446 :PROPERTIES:
1447 :header-args+: :tangle ~/.ncmpcpp/config
1448 :END:
1449
1450 #+begin_src conf :tangle no
1451 ##############################################################
1452 ## This is the example configuration file. Copy it to ##
1453 ## $HOME/.ncmpcpp/config or $XDG_CONFIG_HOME/ncmpcpp/config ##
1454 ## and set up your preferences. ##
1455 ##############################################################
1456 #
1457 ##### directories ######
1458 ##
1459 ## Directory for storing ncmpcpp related files.
1460 ## Changing it is useful if you want to store
1461 ## everything somewhere else and provide command
1462 ## line setting for alternative location to config
1463 ## file which defines that while launching ncmpcpp.
1464 ##
1465 #
1466 ncmpcpp_directory = ~/.ncmpcpp
1467 #
1468 ##
1469 ## Directory for storing downloaded lyrics. It
1470 ## defaults to ~/.lyrics since other MPD clients
1471 ## (eg. ncmpc) also use that location.
1472 ##
1473 #
1474 #lyrics_directory = ~/.lyrics
1475 #
1476 ##### connection settings #####
1477 #
1478 #mpd_host = localhost
1479 #
1480 #mpd_port = 6600
1481 #
1482 #mpd_connection_timeout = 5
1483 #
1484 ## Needed for tag editor and file operations to work.
1485 ##
1486 mpd_music_dir = ~/usr/music
1487 #
1488 #mpd_crossfade_time = 5
1489 #
1490 ##### music visualizer #####
1491 ##
1492 ## Note: In order to make music visualizer work you'll
1493 ## need to use mpd fifo output, whose format parameter
1494 ## has to be set to 44100:16:1 for mono visualization
1495 ## or 44100:16:2 for stereo visualization. Example
1496 ## configuration (it has to be put into mpd.conf):
1497 ##
1498 ## audio_output {
1499 ## type "fifo"
1500 ## name "Visualizer feed"
1501 ## path "/tmp/mpd.fifo"
1502 ## format "44100:16:2"
1503 ## }
1504 ##
1505 #
1506 visualizer_fifo_path = /tmp/mpd.fifo
1507 #
1508 ##
1509 ## Note: Below parameter is needed for ncmpcpp
1510 ## to determine which output provides data for
1511 ## visualizer and thus allow syncing between
1512 ## visualization and sound as currently there
1513 ## are some problems with it.
1514 ##
1515 #
1516 visualizer_output_name = my fifo
1517 #
1518 ##
1519 ## If you set format to 44100:16:2, make it 'yes'.
1520 ##
1521 visualizer_in_stereo = yes
1522 #
1523 ##
1524 ## Multiply received samples by given value. Very
1525 ## useful for proper visualization of quiet music.
1526 ##
1527 #visualizer_sample_multiplier = 1
1528 #
1529 ##
1530 ## Note: Below parameter defines how often ncmpcpp
1531 ## has to "synchronize" visualizer and audio outputs.
1532 ## 30 seconds is optimal value, but if you experience
1533 ## synchronization problems, set it to lower value.
1534 ## Keep in mind that sane values start with >=10.
1535 ##
1536 #
1537 visualizer_sync_interval = 30
1538 #
1539 ##
1540 ## Note: To enable spectrum frequency visualization
1541 ## you need to compile ncmpcpp with fftw3 support.
1542 ##
1543 #
1544 ## Available values: spectrum, wave, wave_filled, ellipse.
1545 ##
1546 visualizer_type = spectrum
1547 #
1548 #visualizer_look = ●▮
1549 visualizer_look = "●•"
1550 #
1551 #visualizer_color = blue, cyan, green, yellow, magenta, red
1552 #
1553 ## Alternative subset of 256 colors for terminals that support it.
1554 ##
1555 #visualizer_color = 41, 83, 119, 155, 185, 215, 209, 203, 197, 161
1556 #
1557 ##### system encoding #####
1558 ##
1559 ## ncmpcpp should detect your charset encoding
1560 ## but if it failed to do so, you can specify
1561 ## charset encoding you are using here.
1562 ##
1563 ## Note: You can see whether your ncmpcpp build
1564 ## supports charset detection by checking output
1565 ## of `ncmpcpp --version`.
1566 ##
1567 ## Note: Since MPD uses UTF-8 by default, setting
1568 ## this option makes sense only if your encoding
1569 ## is different.
1570 ##
1571 #
1572 #system_encoding = ""
1573 #
1574 ##### delays #####
1575 #
1576 ## Time of inactivity (in seconds) after playlist
1577 ## highlighting will be disabled (0 = always on).
1578 ##
1579 #playlist_disable_highlight_delay = 5
1580 #
1581 ## Defines how long messages are supposed to be visible.
1582 ##
1583 #message_delay_time = 5
1584 #
1585 ##### song format #####
1586 ##
1587 ## For a song format you can use:
1588 ##
1589 ## %l - length
1590 ## %f - filename
1591 ## %D - directory
1592 ## %a - artist
1593 ## %A - album artist
1594 ## %t - title
1595 ## %b - album
1596 ## %y - date
1597 ## %n - track number (01/12 -> 01)
1598 ## %N - full track info (01/12 -> 01/12)
1599 ## %g - genre
1600 ## %c - composer
1601 ## %p - performer
1602 ## %d - disc
1603 ## %C - comment
1604 ## %P - priority
1605 ## $R - begin right alignment
1606 ##
1607 ## If you want to make sure that a part of the format is displayed
1608 ## only when certain tags are present, you can archieve it by
1609 ## grouping them with brackets, e.g. '{%a - %t}' will be evaluated
1610 ## to 'ARTIST - TITLE' if both tags are present or '' otherwise.
1611 ## It is also possible to define a list of alternatives by providing
1612 ## several groups and separating them with '|', e.g. '{%t}|{%f}'
1613 ## will be evaluated to 'TITLE' or 'FILENAME' if the former is not
1614 ## present.
1615 ##
1616 ## Note: If you want to set limit on maximal length of a tag, just
1617 ## put the appropriate number between % and character that defines
1618 ## tag type, e.g. to make album take max. 20 terminal cells, use '%20b'.
1619 ##
1620 ## In addition, formats support markers used for text attributes.
1621 ## They are followed by character '$'. After that you can put:
1622 ##
1623 ## - 0 - default window color (discards all other colors)
1624 ## - 1 - black
1625 ## - 2 - red
1626 ## - 3 - green
1627 ## - 4 - yellow
1628 ## - 5 - blue
1629 ## - 6 - magenta
1630 ## - 7 - cyan
1631 ## - 8 - white
1632 ## - 9 - end of current color
1633 ## - b - bold text
1634 ## - u - underline text
1635 ## - r - reverse colors
1636 ## - a - use alternative character set
1637 ##
1638 ## If you don't want to use a non-color attribute anymore, just put it
1639 ## again, but this time insert character '/' between '$' and attribute
1640 ## character, e.g. {$b%t$/b}|{$r%f$/r} will display bolded title tag
1641 ## or filename with reversed colors.
1642 ##
1643 ## If you want to use 256 colors and/or background colors in formats
1644 ## (the naming scheme is described below in section about color
1645 ## definitions), it can be done with the syntax $(COLOR), e.g. to set
1646 ## the artist tag to one of the non-standard colors and make it have
1647 ## yellow background, you need to write $(197_yellow)%a$(end). Note
1648 ## that for standard colors this is interchangable with attributes
1649 ## listed above.
1650 ##
1651 ## Note: colors can be nested.
1652 ##
1653 #
1654 #song_list_format = {%a - }{%t}|{$8%f$9}$R{$3(%l)$9}
1655 #
1656 #song_status_format = {{%a{ "%b"{ (%y)}} - }{%t}}|{%f}
1657 #
1658 #song_library_format = {%n - }{%t}|{%f}
1659 #
1660 #
1661 #alternative_header_first_line_format = $b$1$aqqu$/a$9 {%t}|{%f} $1$atqq$/a$9$/b
1662 #
1663 #alternative_header_second_line_format = {{$4$b%a$/b$9}{ - $7%b$9}{ ($4%y$9)}}|{%D}
1664 #
1665 #now_playing_prefix = $b
1666 #
1667 #now_playing_suffix = $/b
1668 #
1669 #browser_playlist_prefix = "$2playlist$9 "
1670 #
1671 #selected_item_prefix = $6
1672 #
1673 #selected_item_suffix = $9
1674 #
1675 #modified_item_prefix = $3> $9
1676 #
1677 ##
1678 ## Note: attributes are not supported for the following variables.
1679 ##
1680 #song_window_title_format = {%a - }{%t}|{%f}
1681 ##
1682 ## Note: Below variables are used for sorting songs in browser.
1683 ## The sort mode determines how songs are sorted, and can be used
1684 ## in combination with a sort format to specify a custom sorting format.
1685 ## Available values for browser_sort_mode are "name", "mtime", "format"
1686 ## and "noop".
1687 ##
1688 #
1689 #browser_sort_mode = name
1690 #
1691 #browser_sort_format = {%a - }{%t}|{%f} {(%l)}
1692 #
1693 ##### columns settings #####
1694 ##
1695 ## syntax of song columns list format is "column column etc."
1696 ##
1697 ## - syntax for each column is:
1698 ##
1699 ## (width of the column)[color of the column]{displayed tag}
1700 ##
1701 ## Note: Width is by default in %, if you want a column to
1702 ## have fixed size, add 'f' after the value, e.g. (10)[white]{a}
1703 ## will be the column that take 10% of screen (so the real width
1704 ## will depend on actual screen size), whereas (10f)[white]{a}
1705 ## will take 10 terminal cells, no matter how wide the screen is.
1706 ##
1707 ## - color is optional (if you want the default one,
1708 ## leave the field empty).
1709 ##
1710 ## Note: You can give a column additional attributes by putting appropriate
1711 ## character after displayed tag character. Available attributes are:
1712 ##
1713 ## - r - column will be right aligned
1714 ## - E - if tag is empty, empty tag marker won't be displayed
1715 ##
1716 ## You can also:
1717 ##
1718 ## - give a column custom name by putting it after attributes,
1719 ## separated with character ':', e.g. {lr:Length} gives you
1720 ## right aligned column of lengths named "Length".
1721 ##
1722 ## - define sequence of tags, that have to be displayed in case
1723 ## predecessor is empty in a way similar to the one in classic
1724 ## song format, i.e. using '|' character, e.g. {a|c|p:Owner}
1725 ## creates column named "Owner" that tries to display artist
1726 ## tag and then composer and performer if previous ones are
1727 ## not available.
1728 ##
1729 #
1730 #song_columns_list_format = (20)[]{a} (6f)[green]{NE} (50)[white]{t|f:Title} (20)[cyan]{b} (7f)[magenta]{l}
1731 #
1732 ##### various settings #####
1733 #
1734 ##
1735 ## Note: Custom command that will be executed each
1736 ## time song changes. Useful for notifications etc.
1737 ##
1738 #execute_on_song_change = ""
1739 #
1740 #playlist_show_mpd_host = no
1741 #
1742 #playlist_show_remaining_time = no
1743 #
1744 #playlist_shorten_total_times = no
1745 #
1746 #playlist_separate_albums = no
1747 #
1748 ##
1749 ## Note: Possible display modes: classic, columns.
1750 ##
1751 #playlist_display_mode = columns
1752 #
1753 #browser_display_mode = classic
1754 #
1755 #search_engine_display_mode = classic
1756 #
1757 #playlist_editor_display_mode = classic
1758 #
1759 #discard_colors_if_item_is_selected = yes
1760 #
1761 #incremental_seeking = yes
1762 #
1763 #seek_time = 1
1764 #
1765 #volume_change_step = 2
1766 #
1767 #autocenter_mode = no
1768 #
1769 #centered_cursor = no
1770 #
1771 ##
1772 ## Note: You can specify third character which will
1773 ## be used to build 'empty' part of progressbar.
1774 ##
1775 #progressbar_look = =>
1776 progressbar_look = "─╼╶"
1777 #progressbar_look = "─⊙╶"
1778 #
1779 #progressbar_boldness = yes
1780 #
1781 ## Available values: database, playlist.
1782 ##
1783 #default_place_to_search_in = database
1784 #
1785 ## Available values: classic, alternative.
1786 ##
1787 #user_interface = classic
1788 #
1789 #data_fetching_delay = yes
1790 #
1791 ## Available values: artist, album_artist, date, genre, composer, performer.
1792 ##
1793 #media_library_primary_tag = artist
1794 #
1795 ## Available values: wrapped, normal.
1796 ##
1797 #default_find_mode = wrapped
1798 #
1799 #default_tag_editor_pattern = %n - %t
1800 #
1801 #header_visibility = yes
1802 #
1803 #statusbar_visibility = yes
1804 #
1805 #titles_visibility = yes
1806 #
1807 #header_text_scrolling = yes
1808 #
1809 #cyclic_scrolling = no
1810 #
1811 #lines_scrolled = 2
1812 #
1813 #follow_now_playing_lyrics = no
1814 #
1815 #fetch_lyrics_for_current_song_in_background = no
1816 #
1817 #store_lyrics_in_song_dir = no
1818 #
1819 #generate_win32_compatible_filenames = yes
1820 #
1821 #allow_for_physical_item_deletion = no
1822 #
1823 ##
1824 ## Note: If you set this variable, ncmpcpp will try to
1825 ## get info from last.fm in language you set and if it
1826 ## fails, it will fall back to english. Otherwise it will
1827 ## use english the first time.
1828 ##
1829 ## Note: Language has to be expressed as an ISO 639 alpha-2 code.
1830 ##
1831 #lastfm_preferred_language = en
1832 #
1833 #show_hidden_files_in_local_browser = no
1834 #
1835 ##
1836 ## How shall screen switcher work?
1837 ##
1838 ## - "previous" - switch between the current and previous screen.
1839 ## - "screen1,...,screenN" - switch between given sequence of screens.
1840 ##
1841 ## Screens available for use: help, playlist, browser, search_engine,
1842 ## media_library, playlist_editor, tag_editor, outputs, visualizer, clock.
1843 ##
1844 #screen_switcher_mode = playlist, browser
1845 #
1846 ##
1847 ## Note: You can define startup screen
1848 ## by choosing screen from the list above.
1849 ##
1850 #startup_screen = playlist
1851 #
1852 ##
1853 ## Note: You can define startup slave screen
1854 ## by choosing screen from the list above or
1855 ## an empty value for no slave screen.
1856 ##
1857 #startup_slave_screen = ""
1858 #
1859 #startup_slave_screen_focus = no
1860 #
1861 ##
1862 ## Default width of locked screen (in %).
1863 ## Acceptable values are from 20 to 80.
1864 ##
1865 #
1866 #locked_screen_width_part = 50
1867 #
1868 #ask_for_locked_screen_width_part = yes
1869 #
1870 #jump_to_now_playing_song_at_start = yes
1871 #
1872 #ask_before_clearing_playlists = yes
1873 #
1874 #clock_display_seconds = no
1875 #
1876 #display_volume_level = yes
1877 #
1878 #display_bitrate = no
1879 #
1880 #display_remaining_time = no
1881 #
1882 ## Available values: none, basic, extended, perl.
1883 ##
1884 #regular_expressions = perl
1885 #
1886 ##
1887 ## Note: If below is enabled, ncmpcpp will ignore leading
1888 ## "The" word while sorting items in browser, tags in
1889 ## media library, etc.
1890 ##
1891 #ignore_leading_the = no
1892 #
1893 #block_search_constraints_change_if_items_found = yes
1894 #
1895 #mouse_support = yes
1896 #
1897 #mouse_list_scroll_whole_page = yes
1898 #
1899 #empty_tag_marker = <empty>
1900 #
1901 #tags_separator = " | "
1902 #
1903 #tag_editor_extended_numeration = no
1904 #
1905 #media_library_sort_by_mtime = no
1906 #
1907 #enable_window_title = yes
1908 #
1909 ##
1910 ## Note: You can choose default search mode for search
1911 ## engine. Available modes are:
1912 ##
1913 ## - 1 - use mpd built-in searching (no regexes, pattern matching)
1914 ## - 2 - use ncmpcpp searching (pattern matching with support for regexes,
1915 ## but if your mpd is on a remote machine, downloading big database
1916 ## to process it can take a while
1917 ## - 3 - match only exact values (this mode uses mpd function for searching
1918 ## in database and local one for searching in current playlist)
1919 ##
1920 #
1921 #search_engine_default_search_mode = 1
1922 #
1923 #external_editor = nano
1924 #
1925 ## Note: set to yes if external editor is a console application.
1926 ##
1927 #use_console_editor = yes
1928 #
1929 ##### colors definitions #####
1930 ##
1931 ## It is possible to set a background color by setting a color
1932 ## value "<foreground>_<background>", e.g. red_black will set
1933 ## foregound color to red and background color to black.
1934 ##
1935 ## In addition, for terminals that support 256 colors it
1936 ## is possible to set one of them by using a number in range
1937 ## [1, 256] instead of color name, e.g. numerical value
1938 ## corresponding to red_black is 2_1. To find out if the
1939 ## terminal supports 256 colors, run ncmpcpp and check out
1940 ## the bottom of the help screen for list of available colors
1941 ## and their numerical values.
1942 ##
1943 ## Note: due to technical limitations of ncurses, if 256 colors
1944 ## are used, it is possible to either use only the colors with
1945 ## default background color, or all pairs from 1_1 up to 254_127,
1946 ## depending on the ncurses version used.
1947 ##
1948 #
1949 #colors_enabled = yes
1950 #
1951 #empty_tag_color = cyan
1952 #
1953 #header_window_color = default
1954 #
1955 #volume_color = default
1956 #
1957 #state_line_color = default
1958 #
1959 #state_flags_color = default
1960 #
1961 #main_window_color = yellow
1962 #
1963 #color1 = white
1964 #
1965 #color2 = green
1966 #
1967 #main_window_highlight_color = yellow
1968 #
1969 #progressbar_color = black
1970 #
1971 #progressbar_elapsed_color = green
1972 #
1973 #statusbar_color = default
1974 #
1975 #alternative_ui_separator_color = black
1976 #
1977 #active_column_color = red
1978 #
1979 #window_border_color = green
1980 #
1981 #active_window_border = red
1982 #
1983 #+end_src
1984
1985 *** bindings
1986 :PROPERTIES:
1987 :header-args+: :tangle ~/.ncmpcpp/bindings
1988 :END:
1989
1990 #+begin_src conf :tangle no
1991 def_key "j"
1992 scroll_down
1993 def_key "k"
1994 scroll_up
1995
1996 def_key "ctrl-u"
1997 page_up
1998 def_key "ctrl-d"
1999 page_down
2000
2001 def_key "h"
2002 previous_column
2003 def_key "l"
2004 next_column
2005
2006 def_key "."
2007 show_lyrics
2008
2009 def_key "n"
2010 next_found_item
2011 def_key "N"
2012 previous_found_item
2013
2014 def_key "J"
2015 move_sort_order_down
2016 def_key "K"
2017 move_sort_order_up
2018 #+end_src
2019
2020 ** notmuch
2021
2022 *** notmuch-config
2023 :PROPERTIES:
2024 :header-args+: :tangle ~/.notmuch-config
2025 :END:
2026
2027 #+begin_src conf
2028 # .notmuch-config - Configuration file for the notmuch mail system
2029 #
2030 # For more information about notmuch, see https://notmuchmail.org
2031
2032 # Database configuration
2033 #
2034 # The only value supported here is 'path' which should be the top-level
2035 # directory where your mail currently exists and to where mail will be
2036 # delivered in the future. Files should be individual email messages.
2037 # Notmuch will store its database within a sub-directory of the path
2038 # configured here named ".notmuch".
2039 #
2040 [database]
2041 path=/home/amin/mail
2042
2043 # User configuration
2044 #
2045 # Here is where you can let notmuch know how you would like to be
2046 # addressed. Valid settings are
2047 #
2048 # name Your full name.
2049 # primary_email Your primary email address.
2050 # other_email A list (separated by ';') of other email addresses
2051 # at which you receive email.
2052 #
2053 # Notmuch will use the various email addresses configured here when
2054 # formatting replies. It will avoid including your own addresses in the
2055 # recipient list of replies, and will set the From address based on the
2056 # address to which the original email was addressed.
2057 #
2058 [user]
2059 name=Amin Bandali
2060 primary_email=amin@aminb.org
2061 other_email=abandali@uwaterloo.ca;amin.bandali@uwaterloo.ca;aminb@gnu.org;
2062
2063 # Configuration for "notmuch new"
2064 #
2065 # The following options are supported here:
2066 #
2067 # tags A list (separated by ';') of the tags that will be
2068 # added to all messages incorporated by "notmuch new".
2069 #
2070 # ignore A list (separated by ';') of file and directory names
2071 # that will not be searched for messages by "notmuch new".
2072 #
2073 # NOTE: *Every* file/directory that goes by one of those
2074 # names will be ignored, independent of its depth/location
2075 # in the mail store.
2076 #
2077 [new]
2078 tags=new;
2079 #tags=unread;inbox;
2080 ignore=.uidvalidity;.mbsyncstate;/.*/dovecot*/
2081
2082 # Search configuration
2083 #
2084 # The following option is supported here:
2085 #
2086 # exclude_tags
2087 # A ;-separated list of tags that will be excluded from
2088 # search results by default. Using an excluded tag in a
2089 # query will override that exclusion.
2090 #
2091 [search]
2092 exclude_tags=deleted;spam;
2093
2094 # Maildir compatibility configuration
2095 #
2096 # The following option is supported here:
2097 #
2098 # synchronize_flags Valid values are true and false.
2099 #
2100 # If true, then the following maildir flags (in message filenames)
2101 # will be synchronized with the corresponding notmuch tags:
2102 #
2103 # Flag Tag
2104 # ---- -------
2105 # D draft
2106 # F flagged
2107 # P passed
2108 # R replied
2109 # S unread (added when 'S' flag is not present)
2110 #
2111 # The "notmuch new" command will notice flag changes in filenames
2112 # and update tags, while the "notmuch tag" and "notmuch restore"
2113 # commands will notice tag changes and update flags in filenames
2114 #
2115 [maildir]
2116 synchronize_flags=true
2117
2118 # Cryptography related configuration
2119 #
2120 # The following option is supported here:
2121 #
2122 # gpg_path
2123 # binary name or full path to invoke gpg.
2124 #
2125 [crypto]
2126 gpg_path=gpg
2127 #+end_src
2128
2129 *** pre-new hook
2130 :PROPERTIES:
2131 :header-args+: :tangle ~/mail/.notmuch/hooks/pre-new :shebang "#!/bin/sh"
2132 :END:
2133
2134 #+begin_src sh
2135 touch /tmp/gnusieve.log
2136 sieve-filter -eW -o postmaster_address=postmaster@aminb.org \
2137 -o mail_location=maildir:$MAILDIR/gnu:LAYOUT=fs:INBOX=$MAILDIR/gnu/Inbox ~/sieve/gnu.sieve INBOX delete &>>/tmp/gnusieve.log
2138 #+end_src
2139
2140 *** post-new hook
2141 :PROPERTIES:
2142 :header-args+: :tangle ~/mail/.notmuch/hooks/post-new :shebang "#!/bin/sh"
2143 :END:
2144
2145 #+begin_src sh
2146 # apply sent tag to messages sent by me
2147 notmuch tag -new +sent -- from:amin@aminb.org or from:aminb@gnu.org or from:abandali@uwaterloo.ca or from:amin.bandali@uwaterloo.ca
2148
2149 # initial tagging
2150 notmuch tag -latest -- tag:latest
2151 notmuch tag +inbox +unread +latest -new -- tag:new
2152
2153
2154 # apply tags to lists
2155
2156 # <aminb>
2157 notmuch tag -inbox +lists/~sircmpwn/srht-admins -- folder:amin/lists/~sircmpwn/srht-admins
2158 notmuch tag -inbox +lists/~sircmpwn/srht-announce -- folder:amin/lists/~sircmpwn/srht-announce
2159 notmuch tag -inbox +lists/~sircmpwn/srht-dev -- folder:amin/lists/~sircmpwn/srht-dev
2160 notmuch tag -inbox +lists/~sircmpwn/srht-discuss -- folder:amin/lists/~sircmpwn/srht-discuss
2161
2162 notmuch tag -inbox +lists/hackernewsletter -- folder:amin/lists/hackernewsletter
2163 notmuch tag -inbox +lists/haskell-weekly -- folder:amin/lists/haskell-weekly
2164
2165 notmuch tag -inbox +pay -- folder:amin/pay
2166 # </aminb>
2167
2168 # <uw>
2169 notmuch tag -inbox +uw/cs136 -- folder:uwaterloo/lists/cs136
2170 notmuch tag -inbox +uw/se463 -- folder:uwaterloo/lists/se463
2171
2172 notmuch tag -inbox +lists/clvsingle -- folder:uwaterloo/lists/Clvsingle
2173 notmuch tag -inbox +lists/gsa -- folder:uwaterloo/lists/GSA
2174 notmuch tag -inbox +lists/math-grad -- folder:uwaterloo/lists/Math-grad
2175 notmuch tag -inbox +lists/scs-grads -- folder:uwaterloo/lists/scs-grads
2176 notmuch tag -inbox +lists/watform-students -- folder:uwaterloo/lists/Watform-students
2177 # </uw>
2178
2179 # <gnu>
2180 notmuch tag -inbox +lists/emacs-devel -- folder:gnu/l/emacs-devel
2181 notmuch tag -inbox +lists/emacs-orgmode -- folder:gnu/l/emacs-orgmode
2182 notmuch tag -inbox +lists/emacsconf-discuss -- folder:gnu/l/emacsconf-discuss
2183 notmuch tag -inbox +lists/fencepost-users -- folder:gnu/l/fencepost-users
2184 notmuch tag -inbox +lists/guix-devel -- folder:gnu/l/guix-devel
2185 notmuch tag -inbox +lists/guile-devel -- folder:gnu/l/guile-devel
2186 notmuch tag -inbox +lists/help-gnu-emacs -- folder:gnu/l/help-gnu-emacs
2187 notmuch tag -inbox +lists/info-gnu-emacs -- folder:gnu/l/info-gnu-emacs
2188 notmuch tag -inbox +lists/www-commits -- folder:gnu/l/www-commits
2189 notmuch tag -inbox +lists/www-discuss -- folder:gnu/l/www-discuss
2190 notmuch tag -inbox +webmasters -- folder:gnu/webmasters
2191
2192 notmuch tag -inbox +lists/deepspec -- folder:gnu/l/deepspec
2193 notmuch tag -inbox +lists/haskell-cafe -- folder:gnu/l/haskell-cafe
2194 notmuch tag -inbox +lists/haskell-art -- folder:gnu/l/haskell-art
2195 notmuch tag -inbox +lists/notmuch -- folder:gnu/l/notmuch
2196 # </gnu>
2197
2198 notmuch tag -inbox -unread +archive/notmuch -- path:archive/notmuch/**
2199 notmuch tag -inbox -unread +archive/emacs-devel -- path:archive/emacs-devel/**
2200 #+end_src
2201
2202 *** notmuch.service
2203 :PROPERTIES:
2204 :header-args+: :tangle ~/.config/systemd/user/notmuch.service
2205 :END:
2206
2207 #+begin_src conf :tangle no
2208 [Unit]
2209 Description=notmuch service
2210
2211 [Service]
2212 Type=oneshot
2213 ExecStart=/usr/bin/notmuch new
2214 StandardOutput=syslog
2215 StandardError=syslog
2216 #+end_src
2217
2218 *** notmuch.timer
2219 :PROPERTIES:
2220 :header-args+: :tangle ~/.config/systemd/user/notmuch.timer
2221 :END:
2222
2223 #+begin_src conf :tangle no
2224 [Unit]
2225 Description=notmuch timer
2226
2227 [Timer]
2228 OnCalendar=*:0/5
2229 Persistent=true
2230 Unit=notmuch.service
2231
2232 [Install]
2233 WantedBy=timers.target
2234 #+end_src
2235
2236 ** offlineimap
2237
2238 *** offlineimaprc
2239 :PROPERTIES:
2240 :header-args+: :tangle ~/.offlineimaprc
2241 :END:
2242
2243 #+begin_src conf :tangle no
2244 [general]
2245 pythonfile = ~/.offlineimap.py
2246 accounts = Gmail, aminb
2247 maxsyncaccounts = 3
2248
2249 [Account Gmail]
2250 localrepository = GmailL
2251 remoterepository = GmailR
2252
2253 [Account aminb]
2254 localrepository = aminbL
2255 remoterepository = aminbR
2256
2257 [Repository GmailL]
2258 type = Maildir
2259 localfolders = ~/Maildir/Gmail
2260
2261 [Repository GmailR]
2262 type = IMAP
2263 remotehost = imap.gmail.com
2264 remoteusereval = mailuser("gmail")
2265 remotepasseval = mailpasswd("gmail")
2266 sslcacertfile = /etc/ssl/certs/ca-certificates.crt
2267 ssl = yes
2268 folderfilter = lambda foldername: foldername not in '[Gmail]/All Mail'
2269 maxconnections = 1
2270 realdelete = no
2271
2272 [Repository aminbL]
2273 type = Maildir
2274 localfolders = ~/Maildir/aminb
2275
2276 [Repository aminbR]
2277 type = IMAP
2278 remotehost = mail.aminb.org
2279 remoteusereval = mailuser("aminb")
2280 remotepasseval = mailpasswd("aminb")
2281 sslcacertfile = /etc/ssl/certs/ca-certificates.crt
2282 ssl = yes
2283 folderfilter = lambda foldername: foldername not in 'dovecot.sieve'
2284 maxconnections = 1
2285 realdelete = no
2286 #+end_src
2287
2288 *** offlineimap.py
2289 :PROPERTIES:
2290 :header-args+: :tangle ~/.offlineimap.py
2291 :END:
2292
2293 #+begin_src python :tangle no
2294 import os
2295 import subprocess
2296
2297 def mailpasswd(acct):
2298 acct = os.path.basename(acct)
2299 path = "/home/amin/.passwd/%s.gpg" % acct
2300 args = ["gpg", "--use-agent", "--quiet", "--batch", "-d", path]
2301 try:
2302 return subprocess.check_output(args).strip()
2303 except subprocess.CalledProcessError:
2304 return ""
2305
2306 def mailuser(acct):
2307 acct = os.path.basename(acct)
2308 path = "/home/amin/.passwd/%s" % acct
2309 args = ["cat", path]
2310 try:
2311 return subprocess.check_output(args).strip()
2312 except subprocess.CalledProcessError:
2313 return ""
2314
2315 def prime_gpg_agent():
2316 ret = False
2317 i = 1
2318 while not ret:
2319 ret = (mailpasswd("prime") == "prime")
2320 if i > 2:
2321 from offlineimap.ui import getglobalui
2322 sys.stderr.write("Error reading in passwords. Terminating.\n")
2323 getglobalui().terminate()
2324 i += 1
2325 return ret
2326
2327 prime_gpg_agent()
2328 #+end_src
2329
2330 ** pigeonhole
2331 *** gnu.sieve
2332 :PROPERTIES:
2333 :header-args+: :tangle ~/sieve/gnu.sieve :comments none
2334 :END:
2335
2336 #+begin_src conf
2337 require [ "regex", "variables", "fileinto", "envelope", "mailbox", "imap4flags", "include" ];
2338
2339 if anyof (
2340 address :is "from" "webmasters@gnu.org",
2341 address :is "from" "webmasters-comment@gnu.org") {
2342 fileinto :create "webmasters";
2343 stop;
2344 }
2345
2346 include :personal "lists";
2347 #+end_src
2348
2349 *** lists.sieve
2350 :PROPERTIES:
2351 :header-args+: :tangle ~/sieve/lists.sieve :comments none
2352 :END:
2353
2354 #+begin_src conf
2355 require [ "regex", "variables", "fileinto", "envelope", "mailbox", "imap4flags",
2356 "include" ];
2357
2358 if anyof (
2359 header :contains "list-id" "<emacs-devel.gnu.org>",
2360 header :contains "list-id" "<emacs-orgmode.gnu.org>",
2361 header :contains "list-id" "<emacsconf-discuss.gnu.org>",
2362 header :contains "list-id" "<fencepost-users.gnu.org>",
2363 header :contains "list-id" "<guix-devel.gnu.org>",
2364 header :contains "list-id" "<guile-devel.gnu.org>",
2365 header :contains "list-id" "<help-gnu-emacs.gnu.org>",
2366 header :contains "list-id" "<info-gnu-emacs.gnu.org>",
2367 header :contains "list-id" "<www-commits.gnu.org>",
2368 header :contains "list-id" "<www-discuss.gnu.org>",
2369 header :contains "list-id" "<deepspec.lists.cs.princeton.edu>",
2370 header :contains "list-id" "<haskell-cafe.haskell.org>",
2371 header :contains "list-id" "<haskell-art.we.lurk.org>",
2372 header :contains "list-id" "<notmuch.notmuchmail.org>") {
2373 if header :regex "list-id" "<([a-z_0-9-]+)[.@]" {
2374 set :lower "listname" "${1}";
2375 fileinto :create "l/${listname}";
2376 }
2377 }
2378 #+end_src
2379
2380 ** polybar
2381
2382 *** config
2383 :PROPERTIES:
2384 :header-args+: :tangle ~/.config/polybar/config
2385 :END:
2386
2387 #+begin_src conf :tangle no
2388 ;=====================================================
2389 ;
2390 ; To learn more about how to configure Polybar
2391 ; go to https://github.com/jaagr/polybar
2392 ;
2393 ; The README contains alot of information
2394 ;
2395 ;=====================================================
2396
2397 [colors]
2398 ;background = ${xrdb:color0:#222}
2399 background = #222
2400 background-alt = #444
2401 ;foreground = ${xrdb:color7:#222}
2402 foreground = #eee
2403 foreground-alt = #888
2404 primary = #ffb52a
2405 secondary = #e60053
2406 alert = #bd2c40
2407
2408 [bar/main]
2409 ;monitor = ${env:MONITOR:HDMI-1}
2410 width = 100%
2411 height = 27
2412 ;offset-x = 1%
2413 ;offset-y = 1%
2414 radius = 3.0
2415 fixed-center = true
2416
2417 background = ${colors.background}
2418 foreground = ${colors.foreground}
2419
2420 line-size = 3
2421 line-color = #f00
2422
2423 border-size = 4
2424 border-color = #00000000
2425
2426 padding-left = 0
2427 padding-right = 2
2428
2429 module-margin-left = 2
2430 module-margin-right = 2
2431
2432 font-0 = Ubuntu:fontformat=truetype:antialias=true:pixelsize=9;1
2433 font-1 = unifont:fontformat=truetype:size=8:antialias=false;0
2434 font-2 = Wuncon Siji:pixelsize=10;1
2435 font-3 = FontAwesome:pixelsize=10;1
2436
2437 modules-left = bspwm xwindow
2438 modules-center =
2439 modules-right = volume filesystem mail xkeyboard memory cpu temperature date powermenu
2440
2441 tray-position = right
2442 tray-padding = 1
2443 ;tray-transparent = true
2444 ;tray-background = #0063ff
2445 tray-maxsize = 18
2446
2447 wm-restack = bspwm
2448
2449 ;override-redirect = true
2450
2451 scroll-up = bspwm-desknext
2452 scroll-down = bspwm-deskprev
2453
2454 [module/xwindow]
2455 type = internal/xwindow
2456 label = %title:0:50:...%
2457
2458 [module/xkeyboard]
2459 type = internal/xkeyboard
2460 blacklist-0 = num lock
2461
2462 format-prefix = " "
2463 format-prefix-foreground = ${colors.foreground-alt}
2464 format-prefix-underline = ${colors.secondary}
2465
2466 label-layout = %layout%
2467 label-layout-underline = ${colors.secondary}
2468
2469 label-indicator-padding = 2
2470 label-indicator-margin = 1
2471 label-indicator-background = ${colors.secondary}
2472 label-indicator-underline = ${colors.secondary}
2473
2474 [module/filesystem]
2475 type = internal/fs
2476 interval = 25
2477
2478 mount-0 = /
2479
2480 label-mounted = %{F#0a81f5}%mountpoint%%{F-}: %percentage_used%%
2481 label-unmounted = %mountpoint% not mounted
2482 label-unmounted-foreground = ${colors.foreground-alt}
2483
2484 [module/bspwm]
2485 type = internal/bspwm
2486
2487 label-focused = %index%
2488 label-focused-background = ${colors.background-alt}
2489 label-focused-underline= ${colors.primary}
2490 label-focused-padding = 2
2491
2492 label-occupied = %index%
2493 label-occupied-padding = 2
2494
2495 label-urgent = %index%!
2496 label-urgent-background = ${colors.alert}
2497 label-urgent-padding = 2
2498
2499 label-empty = %index%
2500 label-empty-foreground = ${colors.foreground-alt}
2501 label-empty-padding = 2
2502
2503 [module/i3]
2504 type = internal/i3
2505 format = <label-state> <label-mode>
2506 index-sort = true
2507 wrapping-scroll = false
2508
2509 ; Only show workspaces on the same output as the bar
2510 ;pin-workspaces = true
2511
2512 label-mode-padding = 2
2513 label-mode-foreground = #000
2514 label-mode-background = ${colors.primary}
2515
2516 ; focused = Active workspace on focused monitor
2517 label-focused = %index%
2518 label-focused-background = ${module/bspwm.label-focused-background}
2519 label-focused-underline = ${module/bspwm.label-focused-underline}
2520 label-focused-padding = ${module/bspwm.label-focused-padding}
2521
2522 ; unfocused = Inactive workspace on any monitor
2523 label-unfocused = %index%
2524 label-unfocused-padding = ${module/bspwm.label-occupied-padding}
2525
2526 ; visible = Active workspace on unfocused monitor
2527 label-visible = %index%
2528 label-visible-background = ${self.label-focused-background}
2529 label-visible-underline = ${self.label-focused-underline}
2530 label-visible-padding = ${self.label-focused-padding}
2531
2532 ; urgent = Workspace with urgency hint set
2533 label-urgent = %index%
2534 label-urgent-background = ${module/bspwm.label-urgent-background}
2535 label-urgent-padding = ${module/bspwm.label-urgent-padding}
2536
2537 [module/mpd]
2538 type = internal/mpd
2539 format-online = <label-song> <icon-prev> <icon-stop> <toggle> <icon-next>
2540
2541 icon-prev = 
2542 icon-stop = 
2543 icon-play = 
2544 icon-pause = 
2545 icon-next = 
2546
2547 label-song-maxlen = 25
2548 label-song-ellipsis = true
2549
2550 [module/xbacklight]
2551 type = internal/xbacklight
2552
2553 format = <label> <bar>
2554 label = BL
2555
2556 bar-width = 10
2557 bar-indicator = |
2558 bar-indicator-foreground = #ff
2559 bar-indicator-font = 2
2560 bar-fill = ─
2561 bar-fill-font = 2
2562 bar-fill-foreground = #9f78e1
2563 bar-empty = ─
2564 bar-empty-font = 2
2565 bar-empty-foreground = ${colors.foreground-alt}
2566
2567 [module/backlight-acpi]
2568 inherit = module/xbacklight
2569 type = internal/backlight
2570 ;card = intel_backlight
2571 card = mba6x_backlight
2572
2573 [module/cpu]
2574 type = internal/cpu
2575 interval = 2
2576 format-prefix = " "
2577 format-prefix-foreground = ${colors.foreground-alt}
2578 format-underline = #f90000
2579 label = %percentage%%
2580
2581 [module/memory]
2582 type = internal/memory
2583 interval = 2
2584 format-prefix = " "
2585 format-prefix-foreground = ${colors.foreground-alt}
2586 format-underline = #4bffdc
2587 label = %percentage_used%%
2588
2589 [module/wlan]
2590 type = internal/network
2591 interface =
2592 interval = 3.0
2593
2594 format-connected = <ramp-signal> <label-connected>
2595 format-connected-underline = #9f78e1
2596 label-connected = %essid%
2597
2598 format-disconnected =
2599 ;format-disconnected = <label-disconnected>
2600 ;format-disconnected-underline = ${self.format-connected-underline}
2601 ;label-disconnected = %ifname% disconnected
2602 ;label-disconnected-foreground = ${colors.foreground-alt}
2603
2604 ramp-signal-0 = 
2605 ramp-signal-1 = 
2606 ramp-signal-2 = 
2607 ramp-signal-3 = 
2608 ramp-signal-4 = 
2609 ramp-signal-foreground = ${colors.foreground-alt}
2610
2611 [module/eth]
2612 type = internal/network
2613 interface =
2614 interval = 3.0
2615
2616 format-connected-underline = #55aa55
2617 format-connected-prefix = " "
2618 format-connected-prefix-foreground = ${colors.foreground-alt}
2619 label-connected = %local_ip%
2620
2621 format-disconnected =
2622 ;format-disconnected = <label-disconnected>
2623 ;format-disconnected-underline = ${self.format-connected-underline}
2624 ;label-disconnected = %ifname% disconnected
2625 ;label-disconnected-foreground = ${colors.foreground-alt}
2626
2627 [module/date]
2628 type = internal/date
2629 interval = 5
2630
2631 date =
2632 date-alt = " %Y-%m-%d"
2633
2634 time = %H:%M
2635 time-alt = %H:%M:%S
2636
2637 format-prefix = 
2638 format-prefix-foreground = ${colors.foreground-alt}
2639 format-underline = #0a6cf5
2640
2641 label = %date% %time%
2642
2643 [module/volume]
2644 type = internal/volume
2645
2646 format-volume = <label-volume> <bar-volume>
2647 label-volume = vol
2648 label-volume-foreground = ${root.foreground}
2649
2650 format-muted-prefix = " "
2651 format-muted-foreground = ${colors.foreground-alt}
2652 label-muted = mute
2653
2654 bar-volume-width = 10
2655 bar-volume-foreground-0 = #55aa55
2656 bar-volume-foreground-1 = #55aa55
2657 bar-volume-foreground-2 = #55aa55
2658 bar-volume-foreground-3 = #55aa55
2659 bar-volume-foreground-4 = #55aa55
2660 bar-volume-foreground-5 = #f5a70a
2661 bar-volume-foreground-6 = #ff5555
2662 bar-volume-gradient = false
2663 bar-volume-indicator = |
2664 bar-volume-indicator-font = 2
2665 bar-volume-fill = ─
2666 bar-volume-fill-font = 2
2667 bar-volume-empty = ─
2668 bar-volume-empty-font = 2
2669 bar-volume-empty-foreground = ${colors.foreground-alt}
2670
2671 [module/battery]
2672 type = internal/battery
2673 battery = BAT0
2674 adapter = ADP1
2675 full-at = 64
2676
2677 format-charging = <animation-charging> <label-charging>
2678 format-charging-underline = #ffb52a
2679
2680 format-discharging = <ramp-capacity> <label-discharging>
2681 format-discharging-underline = ${self.format-charging-underline}
2682
2683 format-full-prefix = " "
2684 format-full-prefix-foreground = ${colors.foreground-alt}
2685 format-full-underline = ${self.format-charging-underline}
2686
2687 ramp-capacity-0 = 
2688 ramp-capacity-1 = 
2689 ramp-capacity-2 = 
2690 ramp-capacity-foreground = ${colors.foreground-alt}
2691
2692 animation-charging-0 = 
2693 animation-charging-1 = 
2694 animation-charging-2 = 
2695 animation-charging-foreground = ${colors.foreground-alt}
2696 animation-charging-framerate = 750
2697
2698 [module/temperature]
2699 type = internal/temperature
2700 thermal-zone = 1
2701 warn-temperature = 66
2702
2703 format = <ramp> <label>
2704 format-underline = #f50a4d
2705 format-warn = <ramp> <label-warn>
2706 format-warn-underline = ${self.format-underline}
2707
2708 label = %temperature%
2709 label-warn = %temperature%
2710 label-warn-foreground = ${colors.secondary}
2711
2712 ramp-0 = 
2713 ramp-1 = 
2714 ramp-2 = 
2715 ramp-foreground = ${colors.foreground-alt}
2716
2717 [module/powermenu]
2718 type = custom/menu
2719
2720 format-spacing = 1
2721
2722 label-open = 
2723 label-open-foreground = ${colors.secondary}
2724 label-close =  cancel
2725 label-close-foreground = ${colors.secondary}
2726 label-separator = |
2727 label-separator-foreground = ${colors.foreground-alt}
2728
2729 menu-0-0 = reboot
2730 menu-0-0-exec = menu-open-1
2731 menu-0-1 = power off
2732 menu-0-1-exec = menu-open-2
2733
2734 menu-1-0 = cancel
2735 menu-1-0-exec = menu-open-0
2736 menu-1-1 = reboot
2737 menu-1-1-exec = sudo reboot
2738
2739 menu-2-0 = power off
2740 menu-2-0-exec = sudo poweroff
2741 menu-2-1 = cancel
2742 menu-2-1-exec = menu-open-0
2743
2744 [module/mail]
2745 type = custom/script
2746 interval = 60
2747 format = <label>
2748 format-prefix = " "
2749 format-prefix-foreground = ${colors.foreground-alt}
2750 format-underline = #0a6cf5
2751 exec = notmuch count tag:unread
2752
2753 [settings]
2754 screenchange-reload = true
2755 ;compositing-background = xor
2756 ;compositing-background = screen
2757 ;compositing-foreground = source
2758 ;compositing-border = over
2759
2760 [global/wm]
2761 margin-top = 0
2762 margin-bottom = 0
2763
2764 ; vim:ft=dosini
2765 #+end_src
2766
2767 *** polybar-launch
2768 :PROPERTIES:
2769 :header-args+: :tangle ~/.local/bin/polybar-launch :shebang "#!/usr/bin/env sh"
2770 :END:
2771
2772 #+begin_src sh :tangle no
2773 # Terminate already running bar instances
2774 killall -q polybar
2775
2776 # Wait until the processes have been shut down
2777 while pgrep -x polybar >/dev/null; do sleep 1; done
2778
2779 # Launch main bar
2780 polybar main &
2781
2782 echo "Bars launched..."
2783 #+end_src
2784
2785 ** PowerTOP
2786 :PROPERTIES:
2787 :header-args+: :tangle "/sudo::/etc/systemd/system/powertop.service"
2788 :END:
2789
2790 #+begin_src conf
2791 [Unit]
2792 Description=Powertop tunings
2793
2794 [Service]
2795 ExecStart=/usr/bin/powertop --auto-tune
2796 RemainAfterExit=true
2797
2798 [Install]
2799 WantedBy=multi-user.target
2800 #+end_src
2801
2802 ** ranger
2803
2804 *** rc.conf
2805 :PROPERTIES:
2806 :header-args+: :tangle ~/.config/ranger/rc.conf
2807 :END:
2808
2809 #+begin_src conf :tangle no
2810 # ===================================================================
2811 # This file contains the default startup commands for ranger.
2812 # To change them, it is recommended to create the file
2813 # ~/.config/ranger/rc.conf and add your custom commands there.
2814 #
2815 # If you copy this whole file there, you may want to set the environment
2816 # variable RANGER_LOAD_DEFAULT_RC to FALSE to avoid loading it twice.
2817 #
2818 # The purpose of this file is mainly to define keybindings and settings.
2819 # For running more complex python code, please create a plugin in "plugins/" or
2820 # a command in "commands.py".
2821 #
2822 # Each line is a command that will be run before the user interface
2823 # is initialized. As a result, you can not use commands which rely
2824 # on the UI such as :delete or :mark.
2825 # ===================================================================
2826
2827 # ===================================================================
2828 # == Options
2829 # ===================================================================
2830
2831 # How many columns are there, and what are their relative widths?
2832 set column_ratios 1,3,4
2833
2834 # Which files should be hidden? (regular expression)
2835 set hidden_filter ^\.|\.(?:pyc|pyo|bak|swp)$|^lost\+found$|^__(py)?cache__$
2836
2837 # Show hidden files? You can toggle this by typing 'zh'
2838 set show_hidden false
2839
2840 # Ask for a confirmation when running the "delete" command?
2841 # Valid values are "always" (default), "never", "multiple"
2842 # With "multiple", ranger will ask only if you delete multiple files at once.
2843 set confirm_on_delete multiple
2844
2845 # Which script is used to generate file previews?
2846 # ranger ships with scope.sh, a script that calls external programs (see
2847 # README for dependencies) to preview images, archives, etc.
2848 set preview_script ~/.config/ranger/scope.sh
2849
2850 # Use the external preview script or display simple plain text previews?
2851 set use_preview_script true
2852
2853 # Open all images in this directory when running certain image viewers
2854 # like feh or sxiv? You can still open selected files by marking them.
2855 set open_all_images true
2856
2857 # Be aware of version control systems and display information.
2858 set vcs_aware false
2859
2860 # State of the three backends git, hg, bzr. The possible states are
2861 # disabled, local (only show local info), enabled (show local and remote
2862 # information).
2863 set vcs_backend_git enabled
2864 set vcs_backend_hg disabled
2865 set vcs_backend_bzr disabled
2866
2867 # Preview images in full color with the external command "w3mimgpreview"?
2868 # This requires the console web browser "w3m" and a supported terminal.
2869 # It has been successfully tested with "xterm" and "urxvt" without tmux.
2870 set preview_images true
2871
2872 # Use a unicode "..." character to mark cut-off filenames?
2873 set unicode_ellipsis false
2874
2875 # Show dotfiles in the bookmark preview box?
2876 set show_hidden_bookmarks true
2877
2878 # Which colorscheme to use? These colorschemes are available by default:
2879 # default, jungle, snow
2880 set colorscheme default
2881
2882 # Preview files on the rightmost column?
2883 # And collapse (shrink) the last column if there is nothing to preview?
2884 set preview_files true
2885 set preview_directories true
2886 set collapse_preview true
2887
2888 # Save the console history on exit?
2889 set save_console_history true
2890
2891 # Draw the status bar on top of the browser window (default: bottom)
2892 set status_bar_on_top false
2893
2894 # Draw a progress bar in the status bar which displays the average state of all
2895 # currently running tasks which support progress bars?
2896 set draw_progress_bar_in_status_bar true
2897
2898 # Draw borders around columns?
2899 set draw_borders true
2900
2901 # Display the directory name in tabs?
2902 set dirname_in_tabs false
2903
2904 # Enable the mouse support?
2905 set mouse_enabled true
2906
2907 # Display the file size in the main column or status bar?
2908 set display_size_in_main_column true
2909 set display_size_in_status_bar true
2910
2911 # Display files tags in all columns or only in main column?
2912 set display_tags_in_all_columns true
2913
2914 # Set a title for the window?
2915 set update_title false
2916
2917 # Set the title to "ranger" in the tmux program?
2918 set update_tmux_title false
2919
2920 # Shorten the title if it gets long? The number defines how many
2921 # directories are displayed at once, 0 turns off this feature.
2922 set shorten_title 3
2923
2924 # Abbreviate $HOME with ~ in the titlebar (first line) of ranger?
2925 set tilde_in_titlebar false
2926
2927 # How many directory-changes or console-commands should be kept in history?
2928 set max_history_size 20
2929 set max_console_history_size 50
2930
2931 # Try to keep so much space between the top/bottom border when scrolling:
2932 set scroll_offset 8
2933
2934 # Flush the input after each key hit? (Noticable when ranger lags)
2935 set flushinput true
2936
2937 # Padding on the right when there's no preview?
2938 # This allows you to click into the space to run the file.
2939 set padding_right true
2940
2941 # Save bookmarks (used with mX and `X) instantly?
2942 # This helps to synchronize bookmarks between multiple ranger
2943 # instances but leads to *slight* performance loss.
2944 # When false, bookmarks are saved when ranger is exited.
2945 set autosave_bookmarks true
2946
2947 # You can display the "real" cumulative size of directories by using the
2948 # command :get_cumulative_size or typing "dc". The size is expensive to
2949 # calculate and will not be updated automatically. You can choose
2950 # to update it automatically though by turning on this option:
2951 set autoupdate_cumulative_size false
2952
2953 # Turning this on makes sense for screen readers:
2954 set show_cursor false
2955
2956 # One of: size, basename, mtime, type
2957 set sort natural
2958
2959 # Additional sorting options
2960 set sort_reverse false
2961 set sort_case_insensitive true
2962 set sort_directories_first true
2963
2964 # Enable this if key combinations with the Alt Key don't work for you.
2965 # (Especially on xterm)
2966 set xterm_alt_key false
2967
2968 # ===================================================================
2969 # == Local Options
2970 # ===================================================================
2971 # You can set local options that only affect a single directory.
2972
2973 # Examples:
2974 # setlocal path=~/downloads sort mtime
2975
2976 # ===================================================================
2977 # == Command Aliases in the Console
2978 # ===================================================================
2979
2980 alias e edit
2981 alias q quit
2982 alias q! quitall
2983 alias qall quitall
2984 alias setl setlocal
2985
2986 alias filter scout -prt
2987 alias find scout -aet
2988 alias mark scout -mr
2989 alias unmark scout -Mr
2990 alias search scout -rs
2991 alias search_inc scout -rts
2992 alias travel scout -aefiklst
2993
2994 # ===================================================================
2995 # == Define keys for the browser
2996 # ===================================================================
2997
2998 # Basic
2999 map Q quit!
3000 map q quit
3001 copymap q ZZ ZQ
3002
3003 map R reload_cwd
3004 map <C-r> reset
3005 map <C-l> redraw_window
3006 map <C-c> abort
3007 map <esc> change_mode normal
3008
3009 map i display_file
3010 map ? help
3011 map W display_log
3012 map w taskview_open
3013 map S shell $SHELL
3014
3015 map : console
3016 map ; console
3017 map ! console shell
3018 map @ console -p6 shell %%s
3019 map # console shell -p
3020 map s console shell
3021 map r chain draw_possible_programs; console open_with
3022 map f console find
3023 map cd console cd
3024
3025 # Tagging / Marking
3026 map t tag_toggle
3027 map ut tag_remove
3028 map "<any> tag_toggle tag=%any
3029 map <Space> mark_files toggle=True
3030 map v mark_files all=True toggle=True
3031 map uv mark_files all=True val=False
3032 map V toggle_visual_mode
3033 map uV toggle_visual_mode reverse=True
3034
3035 # For the nostalgics: Midnight Commander bindings
3036 map <F1> help
3037 map <F3> display_file
3038 map <F4> edit
3039 map <F5> copy
3040 map <F6> cut
3041 map <F7> console mkdir
3042 map <F8> console delete
3043 map <F10> exit
3044
3045 # In case you work on a keyboard with dvorak layout
3046 map <UP> move up=1
3047 map <DOWN> move down=1
3048 map <LEFT> move left=1
3049 map <RIGHT> move right=1
3050 map <HOME> move to=0
3051 map <END> move to=-1
3052 map <PAGEDOWN> move down=1 pages=True
3053 map <PAGEUP> move up=1 pages=True
3054 map <CR> move right=1
3055 map <DELETE> console delete
3056 map <INSERT> console touch
3057
3058 # VIM-like
3059 copymap <UP> k
3060 copymap <DOWN> j
3061 copymap <LEFT> h
3062 copymap <RIGHT> l
3063 copymap <HOME> gg
3064 copymap <END> G
3065 copymap <PAGEDOWN> <C-F>
3066 copymap <PAGEUP> <C-B>
3067
3068 map J move down=0.5 pages=True
3069 map K move up=0.5 pages=True
3070 copymap J <C-D>
3071 copymap K <C-U>
3072
3073 # Jumping around
3074 map H history_go -1
3075 map L history_go 1
3076 map ] move_parent 1
3077 map [ move_parent -1
3078 map } traverse
3079
3080 map gh cd ~
3081 map ge cd /etc
3082 map gu cd /usr
3083 map gd cd /dev
3084 map gl cd -r .
3085 map gL cd -r %f
3086 map go cd /opt
3087 map gv cd /var
3088 map gm cd /media
3089 map gM cd /mnt
3090 map gs cd /srv
3091 map gr cd /
3092 map gR eval fm.cd(ranger.RANGERDIR)
3093 map g/ cd /
3094 map g? cd /usr/share/doc/ranger
3095
3096 # External Programs
3097 map E edit
3098 map du shell -p du --max-depth=1 -h --apparent-size
3099 map dU shell -p du --max-depth=1 -h --apparent-size | sort -rh
3100 map yp shell -d echo -n %d/%f | xsel -i
3101 map yd shell -d echo -n %d | xsel -i
3102 map yn shell -d echo -n %f | xsel -i
3103
3104 # Filesystem Operations
3105 map = chmod
3106
3107 map cw console rename
3108 map A eval fm.open_console('rename ' + fm.thisfile.basename)
3109 map I eval fm.open_console('rename ' + fm.thisfile.basename, position=7)
3110
3111 map pp paste
3112 map po paste overwrite=True
3113 map pl paste_symlink relative=False
3114 map pL paste_symlink relative=True
3115 map phl paste_hardlink
3116 map pht paste_hardlinked_subtree
3117
3118 map dd cut
3119 map ud uncut
3120 map da cut mode=add
3121 map dr cut mode=remove
3122
3123 map yy copy
3124 map uy uncut
3125 map ya copy mode=add
3126 map yr copy mode=remove
3127
3128 # Temporary workarounds
3129 map dgg eval fm.cut(dirarg=dict(to=0), narg=quantifier)
3130 map dG eval fm.cut(dirarg=dict(to=-1), narg=quantifier)
3131 map dj eval fm.cut(dirarg=dict(down=1), narg=quantifier)
3132 map dk eval fm.cut(dirarg=dict(up=1), narg=quantifier)
3133 map ygg eval fm.copy(dirarg=dict(to=0), narg=quantifier)
3134 map yG eval fm.copy(dirarg=dict(to=-1), narg=quantifier)
3135 map yj eval fm.copy(dirarg=dict(down=1), narg=quantifier)
3136 map yk eval fm.copy(dirarg=dict(up=1), narg=quantifier)
3137
3138 # Searching
3139 map / console search
3140 map n search_next
3141 map N search_next forward=False
3142 map ct search_next order=tag
3143 map cs search_next order=size
3144 map ci search_next order=mimetype
3145 map cc search_next order=ctime
3146 map cm search_next order=mtime
3147 map ca search_next order=atime
3148
3149 # Tabs
3150 map <C-n> tab_new ~
3151 map <C-w> tab_close
3152 map <TAB> tab_move 1
3153 map <S-TAB> tab_move -1
3154 map <A-Right> tab_move 1
3155 map <A-Left> tab_move -1
3156 map gt tab_move 1
3157 map gT tab_move -1
3158 map gn tab_new ~
3159 map gc tab_close
3160 map uq tab_restore
3161 map <a-1> tab_open 1
3162 map <a-2> tab_open 2
3163 map <a-3> tab_open 3
3164 map <a-4> tab_open 4
3165 map <a-5> tab_open 5
3166 map <a-6> tab_open 6
3167 map <a-7> tab_open 7
3168 map <a-8> tab_open 8
3169 map <a-9> tab_open 9
3170
3171 # Sorting
3172 map or toggle_option sort_reverse
3173 map os chain set sort=size; set sort_reverse=False
3174 map ob chain set sort=basename; set sort_reverse=False
3175 map on chain set sort=natural; set sort_reverse=False
3176 map om chain set sort=mtime; set sort_reverse=False
3177 map oc chain set sort=ctime; set sort_reverse=False
3178 map oa chain set sort=atime; set sort_reverse=False
3179 map ot chain set sort=type; set sort_reverse=False
3180
3181 map oS chain set sort=size; set sort_reverse=True
3182 map oB chain set sort=basename; set sort_reverse=True
3183 map oN chain set sort=natural; set sort_reverse=True
3184 map oM chain set sort=mtime; set sort_reverse=True
3185 map oC chain set sort=ctime; set sort_reverse=True
3186 map oA chain set sort=atime; set sort_reverse=True
3187 map oT chain set sort=type; set sort_reverse=True
3188
3189 map dc get_cumulative_size
3190
3191 # Settings
3192 map zc toggle_option collapse_preview
3193 map zd toggle_option sort_directories_first
3194 map zh toggle_option show_hidden
3195 map <C-h> toggle_option show_hidden
3196 map zi toggle_option flushinput
3197 map zm toggle_option mouse_enabled
3198 map zp toggle_option preview_files
3199 map zP toggle_option preview_directories
3200 map zs toggle_option sort_case_insensitive
3201 map zu toggle_option autoupdate_cumulative_size
3202 map zv toggle_option use_preview_script
3203 map zf console filter
3204
3205 # Bookmarks
3206 map `<any> enter_bookmark %any
3207 map '<any> enter_bookmark %any
3208 map m<any> set_bookmark %any
3209 map um<any> unset_bookmark %any
3210
3211 map m<bg> draw_bookmarks
3212 copymap m<bg> um<bg> `<bg> '<bg>
3213
3214 # Generate all the chmod bindings with some python help:
3215 eval for arg in "rwxXst": cmd("map +u{0} shell -d chmod u+{0} %s".format(arg))
3216 eval for arg in "rwxXst": cmd("map +g{0} shell -d chmod g+{0} %s".format(arg))
3217 eval for arg in "rwxXst": cmd("map +o{0} shell -d chmod o+{0} %s".format(arg))
3218 eval for arg in "rwxXst": cmd("map +a{0} shell -d chmod a+{0} %s".format(arg))
3219 eval for arg in "rwxXst": cmd("map +{0} shell -d chmod u+{0} %s".format(arg))
3220
3221 eval for arg in "rwxXst": cmd("map -u{0} shell -d chmod u-{0} %s".format(arg))
3222 eval for arg in "rwxXst": cmd("map -g{0} shell -d chmod g-{0} %s".format(arg))
3223 eval for arg in "rwxXst": cmd("map -o{0} shell -d chmod o-{0} %s".format(arg))
3224 eval for arg in "rwxXst": cmd("map -a{0} shell -d chmod a-{0} %s".format(arg))
3225 eval for arg in "rwxXst": cmd("map -{0} shell -d chmod u-{0} %s".format(arg))
3226
3227 # ===================================================================
3228 # == Define keys for the console
3229 # ===================================================================
3230 # Note: Unmapped keys are passed directly to the console.
3231
3232 # Basic
3233 cmap <tab> eval fm.ui.console.tab()
3234 cmap <s-tab> eval fm.ui.console.tab(-1)
3235 cmap <ESC> eval fm.ui.console.close()
3236 cmap <CR> eval fm.ui.console.execute()
3237 cmap <C-l> redraw_window
3238
3239 copycmap <ESC> <C-c>
3240 copycmap <CR> <C-j>
3241
3242 # Move around
3243 cmap <up> eval fm.ui.console.history_move(-1)
3244 cmap <down> eval fm.ui.console.history_move(1)
3245 cmap <left> eval fm.ui.console.move(left=1)
3246 cmap <right> eval fm.ui.console.move(right=1)
3247 cmap <home> eval fm.ui.console.move(right=0, absolute=True)
3248 cmap <end> eval fm.ui.console.move(right=-1, absolute=True)
3249
3250 # Line Editing
3251 cmap <backspace> eval fm.ui.console.delete(-1)
3252 cmap <delete> eval fm.ui.console.delete(0)
3253 cmap <C-w> eval fm.ui.console.delete_word()
3254 cmap <C-k> eval fm.ui.console.delete_rest(1)
3255 cmap <C-u> eval fm.ui.console.delete_rest(-1)
3256 cmap <C-y> eval fm.ui.console.paste()
3257
3258 # And of course the emacs way
3259 copycmap <up> <C-p>
3260 copycmap <down> <C-n>
3261 copycmap <left> <C-b>
3262 copycmap <right> <C-f>
3263 copycmap <home> <C-a>
3264 copycmap <end> <C-e>
3265 copycmap <delete> <C-d>
3266 copycmap <backspace> <C-h>
3267
3268 # Note: There are multiple ways to express backspaces. <backspace> (code 263)
3269 # and <backspace2> (code 127). To be sure, use both.
3270 copycmap <backspace> <backspace2>
3271
3272 # This special expression allows typing in numerals:
3273 cmap <allow_quantifiers> false
3274
3275 # ===================================================================
3276 # == Pager Keybindings
3277 # ===================================================================
3278
3279 # Movement
3280 pmap <down> pager_move down=1
3281 pmap <up> pager_move up=1
3282 pmap <left> pager_move left=4
3283 pmap <right> pager_move right=4
3284 pmap <home> pager_move to=0
3285 pmap <end> pager_move to=-1
3286 pmap <pagedown> pager_move down=1.0 pages=True
3287 pmap <pageup> pager_move up=1.0 pages=True
3288 pmap <C-d> pager_move down=0.5 pages=True
3289 pmap <C-u> pager_move up=0.5 pages=True
3290
3291 copypmap <UP> k <C-p>
3292 copypmap <DOWN> j <C-n> <CR>
3293 copypmap <LEFT> h
3294 copypmap <RIGHT> l
3295 copypmap <HOME> g
3296 copypmap <END> G
3297 copypmap <C-d> d
3298 copypmap <C-u> u
3299 copypmap <PAGEDOWN> n f <C-F> <Space>
3300 copypmap <PAGEUP> p b <C-B>
3301
3302 # Basic
3303 pmap <ESC> pager_close
3304 copypmap <ESC> q Q i <F3>
3305 pmap E edit_file
3306
3307 # ===================================================================
3308 # == Taskview Keybindings
3309 # ===================================================================
3310
3311 # Movement
3312 tmap <up> taskview_move up=1
3313 tmap <down> taskview_move down=1
3314 tmap <home> taskview_move to=0
3315 tmap <end> taskview_move to=-1
3316 tmap <pagedown> taskview_move down=1.0 pages=True
3317 tmap <pageup> taskview_move up=1.0 pages=True
3318 tmap <C-d> taskview_move down=0.5 pages=True
3319 tmap <C-u> taskview_move up=0.5 pages=True
3320
3321 copytmap <UP> k <C-p>
3322 copytmap <DOWN> j <C-n> <CR>
3323 copytmap <HOME> g
3324 copytmap <END> G
3325 copytmap <C-u> u
3326 copytmap <PAGEDOWN> n f <C-F> <Space>
3327 copytmap <PAGEUP> p b <C-B>
3328
3329 # Changing priority and deleting tasks
3330 tmap J eval -q fm.ui.taskview.task_move(-1)
3331 tmap K eval -q fm.ui.taskview.task_move(0)
3332 tmap dd eval -q fm.ui.taskview.task_remove()
3333 tmap <pagedown> eval -q fm.ui.taskview.task_move(-1)
3334 tmap <pageup> eval -q fm.ui.taskview.task_move(0)
3335 tmap <delete> eval -q fm.ui.taskview.task_remove()
3336
3337 # Basic
3338 tmap <ESC> taskview_close
3339 copytmap <ESC> q Q w <C-c>
3340 #+end_src
3341
3342 *** scope.sh
3343 :PROPERTIES:
3344 :header-args+: :tangle ~/.config/ranger/scope.sh :shebang "#!/usr/bin/env sh"
3345 :END:
3346
3347 #+begin_src sh :tangle no
3348 # ranger supports enhanced previews. If the option "use_preview_script"
3349 # is set to True and this file exists, this script will be called and its
3350 # output is displayed in ranger. ANSI color codes are supported.
3351
3352 # NOTES: This script is considered a configuration file. If you upgrade
3353 # ranger, it will be left untouched. (You must update it yourself.)
3354 # Also, ranger disables STDIN here, so interactive scripts won't work properly
3355
3356 # Meanings of exit codes:
3357 # code | meaning | action of ranger
3358 # -----+------------+-------------------------------------------
3359 # 0 | success | success. display stdout as preview
3360 # 1 | no preview | failure. display no preview at all
3361 # 2 | plain text | display the plain content of the file
3362 # 3 | fix width | success. Don't reload when width changes
3363 # 4 | fix height | success. Don't reload when height changes
3364 # 5 | fix both | success. Don't ever reload
3365
3366 # Meaningful aliases for arguments:
3367 path="$1" # Full path of the selected file
3368 width="$2" # Width of the preview pane (number of fitting characters)
3369 height="$3" # Height of the preview pane (number of fitting characters)
3370
3371 maxln=200 # Stop after $maxln lines. Can be used like ls | head -n $maxln
3372
3373 # Find out something about the file:
3374 mimetype=$(file --mime-type -Lb "$path")
3375 extension=${path##*.}
3376
3377 # Functions:
3378 # runs a command and saves its output into $output. Useful if you need
3379 # the return value AND want to use the output in a pipe
3380 try() { output=$(eval '"$@"'); }
3381
3382 # writes the output of the previouosly used "try" command
3383 dump() { echo "$output"; }
3384
3385 # a common post-processing function used after most commands
3386 trim() { head -n "$maxln"; }
3387
3388 # wraps highlight to treat exit code 141 (killed by SIGPIPE) as success
3389 highlight() { command highlight "$@"; test $? = 0 -o $? = 141; }
3390
3391 case "$extension" in
3392 # Archive extensions:
3393 7z|a|ace|alz|arc|arj|bz|bz2|cab|cpio|deb|gz|jar|lha|lz|lzh|lzma|lzo|\
3394 rpm|rz|t7z|tar|tbz|tbz2|tgz|tlz|txz|tZ|tzo|war|xpi|xz|Z|zip)
3395 try als "$path" && { dump | trim; exit 0; }
3396 try acat "$path" && { dump | trim; exit 3; }
3397 try bsdtar -lf "$path" && { dump | trim; exit 0; }
3398 exit 1;;
3399 rar)
3400 try unrar -p- lt "$path" && { dump | trim; exit 0; } || exit 1;;
3401 # PDF documents:
3402 pdf)
3403 try pdftotext -l 10 -nopgbrk -q "$path" - && \
3404 { dump | trim | fmt -s -w $width; exit 0; } || exit 1;;
3405 # BitTorrent Files
3406 torrent)
3407 try transmission-show "$path" && { dump | trim; exit 5; } || exit 1;;
3408 # HTML Pages:
3409 htm|html|xhtml)
3410 try w3m -dump "$path" && { dump | trim | fmt -s -w $width; exit 4; }
3411 try lynx -dump "$path" && { dump | trim | fmt -s -w $width; exit 4; }
3412 try elinks -dump "$path" && { dump | trim | fmt -s -w $width; exit 4; }
3413 ;; # fall back to highlight/cat if the text browsers fail
3414 esac
3415
3416 case "$mimetype" in
3417 # Syntax highlight for text files:
3418 text/* | */xml)
3419 try highlight --out-format=ansi "$path" && { dump | trim; exit 5; } || exit 2;;
3420 # Ascii-previews of images:
3421 image/*)
3422 img2txt --gamma=0.6 --width="$width" "$path" && exit 4 || exit 1;;
3423 # Display information about media files:
3424 video/* | audio/*)
3425 exiftool "$path" && exit 5
3426 # Use sed to remove spaces so the output fits into the narrow window
3427 try mediainfo "$path" && { dump | trim | sed 's/ \+:/: /;'; exit 5; } || exit 1;;
3428 esac
3429
3430 exit 1
3431 #+end_src
3432
3433 ** redshift
3434 :PROPERTIES:
3435 :header-args+: :tangle ~/.config/redshift.conf :comments none
3436 :END:
3437
3438 #+begin_src conf
3439 ; Global settings for redshift
3440 [redshift]
3441 ; Set the day and night screen temperatures (Neutral is 6500K)
3442 ;temp-day=5700
3443 ;temp-night=3500
3444
3445 ;temp-day=6500
3446 temp-day=6200
3447 ;temp-night=4800
3448 ;temp-night=5000
3449 ;temp-night=4500
3450 temp-night=4000
3451
3452 ; Enable/Disable a smooth transition between day and night
3453 ; 0 will cause a direct change from day to night screen temperature.
3454 ; 1 will gradually increase or decrease the screen temperature.
3455 transition=1
3456
3457 ; Set the screen brightness. Default is 1.0.
3458 ;brightness=0.9
3459 ; It is also possible to use different settings for day and night
3460 ; since version 1.8.
3461 ;brightness-day=0.7
3462 ;brightness-night=0.4
3463 ; Set the screen gamma (for all colors, or each color channel
3464 ; individually)
3465 ;gamma=0.8
3466 ;gamma=1.0
3467 ;gamma=0.8:0.7:0.8
3468 ; This can also be set individually for day and night since
3469 ; version 1.10.
3470 ;gamma-day=0.8:0.7:0.8
3471 ;gamma-night=0.6
3472
3473 ; Set the location-provider: 'geoclue2' or 'manual'
3474 ; type 'redshift -l list' to see possible values.
3475 ; The location provider settings are in a different section.
3476 ;location-provider=manual
3477 location-provider=geoclue2
3478
3479 ; Set the adjustment-method: 'randr', 'vidmode'
3480 ; type 'redshift -m list' to see all possible values.
3481 ; 'randr' is the preferred method, 'vidmode' is an older API.
3482 ; but works in some cases when 'randr' does not.
3483 ; The adjustment method settings are in a different section.
3484 adjustment-method=randr
3485
3486 ; Configuration of the location-provider:
3487 ; type 'redshift -l PROVIDER:help' to see the settings.
3488 ; ex: 'redshift -l manual:help'
3489 ; Keep in mind that longitudes west of Greenwich (e.g. the Americas)
3490 ; are negative numbers.
3491 ;[manual]
3492 ;lat=48.1
3493 ;lon=11.6
3494
3495 ; Configuration of the adjustment-method
3496 ; type 'redshift -m METHOD:help' to see the settings.
3497 ; ex: 'redshift -m randr:help'
3498 ; In this example, randr is configured to adjust screen 1.
3499 ; Note that the numbering starts from 0, so this is actually the
3500 ; second screen. If this option is not specified, Redshift will try
3501 ; to adjust _all_ screens.
3502 ;[randr]
3503 ;screen=1
3504 #+end_src
3505
3506 ** rofi
3507 :PROPERTIES:
3508 :header-args+: :tangle ~/.config/rofi/config
3509 :END:
3510
3511 #+begin_src conf
3512 rofi.font: Ubuntu Mono 13
3513 ! rofi.font: Inconsolata 16
3514 ! rofi.font: Iosevka 13
3515 ! rofi.font: Source Code Pro 11
3516 rofi.modi: run,window
3517 ! rofi.width: 640
3518 rofi.width: 600
3519 !rofi.location: 2
3520 !rofi.yoffset: 200
3521 rofi.monitor: -1
3522 !rofi.lines: 10
3523
3524 !rofi.theme: /usr/share/rofi/themes//Arc.rasi
3525 !rofi.theme: /usr/share/rofi/themes//Paper.rasi
3526 !rofi.theme: /usr/share/rofi/themes//sidebar.rasi
3527
3528 rofi.theme: /usr/share/rofi/themes//gruvbox-light.rasi
3529 #+end_src
3530
3531 ** rofi-pass
3532 :PROPERTIES:
3533 :header-args+: :tangle ~/.config/rofi-pass/config
3534 :END:
3535
3536 #+begin_src conf
3537 # permanently set alternative root dir
3538 # root=/path/to/root
3539
3540 # rofi command. Make sure to have "$@" as last argument
3541 _rofi () {
3542 #rofi -no-auto-select -kb-accept-entry "!Return" -i -no-levenshtein-sort "$@"
3543 rofi -i -no-auto-select -kb-accept-entry "!Return" "$@"
3544 }
3545
3546 # xdotool needs the keyboard layout to be set using setxkbmap
3547 # You can do this in your autostart scripts (e.g. xinitrc)
3548
3549 # If for some reason, you cannot do this, you can set the command here.
3550 # and set fix_layout to true
3551 fix_layout=false
3552
3553 layout_cmd () {
3554 setxkbmap us
3555 }
3556
3557 # fields to be used
3558 URL_field='url'
3559 USERNAME_field='user'
3560 AUTOTYPE_field='autotype'
3561
3562 # delay to be used for :delay keyword
3563 delay=2
3564
3565 ## Programs to be used
3566 # Editor
3567 EDITOR='gvim -f'
3568
3569 # Browser
3570 BROWSER='chromium'
3571
3572 ## Misc settings
3573
3574 default_do='menu' # menu, autotype, copyPass, typeUser, typePass, copyUser, copyUrl, viewEntry, typeMenu, actionMenu, copyMenu, openUrl
3575 auto_enter='false'
3576 notify='false'
3577 default_autotype='user :tab pass'
3578
3579 # color of the help messages
3580 # leave empty for autodetection
3581 help_color="#4872FF"
3582
3583 # Clipboard settings
3584 # Possible options: primary, clipboard, both
3585 clip=primary
3586
3587 # Options for generating new password entries
3588 # default_user is also used for password files that have no user field.
3589 default_user=aminb
3590 default_user2=aminban
3591 password_length=30
3592
3593 # Custom Keybindings
3594 #autotype="Alt+1"
3595 autotype="Alt+m"
3596 type_user="Alt+2"
3597 type_pass="Alt+3"
3598 open_url="Alt+4"
3599 copy_name="Alt+u"
3600 copy_url="Alt+l"
3601 copy_pass="Alt+p"
3602 show="Alt+o"
3603 copy_entry="Alt+2"
3604 type_entry="Alt+1"
3605 copy_menu="Alt+c"
3606 action_menu="Alt+a"
3607 type_menu="Alt+t"
3608 help="Alt+h"
3609 switch="Alt+x"
3610 insert_pass="Alt+n"
3611 #+end_src
3612
3613 ** sway
3614 :PROPERTIES:
3615 :header-args+: :tangle ~/.config/sway/config
3616 :END:
3617
3618 #+begin_src conf
3619 exec xrdb .Xresources
3620 ### Variables
3621 # super
3622 set $mod Mod4
3623 # alt
3624 set $mod2 Mod1
3625 set $left h
3626 set $down j
3627 set $up k
3628 set $right l
3629 set $term urxvt
3630 set $menu rofi -show run -display-run '> ' -display-window ' 🗔 '
3631
3632 ### Output configuration
3633 #
3634 # Default wallpaper (more resolutions are available in __DATADIR__/backgrounds/sway/)
3635 output * bg /usr/share/backgrounds/sway/Sway_Wallpaper_Blue_1920x1080.png fill
3636 #
3637 # Example configuration:
3638 #
3639 # output HDMI-A-1 resolution 1920x1080 position 1920,0
3640 #
3641 # You can get the names of your outputs by running: swaymsg -t get_outputs
3642
3643 ### Idle configuration
3644 #
3645 # Example configuration:
3646 #
3647 #exec swayidle \
3648 # timeout 300 'swaylock -c 000000' \
3649 # timeout 600 'swaymsg "output * dpms off"' \
3650 # resume 'swaymsg "output * dpms on"' \
3651 # before-sleep 'swaylock -c 000000'
3652 #
3653 # This will lock your screen after 300 seconds of inactivity, then turn off
3654 # your displays after another 600 seconds, and turn your screens back on when
3655 # resumed. It will also lock your screen before your computer goes to sleep.
3656
3657 ### Input configuration
3658
3659 input "1739:31251:DLL07BE:01_06CB:7A13_Touchpad" {
3660 dwt enabled
3661 tap enabled
3662 natural_scroll enabled
3663 middle_emulation enabled
3664 }
3665
3666 input "1:1:AT_Translated_Set_2_keyboard" {
3667 repeat_delay 200
3668 repeat_rate 45
3669 }
3670
3671
3672 ### Key bindings
3673 #
3674 # Basics:
3675 #
3676 # start a terminal
3677 bindsym $mod+Return exec $term
3678
3679 # kill focused window
3680 bindsym $mod+Shift+q kill
3681
3682 # start your launcher
3683 bindsym $mod+d exec $menu
3684
3685 # Drag floating windows by holding down $mod and left mouse button.
3686 # Resize them with right mouse button + $mod.
3687 # Despite the name, also works for non-floating windows.
3688 # Change normal to inverse to use left mouse button for resizing and right
3689 # mouse button for dragging.
3690 #floating_modifier $mod normal
3691
3692 # reload the configuration file
3693 bindsym $mod+Shift+c reload
3694
3695 # exit sway (logs you out of your wayland session)
3696 bindsym $mod+Shift+e exit
3697
3698 bindsym $mod+apostrophe exec rofi-light # rofi-based brightness chooser
3699 bindsym XF86MonBrightnessUp exec light -A 5 # increase screen brightness
3700 bindsym XF86MonBrightnessDown exec light -U 5 # decrease screen brightness
3701
3702 # bspwm-esque workspace switch and window move
3703 bindsym $mod+bracketleft exec sway-ws-util switch prev
3704 bindsym $mod+bracketright exec sway-ws-util switch next
3705 bindsym $mod+braceleft exec sway-ws-util move prev follow
3706 bindsym $mod+braceright exec sway-ws-util move next follow
3707
3708 # original sway workspace switch and window move
3709 bindsym $mod2+bracketleft workspace prev
3710 bindsym $mod2+bracketright workspace next
3711 bindsym $mod2+braceleft move container to workspace prev
3712 bindsym $mod2+braceright move container to workspace next
3713 #
3714 # Moving around:
3715 #
3716 # Move your focus around
3717 bindsym $mod+$left focus left
3718 bindsym $mod+$down focus down
3719 bindsym $mod+$up focus up
3720 bindsym $mod+$right focus right
3721 # or use $mod+[up|down|left|right]
3722 bindsym $mod+Left focus left
3723 bindsym $mod+Down focus down
3724 bindsym $mod+Up focus up
3725 bindsym $mod+Right focus right
3726
3727 # _move_ the focused window with the same, but add Shift
3728 bindsym $mod+Shift+$left move left
3729 bindsym $mod+Shift+$down move down
3730 bindsym $mod+Shift+$up move up
3731 bindsym $mod+Shift+$right move right
3732 # ditto, with arrow keys
3733 bindsym $mod+Shift+Left move left
3734 bindsym $mod+Shift+Down move down
3735 bindsym $mod+Shift+Up move up
3736 bindsym $mod+Shift+Right move right
3737 #
3738 # Workspaces:
3739 #
3740 # switch to workspace
3741 bindsym $mod+1 workspace 1
3742 bindsym $mod+2 workspace 2
3743 bindsym $mod+3 workspace 3
3744 bindsym $mod+4 workspace 4
3745 bindsym $mod+5 workspace 5
3746 bindsym $mod+6 workspace 6
3747 bindsym $mod+7 workspace 7
3748 bindsym $mod+8 workspace 8
3749 bindsym $mod+9 workspace 9
3750 bindsym $mod+0 workspace 10
3751 # move focused container to workspace
3752 bindsym $mod+Shift+1 move container to workspace 1
3753 bindsym $mod+Shift+2 move container to workspace 2
3754 bindsym $mod+Shift+3 move container to workspace 3
3755 bindsym $mod+Shift+4 move container to workspace 4
3756 bindsym $mod+Shift+5 move container to workspace 5
3757 bindsym $mod+Shift+6 move container to workspace 6
3758 bindsym $mod+Shift+7 move container to workspace 7
3759 bindsym $mod+Shift+8 move container to workspace 8
3760 bindsym $mod+Shift+9 move container to workspace 9
3761 bindsym $mod+Shift+0 move container to workspace 10
3762 # Note: workspaces can have any name you want, not just numbers.
3763 # We just use 1-10 as the default.
3764 #
3765 # Layout stuff:
3766 #
3767 # You can "split" the current object of your focus with
3768 # $mod+b or $mod+v, for horizontal and vertical splits
3769 # respectively.
3770 bindsym $mod+b splith
3771 bindsym $mod+v splitv
3772
3773 # Switch the current container between different layout styles
3774 bindsym $mod+s layout stacking
3775 bindsym $mod+w layout tabbed
3776 bindsym $mod+e layout toggle split
3777
3778 # Make the current focus fullscreen
3779 bindsym $mod+f fullscreen
3780
3781 # Toggle the current focus between tiling and floating mode
3782 bindsym $mod+Shift+space floating toggle
3783
3784 # Swap focus between the tiling area and the floating area
3785 bindsym $mod+space focus mode_toggle
3786
3787 # move focus to the parent container
3788 bindsym $mod+a focus parent
3789 #
3790 # Scratchpad:
3791 #
3792 # Sway has a "scratchpad", which is a bag of holding for windows.
3793 # You can send windows there and get them back later.
3794
3795 # Move the currently focused window to the scratchpad
3796 bindsym $mod+Shift+minus move scratchpad
3797
3798 # Show the next scratchpad window or hide the focused scratchpad window.
3799 # If there are multiple scratchpad windows, this command cycles through them.
3800 bindsym $mod+minus scratchpad show
3801 #
3802 # Resizing containers:
3803 #
3804 mode "resize" {
3805 # left will shrink the containers width
3806 # right will grow the containers width
3807 # up will shrink the containers height
3808 # down will grow the containers height
3809 bindsym $left resize shrink width 10px
3810 bindsym $down resize grow height 10px
3811 bindsym $up resize shrink height 10px
3812 bindsym $right resize grow width 10px
3813
3814 # ditto, with arrow keys
3815 bindsym Left resize shrink width 10px
3816 bindsym Down resize grow height 10px
3817 bindsym Up resize shrink height 10px
3818 bindsym Right resize grow width 10px
3819
3820 # return to default mode
3821 bindsym Return mode "default"
3822 bindsym Escape mode "default"
3823 }
3824 bindsym $mod+r mode "resize"
3825
3826 #
3827 # Status Bar:
3828 #
3829 # Read `man 5 sway-bar` for more information about this section.
3830 bar {
3831 position bottom
3832 colors {
3833 statusline #ffffff
3834 background #323232
3835 inactive_workspace #32323200 #32323200 #5c5c5c
3836 }
3837 status_command i3blocks
3838 }
3839
3840 include /etc/sway/config.d/*
3841 #+end_src
3842
3843 ** TLP
3844
3845 *** TODO enigma
3846 *** plasma
3847
3848 #+begin_src conf :tangle (when (and (eq system-type 'gnu/linux) (string= (system-name) "plasma")) "/sudo::/etc/default/tlp")
3849 # ------------------------------------------------------------------------------
3850 # tlp - Parameters for power saving
3851 # See full explanation: http://linrunner.de/en/tlp/docs/tlp-configuration.html
3852
3853 # Hint: some features are disabled by default, remove the leading # to enable
3854 # them.
3855
3856 # Set to 0 to disable, 1 to enable TLP.
3857 TLP_ENABLE=1
3858
3859 # Operation mode when no power supply can be detected: AC, BAT.
3860 # Concerns some desktop and embedded hardware only.
3861 TLP_DEFAULT_MODE=AC
3862
3863 # Operation mode select: 0=depend on power source, 1=always use TLP_DEFAULT_MODE
3864 # Hint: use in conjunction with TLP_DEFAULT_MODE=BAT for BAT settings on AC.
3865 TLP_PERSISTENT_DEFAULT=0
3866
3867 # Seconds laptop mode has to wait after the disk goes idle before doing a sync.
3868 # Non-zero value enables, zero disables laptop mode.
3869 DISK_IDLE_SECS_ON_AC=0
3870 DISK_IDLE_SECS_ON_BAT=2
3871
3872 # Dirty page values (timeouts in secs).
3873 MAX_LOST_WORK_SECS_ON_AC=15
3874 MAX_LOST_WORK_SECS_ON_BAT=60
3875
3876 # Hint: CPU parameters below are disabled by default, remove the leading #
3877 # to enable them, otherwise kernel default values are used.
3878
3879 # Select a CPU frequency scaling governor.
3880 # Intel Core i processor with intel_pstate driver:
3881 # powersave(*), performance.
3882 # Older hardware with acpi-cpufreq driver:
3883 # ondemand(*), powersave, performance, conservative, schedutil.
3884 # (*) is recommended.
3885 # Hint: use tlp-stat -p to show the active driver and available governors.
3886 # Important:
3887 # powersave for intel_pstate and ondemand for acpi-cpufreq are power
3888 # efficient for *almost all* workloads and therefore kernel and most
3889 # distributions have chosen them as defaults. If you still want to change,
3890 # you should know what you're doing! You *must* disable your distribution's
3891 # governor settings or conflicts will occur.
3892 #CPU_SCALING_GOVERNOR_ON_AC=powersave
3893 #CPU_SCALING_GOVERNOR_ON_BAT=powersave
3894
3895 # Set the min/max frequency available for the scaling governor.
3896 # Possible values strongly depend on your CPU. For available frequencies see
3897 # the output of tlp-stat -p.
3898 #CPU_SCALING_MIN_FREQ_ON_AC=0
3899 #CPU_SCALING_MAX_FREQ_ON_AC=0
3900 #CPU_SCALING_MIN_FREQ_ON_BAT=0
3901 #CPU_SCALING_MAX_FREQ_ON_BAT=0
3902
3903 # Set energy performance hints (HWP) for Intel P-state governor:
3904 # performance, balance_performance, default, balance_power, power
3905 # Values are given in order of increasing power saving.
3906 # Note: Intel Skylake or newer CPU and Kernel >= 4.10 required.
3907 CPU_HWP_ON_AC=balance_performance
3908 CPU_HWP_ON_BAT=balance_power
3909
3910 # Set Intel P-state performance: 0..100 (%).
3911 # Limit the max/min P-state to control the power dissipation of the CPU.
3912 # Values are stated as a percentage of the available performance.
3913 # Requires an Intel Core i processor with intel_pstate driver.
3914 #CPU_MIN_PERF_ON_AC=0
3915 #CPU_MAX_PERF_ON_AC=100
3916 #CPU_MIN_PERF_ON_BAT=0
3917 #CPU_MAX_PERF_ON_BAT=30
3918
3919 # Set the CPU "turbo boost" feature: 0=disable, 1=allow
3920 # Requires an Intel Core i processor.
3921 # Important:
3922 # - This may conflict with your distribution's governor settings
3923 # - A value of 1 does *not* activate boosting, it just allows it
3924 #CPU_BOOST_ON_AC=1
3925 #CPU_BOOST_ON_BAT=0
3926
3927 # Minimize number of used CPU cores/hyper-threads under light load conditions:
3928 # 0=disable, 1=enable.
3929 SCHED_POWERSAVE_ON_AC=0
3930 SCHED_POWERSAVE_ON_BAT=1
3931
3932 # Kernel NMI Watchdog:
3933 # 0=disable (default, saves power), 1=enable (for kernel debugging only).
3934 NMI_WATCHDOG=0
3935
3936 # Change CPU voltages aka "undervolting" - Kernel with PHC patch required.
3937 # Frequency voltage pairs are written to:
3938 # /sys/devices/system/cpu/cpu0/cpufreq/phc_controls
3939 # CAUTION: only use this, if you thoroughly understand what you are doing!
3940 #PHC_CONTROLS="F:V F:V F:V F:V"
3941
3942 # Set CPU performance versus energy savings policy:
3943 # performance, balance-performance, default, balance-power, power.
3944 # Values are given in order of increasing power saving.
3945 # Requires kernel module msr and x86_energy_perf_policy from linux-tools.
3946 ENERGY_PERF_POLICY_ON_AC=performance
3947 ENERGY_PERF_POLICY_ON_BAT=balance-power
3948
3949 # Disk devices; separate multiple devices with spaces (default: sda).
3950 # Devices can be specified by disk ID also (lookup with: tlp diskid).
3951 DISK_DEVICES="sda sdb"
3952
3953 # Disk advanced power management level: 1..254, 255 (max saving, min, off).
3954 # Levels 1..127 may spin down the disk; 255 allowable on most drives.
3955 # Separate values for multiple disks with spaces. Use the special value 'keep'
3956 # to keep the hardware default for the particular disk.
3957 DISK_APM_LEVEL_ON_AC="254 254"
3958 DISK_APM_LEVEL_ON_BAT="128 128"
3959
3960 # Hard disk spin down timeout:
3961 # 0: spin down disabled
3962 # 1..240: timeouts from 5s to 20min (in units of 5s)
3963 # 241..251: timeouts from 30min to 5.5 hours (in units of 30min)
3964 # See 'man hdparm' for details.
3965 # Separate values for multiple disks with spaces. Use the special value 'keep'
3966 # to keep the hardware default for the particular disk.
3967 #DISK_SPINDOWN_TIMEOUT_ON_AC="0 0"
3968 #DISK_SPINDOWN_TIMEOUT_ON_BAT="0 0"
3969
3970 # Select IO scheduler for the disk devices: cfq, deadline, noop (Default: cfq).
3971 # Separate values for multiple disks with spaces. Use the special value 'keep'
3972 # to keep the kernel default scheduler for the particular disk.
3973 #DISK_IOSCHED="cfq cfq"
3974
3975 # AHCI link power management (ALPM) for disk devices:
3976 # min_power, med_power_with_dipm(*), medium_power, max_performance.
3977 # (*) Kernel >= 4.15 required, then recommended.
3978 # Multiple values separated with spaces are tried sequentially until success.
3979 SATA_LINKPWR_ON_AC="med_power_with_dipm max_performance"
3980 SATA_LINKPWR_ON_BAT="med_power_with_dipm min_power"
3981
3982 # Exclude host devices from AHCI link power management.
3983 # Separate multiple hosts with spaces.
3984 #SATA_LINKPWR_BLACKLIST="host1"
3985
3986 # Runtime Power Management for AHCI host and disks devices:
3987 # on=disable, auto=enable.
3988 # EXPERIMENTAL ** WARNING: auto will most likely cause system lockups/data loss.
3989 #AHCI_RUNTIME_PM_ON_AC=on
3990 #AHCI_RUNTIME_PM_ON_BAT=on
3991
3992 # Seconds of inactivity before disk is suspended.
3993 AHCI_RUNTIME_PM_TIMEOUT=15
3994
3995 # PCI Express Active State Power Management (PCIe ASPM):
3996 # default, performance, powersave.
3997 PCIE_ASPM_ON_AC=performance
3998 PCIE_ASPM_ON_BAT=powersave
3999
4000 # Radeon graphics clock speed (profile method): low, mid, high, auto, default;
4001 # auto = mid on BAT, high on AC; default = use hardware defaults.
4002 RADEON_POWER_PROFILE_ON_AC=high
4003 RADEON_POWER_PROFILE_ON_BAT=low
4004
4005 # Radeon dynamic power management method (DPM): battery, performance.
4006 RADEON_DPM_STATE_ON_AC=performance
4007 RADEON_DPM_STATE_ON_BAT=battery
4008
4009 # Radeon DPM performance level: auto, low, high; auto is recommended.
4010 RADEON_DPM_PERF_LEVEL_ON_AC=auto
4011 RADEON_DPM_PERF_LEVEL_ON_BAT=auto
4012
4013 # WiFi power saving mode: on=enable, off=disable; not supported by all adapters.
4014 WIFI_PWR_ON_AC=off
4015 WIFI_PWR_ON_BAT=on
4016
4017 # Disable wake on LAN: Y/N.
4018 WOL_DISABLE=Y
4019
4020 # Enable audio power saving for Intel HDA, AC97 devices (timeout in secs).
4021 # A value of 0 disables, >=1 enables power saving (recommended: 1).
4022 SOUND_POWER_SAVE_ON_AC=0
4023 SOUND_POWER_SAVE_ON_BAT=0
4024
4025 # Disable controller too (HDA only): Y/N.
4026 SOUND_POWER_SAVE_CONTROLLER=N
4027
4028 # Power off optical drive in UltraBay/MediaBay: 0=disable, 1=enable.
4029 # Drive can be powered on again by releasing (and reinserting) the eject lever
4030 # or by pressing the disc eject button on newer models.
4031 # Note: an UltraBay/MediaBay hard disk is never powered off.
4032 BAY_POWEROFF_ON_AC=0
4033 BAY_POWEROFF_ON_BAT=0
4034 # Optical drive device to power off (default sr0).
4035 BAY_DEVICE="sr0"
4036
4037 # Runtime Power Management for PCI(e) bus devices: on=disable, auto=enable.
4038 RUNTIME_PM_ON_AC=on
4039 RUNTIME_PM_ON_BAT=auto
4040
4041 # Exclude PCI(e) device adresses the following list from Runtime PM
4042 # (separate with spaces). Use lspci to get the adresses (1st column).
4043 #RUNTIME_PM_BLACKLIST="bb:dd.f 11:22.3 44:55.6"
4044 RUNTIME_PM_BLACKLIST="01:00.0"
4045
4046 # Exclude PCI(e) devices assigned to the listed drivers from Runtime PM.
4047 # Default when unconfigured is "amdgpu nouveau nvidia radeon" which
4048 # prevents accidential power-on of dGPU in hybrid graphics setups.
4049 # Use "" to disable the feature completely.
4050 # Separate multiple drivers with spaces.
4051 #RUNTIME_PM_DRIVER_BLACKLIST="amdgpu nouveau nvidia radeon"
4052
4053 # Set to 0 to disable, 1 to enable USB autosuspend feature.
4054 USB_AUTOSUSPEND=1
4055
4056 # Exclude listed devices from USB autosuspend (separate with spaces).
4057 # Use lsusb to get the ids.
4058 # Note: input devices (usbhid) are excluded automatically
4059 #USB_BLACKLIST="1111:2222 3333:4444"
4060
4061 # Bluetooth devices are excluded from USB autosuspend:
4062 # 0=do not exclude, 1=exclude.
4063 USB_BLACKLIST_BTUSB=0
4064
4065 # Phone devices are excluded from USB autosuspend:
4066 # 0=do not exclude, 1=exclude (enable charging).
4067 USB_BLACKLIST_PHONE=0
4068
4069 # Printers are excluded from USB autosuspend:
4070 # 0=do not exclude, 1=exclude.
4071 USB_BLACKLIST_PRINTER=1
4072
4073 # WWAN devices are excluded from USB autosuspend:
4074 # 0=do not exclude, 1=exclude.
4075 USB_BLACKLIST_WWAN=1
4076
4077 # Include listed devices into USB autosuspend even if already excluded
4078 # by the blacklists above (separate with spaces).
4079 # Use lsusb to get the ids.
4080 #USB_WHITELIST="1111:2222 3333:4444"
4081
4082 # Set to 1 to disable autosuspend before shutdown, 0 to do nothing
4083 # (workaround for USB devices that cause shutdown problems).
4084 #USB_AUTOSUSPEND_DISABLE_ON_SHUTDOWN=1
4085
4086 # Restore radio device state (Bluetooth, WiFi, WWAN) from previous shutdown
4087 # on system startup: 0=disable, 1=enable.
4088 # Hint: the parameters DEVICES_TO_DISABLE/ENABLE_ON_STARTUP/SHUTDOWN below
4089 # are ignored when this is enabled!
4090 #RESTORE_DEVICE_STATE_ON_STARTUP=0
4091 RESTORE_DEVICE_STATE_ON_STARTUP=1
4092
4093 # Radio devices to disable on startup: bluetooth, wifi, wwan.
4094 # Separate multiple devices with spaces.
4095 #DEVICES_TO_DISABLE_ON_STARTUP="bluetooth wifi wwan"
4096
4097 # Radio devices to enable on startup: bluetooth, wifi, wwan.
4098 # Separate multiple devices with spaces.
4099 #DEVICES_TO_ENABLE_ON_STARTUP="wifi"
4100
4101 # Radio devices to disable on shutdown: bluetooth, wifi, wwan.
4102 # (workaround for devices that are blocking shutdown).
4103 #DEVICES_TO_DISABLE_ON_SHUTDOWN="bluetooth wifi wwan"
4104
4105 # Radio devices to enable on shutdown: bluetooth, wifi, wwan.
4106 # (to prevent other operating systems from missing radios).
4107 #DEVICES_TO_ENABLE_ON_SHUTDOWN="wwan"
4108
4109 # Radio devices to enable on AC: bluetooth, wifi, wwan.
4110 #DEVICES_TO_ENABLE_ON_AC="bluetooth wifi wwan"
4111
4112 # Radio devices to disable on battery: bluetooth, wifi, wwan.
4113 #DEVICES_TO_DISABLE_ON_BAT="bluetooth wifi wwan"
4114
4115 # Radio devices to disable on battery when not in use (not connected):
4116 # bluetooth, wifi, wwan.
4117 #DEVICES_TO_DISABLE_ON_BAT_NOT_IN_USE="bluetooth wifi wwan"
4118
4119 # Battery charge thresholds (ThinkPad only, tp-smapi or acpi-call kernel module
4120 # required). Charging starts when the remaining capacity falls below the
4121 # START_CHARGE_THRESH value and stops when exceeding the STOP_CHARGE_THRESH value.
4122 # Main / Internal battery (values in %)
4123 #START_CHARGE_THRESH_BAT0=75
4124 #STOP_CHARGE_THRESH_BAT0=80
4125 # Ultrabay / Slice / Replaceable battery (values in %)
4126 #START_CHARGE_THRESH_BAT1=75
4127 #STOP_CHARGE_THRESH_BAT1=80
4128
4129 # Restore charge thresholds when AC is unplugged: 0=disable, 1=enable.
4130 #RESTORE_THRESHOLDS_ON_BAT=1
4131
4132 # ------------------------------------------------------------------------------
4133 # tlp-rdw - Parameters for the radio device wizard
4134 # Possible devices: bluetooth, wifi, wwan.
4135
4136 # Hints:
4137 # - Parameters are disabled by default, remove the leading # to enable them
4138 # - Separate multiple radio devices with spaces
4139
4140 # Radio devices to disable on connect.
4141 #DEVICES_TO_DISABLE_ON_LAN_CONNECT="wifi wwan"
4142 #DEVICES_TO_DISABLE_ON_WIFI_CONNECT="wwan"
4143 #DEVICES_TO_DISABLE_ON_WWAN_CONNECT="wifi"
4144
4145 # Radio devices to enable on disconnect.
4146 #DEVICES_TO_ENABLE_ON_LAN_DISCONNECT="wifi wwan"
4147 #DEVICES_TO_ENABLE_ON_WIFI_DISCONNECT=""
4148 #DEVICES_TO_ENABLE_ON_WWAN_DISCONNECT=""
4149
4150 # Radio devices to enable/disable when docked.
4151 #DEVICES_TO_ENABLE_ON_DOCK=""
4152 #DEVICES_TO_DISABLE_ON_DOCK=""
4153
4154 # Radio devices to enable/disable when undocked.
4155 #DEVICES_TO_ENABLE_ON_UNDOCK="wifi"
4156 #DEVICES_TO_DISABLE_ON_UNDOCK=""
4157 #+end_src
4158
4159 ** X
4160
4161 *** xprofile
4162 :PROPERTIES:
4163 :header-args+: :tangle ~/.xprofile
4164 :END:
4165
4166 =~/.xprofile= is similar in style to =~/.xinitrc=, but on the
4167 contrary, it's automatically sourced by LightDM, my display manager of
4168 choice.
4169
4170 #+begin_src sh :tangle no
4171 xset -b # disable bell
4172 xset r rate 200 45 # repeat delay (ms) and rate (repeats/sec)
4173
4174 # setxkbmap -option compose:ralt
4175
4176 setxkbmap -option ctrl:nocaps # turn capslock into control
4177 setxkbmap -option altwin:swap_alt_win # swap alt and super
4178
4179 if [ $(hostname) = "plasma" ]
4180 then
4181 setxkbmap -option ctrl:rctrl_ralt # turn right control into right alt
4182 fi
4183
4184 if [ $(hostname) = "enigma" ]
4185 then
4186 xmodmap -e "keycode 135 = Alt_R" # remap menu key to alt
4187 fi
4188
4189 light -Scrs "intel_backlight" 2
4190
4191 source $HOME/.zprofile
4192
4193 export _JAVA_AWT_WM_NONREPARENTING=1
4194 export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true'
4195
4196 if [ $(hostname) = "plasma" ]
4197 then
4198 unlock-def-gk.py &
4199 fi
4200
4201 bspwm &
4202 #+end_src
4203
4204 *** X resources
4205
4206 **** Xresources
4207 :PROPERTIES:
4208 :header-args+: :tangle (when (eq system-type 'gnu/linux) "~/.Xresources")
4209 :END:
4210
4211 #+begin_src conf-xdefaults
4212 #include ".Xresources.d/fonts"
4213 ! #include ".Xresources.d/colors"
4214 #include ".Xresources.d/emacs"
4215 #include ".Xresources.d/rxvt-unicode"
4216 #+end_src
4217
4218 **** Xresources.d
4219
4220 ***** fonts
4221 :PROPERTIES:
4222 :header-args+: :tangle (when (eq system-type 'gnu/linux) "~/.Xresources.d/fonts")
4223 :END:
4224
4225 #+begin_src conf-xdefaults
4226 Xft.lcdfilter: lcddefault
4227 Xft.antialias: true
4228 Xft.autohint: 0
4229 Xft.hinting: true
4230 Xft.hintstyle: hintslight
4231 ! Xft.hintstyle: hintfull
4232 Xft.rgba: rgb
4233 Xft.dpi: 96
4234 #+end_src
4235
4236 ***** colors
4237 :PROPERTIES:
4238 :header-args+: :tangle (when (eq system-type 'gnu/linux) "~/.Xresources.d/colors")
4239 :END:
4240
4241 #+begin_src conf-xdefaults :tangle no
4242 #include "gruvbox-light.xresources"
4243 ! #include "gruvbox-dark.xresources"
4244 #include "gruvbox-urxvt256.xresources"
4245 #+end_src
4246
4247 #+begin_src conf-xdefaults :tangle no
4248 ! -----------------------------------------------------------------------------
4249 ! File: gruvbox-light.xresources
4250 ! Description: Retro groove colorscheme generalized
4251 ! Author: morhetz <morhetz@gmail.com>
4252 ! Source: https://github.com/morhetz/gruvbox-generalized
4253 ! Last Modified: 6 Sep 2014
4254 ! -----------------------------------------------------------------------------
4255
4256 ! hard contrast: *background: #f9f5d7
4257 *background: #fbf1c7
4258 ! soft contrast: *background: #f2e5bc
4259 *foreground: #3c3836
4260 ! Black + DarkGrey
4261 *color0: #fdf4c1
4262 *color8: #928374
4263 ! DarkRed + Red
4264 *color1: #cc241d
4265 *color9: #9d0006
4266 ! DarkGreen + Green
4267 *color2: #98971a
4268 *color10: #79740e
4269 ! DarkYellow + Yellow
4270 *color3: #d79921
4271 *color11: #b57614
4272 ! DarkBlue + Blue
4273 *color4: #458588
4274 *color12: #076678
4275 ! DarkMagenta + Magenta
4276 *color5: #b16286
4277 *color13: #8f3f71
4278 ! DarkCyan + Cyan
4279 *color6: #689d6a
4280 *color14: #427b58
4281 ! LightGrey + White
4282 *color7: #7c6f64
4283 *color15: #3c3836
4284 #+end_src
4285
4286 #+begin_src conf-xdefaults :tangle no
4287 ! -----------------------------------------------------------------------------
4288 ! File: gruvbox-dark.xresources
4289 ! Description: Retro groove colorscheme generalized
4290 ! Author: morhetz <morhetz@gmail.com>
4291 ! Source: https://github.com/morhetz/gruvbox-generalized
4292 ! Last Modified: 6 Sep 2014
4293 ! -----------------------------------------------------------------------------
4294
4295 ! hard contrast: *background: #1d2021
4296 *background: #282828
4297 ! soft contrast: *background: #32302f
4298 *foreground: #ebdbb2
4299 ! Black + DarkGrey
4300 *color0: #282828
4301 *color8: #928374
4302 ! DarkRed + Red
4303 *color1: #cc241d
4304 *color9: #fb4934
4305 ! DarkGreen + Green
4306 *color2: #98971a
4307 *color10: #b8bb26
4308 ! DarkYellow + Yellow
4309 *color3: #d79921
4310 *color11: #fabd2f
4311 ! DarkBlue + Blue
4312 *color4: #458588
4313 *color12: #83a598
4314 ! DarkMagenta + Magenta
4315 *color5: #b16286
4316 *color13: #d3869b
4317 ! DarkCyan + Cyan
4318 *color6: #689d6a
4319 *color14: #8ec07c
4320 ! LightGrey + White
4321 *color7: #a89984
4322 *color15: #ebdbb2
4323 #+end_src
4324
4325 #+begin_src conf-xdefaults :tangle no
4326 ! -----------------------------------------------------------------------------
4327 ! File: gruvbox-urxvt256.xresources
4328 ! Description: Retro groove colorscheme generalized
4329 ! Author: morhetz <morhetz@gmail.com>
4330 ! Source: https://github.com/morhetz/gruvbox-generalized
4331 ! Last Modified: 13 Dec 2013
4332 ! -----------------------------------------------------------------------------
4333
4334 URxvt.color24: #076678
4335 URxvt.color66: #427b58
4336 URxvt.color88: #9d0006
4337 URxvt.color96: #8f3f71
4338 URxvt.color100: #79740e
4339 URxvt.color108: #8ec07c
4340 URxvt.color109: #83a598
4341 URxvt.color130: #af3a03
4342 URxvt.color136: #b57614
4343 URxvt.color142: #b8bb26
4344 URxvt.color167: #fb4934
4345 URxvt.color175: #d3869b
4346 URxvt.color208: #fe8019
4347 URxvt.color214: #fabd2f
4348 URxvt.color223: #ebdbb2
4349 URxvt.color228: #f2e5bc
4350 URxvt.color229: #fbf1c7
4351 URxvt.color230: #f9f5d7
4352 URxvt.color234: #1d2021
4353 URxvt.color235: #282828
4354 URxvt.color236: #32302f
4355 URxvt.color237: #3c3836
4356 URxvt.color239: #504945
4357 URxvt.color241: #665c54
4358 URxvt.color243: #7c6f64
4359 URxvt.color244: #928374
4360 URxvt.color245: #928374
4361 URxvt.color246: #a89984
4362 URxvt.color248: #bdae93
4363 URxvt.color250: #d5c4a1
4364 #+end_src
4365
4366 ***** emacs
4367 :PROPERTIES:
4368 :header-args+: :tangle (when (eq system-type 'gnu/linux) "~/.Xresources.d/emacs")
4369 :END:
4370
4371 #+begin_src conf-xdefaults
4372 Emacs.menuBar: off
4373 Emacs.toolBar: off
4374 Emacs.verticalScrollBars: off
4375 Emacs.cursorBlink: off
4376 Emacs.FontBackend: xft,x
4377 ! Emacs.font: Ubuntu Mono-12
4378 ! Emacs.font: Triplicate T4C-11
4379 ! Emacs.font: Ubuntu Mono-10.5
4380 ! Emacs.font: Ubuntu Mono-12
4381 ! Emacs.font: Iosevka-11
4382
4383 ! Emacs.font: Fira Mono:size=15
4384 ! Emacs.font: DejaVu Sans Mono:size=15
4385 ! Emacs.font: Inconsolata:size=17
4386 ! Emacs.font: Inconsolata:size=16
4387 ! Emacs.font: Inconsolata LGC:size=14
4388 ! Emacs.font: Source Code Pro Medium-10.5
4389 Emacs.font: Ubuntu Mono:size=16
4390 ! Emacs.font: Iosevka:size=16
4391 #+end_src
4392
4393 ***** rxvt-unicode
4394 :PROPERTIES:
4395 :header-args+: :tangle (when (eq system-type 'gnu/linux) "~/.Xresources.d/rxvt-unicode")
4396 :END:
4397
4398 #+begin_src conf-xdefaults
4399 ! Font
4400 URxvt.font: xft:ubuntu mono:pixelsize=16:antialias=true:hinting=true, xft:dejavu sans mono:pixelsize=15:antialias=true:hinting=true
4401 URxvt.boldFont: xft:ubuntu mono:pixelsize=16:antialias=true:hinting=true:bold, xft:dejavu sans mono:pixelsize=15:antialias=true:hinting=true:bold
4402 URxvt.italicFont: xft:ubuntu mono:pixelsize=16:antialias=true:hinting=true:italic, xft:dejavu sans mono:pixelsize=15:antialias=true:hinting=true:italic
4403 URxvt.bolditalicFont: xft:ubuntu mono:pixelsize=16:antialias=true:hinting=true:bold:italic, xft:dejavu sans mono:pixelsize=15:antialias=true:hinting=true:bolditalic
4404
4405 URxvt.xftAntialias: true
4406 URxvt.letterSpace: 0
4407
4408 URxvt.depth: 0
4409 URxvt.loginShell: true
4410 URxvt.saveLines: 100000
4411 URxvt.internalBorder: 3
4412 URxvt.lineSpace: 0
4413 URxvt.scrollBar: false
4414 URxvt.scrollStyle: rxvt
4415 URxvt*scrollTtyOutput: false
4416 URxvt*scrollWithBuffer: true
4417 URxvt*scrollTtyKeypress: true
4418 URxvt.keysym.Shift-Up: command:\033]720;1\007
4419 URxvt.keysym.Shift-Down: command:\033]721;1\007
4420
4421 URxvt.perl-ext-common: default,clipboard,url-select,keyboard-select
4422 URxvt.perl-ext: bidi
4423 URxvt.bidi.enabled: 1
4424 URxvt.url-select.launcher: firefox
4425 URxvt.url-select.underline: true
4426 URxvt.keysym.M-u: perl:url-select:select_next
4427 URxvt.keysym.M-Escape: perl:keyboard-select:activate
4428 URxvt.keysym.M-s: perl:keyboard-select:search
4429 URxvt.url-launcher: /usr/bin/firefox
4430 URxvt.matcher.button: 1
4431 URxvt.iso14755: false
4432 URxvt.iso14755_53: false
4433 URxvt.keysym.M-c: perl:clipboard:copy
4434 URxvt.keysym.M-v: perl:clipboard:paste
4435 URxvt.keysym.C-A-V: perl:clipboard:paste_escaped
4436 URxvt.keysym.C-Up: font-size:increase
4437 URxvt.keysym.C-Down: font-size:decrease
4438 URxvt.keysym.C-S-Up: font-size:incglobal
4439 URxvt.keysym.C-S-Down: font-size:decglobal
4440 URxvt.keysym.C-equal: font-size:reset
4441 !URxvt.keysym.C-question: font-size:show
4442
4443 URxvt.iconFile: /usr/share/icons/Paper/48x48/apps/utilities-terminal.png
4444
4445 !urxvt*foreground: white
4446 !urxvt*background: black
4447
4448 !*color0: #2E3436
4449 !*color1: #a40000
4450 !*color2: #4E9A06
4451 !*color3: #C4A000
4452 !*color4: #3465A4
4453 !*color5: #75507B
4454 !*color6: #ce5c00
4455 !*color7: #babdb9
4456 !*color8: #555753
4457 !*color9: #EF2929
4458 !*color10: #8AE234
4459 !*color11: #FCE94F
4460 !*color12: #729FCF
4461 !*color13: #AD7FA8
4462 !*color14: #fcaf3e
4463 !*color15: #EEEEEC
4464
4465 !URxvt.foreground: #C8C8C8
4466 !URxvt.background: #FFFFFF
4467
4468 !! black
4469 !*color0: #2E3436
4470 !*color8: #555753
4471 !! red
4472 !*color1: #a40000
4473 !*color9: #EF2929
4474 !! green
4475 !*color2: #4E9A06
4476 !*color10: #8AE234
4477 !! yellow
4478 !*color3: #C4A000
4479 !*color11: #FCE94F
4480 !! blue
4481 !*color4: #3465A4
4482 !*color12: #729FCF
4483 !! purple
4484 !*color5: #75507B
4485 !*color13: #AD7FA8
4486 !! orange (replaces cyan)
4487 !*color6: #ce5c00
4488 !*color14: #fcaf3e
4489 !! white
4490 !*color7: #babdb9
4491 !*color15: #EEEEEC
4492
4493 ! Tango colour theme for rxvt-unicode
4494 URxvt.background: #FFFFFF
4495 URxvt.foreground: #000000
4496
4497 ! Black
4498 URxvt.color0: #2E3436
4499 URxvt.color8: #757773
4500
4501 ! Red
4502 URxvt.color1: #CC0000
4503 URxvt.color9: #EF2929
4504
4505 ! Green
4506 URxvt.color2: #4E9A06
4507 URxvt.color10: #8AE234
4508
4509 ! Yellow
4510 URxvt.color3: #C4A000
4511 URxvt.color11: #FCE94F
4512
4513 ! Blue
4514 URxvt.color4: #3465A4
4515 URxvt.color12: #729FCF
4516
4517 ! Magenta
4518 URxvt.color5: #75507B
4519 URxvt.color13: #AD7FA8
4520
4521 !! Cyan
4522 !URxvt.color6: #06989A
4523 !URxvt.color14: #34E2E2
4524 ! orange (replaces cyan)
4525 *color6: #ce5c00
4526 *color14: #fcaf3e
4527
4528 ! White
4529 URxvt.color7: #D3D7CF
4530 URxvt.color15: #EEEEEC
4531 #+end_src
4532
4533 ** XDG
4534 :PROPERTIES:
4535 :header-args+: :tangle ~/.config/user-dirs.dirs
4536 :END:
4537
4538 #+begin_src conf
4539 XDG_DESKTOP_DIR="$HOME/Desktop"
4540 XDG_DOCUMENTS_DIR="$HOME/usr/docs"
4541 XDG_DOWNLOAD_DIR="$HOME/usr/dls"
4542 XDG_MUSIC_DIR="$HOME/usr/music"
4543 XDG_PICTURES_DIR="$HOME/usr/pics"
4544 XDG_PUBLICSHARE_DIR="$HOME/usr/Public"
4545 XDG_TEMPLATES_DIR="$HOME/usr/Templates"
4546 XDG_VIDEOS_DIR="$HOME/usr/vids"
4547 #+end_src
4548
4549 ** Zathura
4550 :PROPERTIES:
4551 :header-args+: :tangle ~/.config/zathura/zathurarc
4552 :END:
4553
4554 #+begin_src conf
4555 set smooth-scroll true
4556 set selection-clipboard clipboard
4557 set zoom-step 05
4558 set default-bg "#272727"
4559 set statusbar-bg "#272727"
4560 set inputbar-bg "#373737"
4561 #+end_src
4562
4563 ** Zsh
4564
4565 My zsh setup is built on [[https://github.com/zimfw/zimfw][Zim]]. Further, my zshrc references [[https://github.com/junegunn/fzf][fzf]],
4566 [[https://github.com/zsh-users/zsh-autosuggestions][zsh-autosuggestions]], and [[https://github.com/hlissner/zsh-autopair][zsh-autopair]]; so be sure to have them
4567 installed.
4568
4569 *** zimrc
4570 :PROPERTIES:
4571 :header-args+: :tangle ~/.zimrc
4572 :END:
4573
4574 #+begin_src sh
4575
4576
4577 #################
4578 # CORE SETTINGS #
4579 #################
4580
4581 #
4582 # Zim settings
4583 #
4584
4585 # Select what modules you would like enabled.
4586 # The second line of modules may depend on options set by modules in the first
4587 # line. These dependencies are noted on the respective module's README.md.
4588 zmodules=(directory environment git git-info history input ssh utility custom \
4589 syntax-highlighting history-substring-search prompt completion)
4590
4591
4592 ###################
4593 # MODULE SETTINGS #
4594 ###################
4595
4596 #
4597 # Prompt
4598 #
4599
4600 # Set your desired prompt here
4601 zprompt_theme='pure'
4602 #PURE_PROMPT_SYMBOL=λ
4603 #PURE_PROMPT_SYMBOL=δ
4604 PURE_PROMPT_SYMBOL=➜
4605
4606 #
4607 # Completion
4608 #
4609
4610 # set an optional host-specific filename for the completion cache file
4611 # if none is provided, the default '.zcompdump' is used.
4612 #zcompdump_file=".zcompdump-${HOST}-${ZSH_VERSION}"
4613
4614 #
4615 # Utility
4616 #
4617
4618 # Uncomment to enable command correction prompts
4619 # See: http://zsh.sourceforge.net/Doc/Release/Options.html#Input_002fOutput
4620 setopt CORRECT
4621
4622 #
4623 # Environment
4624 #
4625
4626 # Set the string below to the desired terminal title format string.
4627 # The terminal title is redrawn upon directory change, however, variables like
4628 # ${PWD} are only evaluated once. Use prompt expansion strings for dynamic data:
4629 # http://zsh.sourceforge.net/Doc/Release/Prompt-Expansion.html#Simple-Prompt-Escapes
4630 # The example below uses the following format: 'username@host:/current/directory'
4631 ztermtitle='%n@%m:%~'
4632
4633 #
4634 # Input
4635 #
4636
4637 # Uncomment to enable double-dot expansion.
4638 # This appends '../' to your input for each '.' you type after an initial '..'
4639 #zdouble_dot_expand='true'
4640
4641 #
4642 # Syntax-Highlighting
4643 #
4644
4645 # This determines what highlighters will be used with the syntax-highlighting module.
4646 # Documentation of the highlighters can be found here:
4647 # https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters.md
4648 # For (u)rxvt, termite and gnome-terminal users,
4649 # removing the 'cursor' highlighter will fix the disappearing cursor problem
4650 #zhighlighters=(main brackets cursor)
4651 zhighlighters=(main brackets pattern)
4652
4653
4654 #
4655 # SSH
4656 #
4657
4658 # Load these ssh identities with the ssh module
4659 zssh_ids=(id_rsa plasma_id_rsa id_ed25519 id_rsa_aur)
4660
4661
4662 #
4663 # Pacman
4664 #
4665
4666 # Set (optional) pacman front-end.
4667 zpacman_frontend='yay'
4668
4669 # Load any helper scripts as defined here
4670 #zpacman_helper=(aur)
4671 #+end_src
4672
4673 *** zlogin
4674 :PROPERTIES:
4675 :header-args+: :tangle ~/.zlogin
4676 :END:
4677
4678 #+begin_src sh
4679
4680
4681 #
4682 # User configuration sourced by login shells
4683 #
4684
4685 # Initialize zim
4686 [[ -s ${ZIM_HOME}/login_init.zsh ]] && source ${ZIM_HOME}/login_init.zsh
4687 #+end_src
4688
4689 *** zprofile
4690 :PROPERTIES:
4691 :header-args+: :tangle ~/.zprofile
4692 :END:
4693
4694 #+begin_src sh
4695 #PATH="$(ruby -e 'print Gem.user_dir')/bin:$PATH"
4696 #PATH=$HOME/.gem/ruby/2.4.0/bin:$PATH
4697 export PATH=$HOME/.local/bin:$HOME/.cabal/bin:$HOME/.cargo/bin:$HOME/.elan/bin:$PATH
4698 export XDG_CONFIG_HOME=$HOME/.config
4699 export XDG_DATA_HOME=$HOME/.local/share
4700 export XDG_DATA_DIRS=/usr/local/share:/usr/share
4701 export MAILDIR="$HOME/mail"
4702 export CVS_RSH=ssh
4703 #export MATHMODELS=$HOME/src/eiffel/mathmodels
4704 #export RUST_SRC_PATH=~/.multirust/toolchains/stable-x86_64-unknown-linux-gnu/lib/rustlib/src/rust/src
4705 #export PATH=$PATH:$HOME/.rustup/toolchains/nightly-x86_64-unknown-linux-gnu/bin/
4706
4707 # Eiffel2Java stuff
4708 #export JAVA_HOME=/usr/lib/jvm/default
4709 #export CPATH=$CPATH:"$JAVA_HOME/include:$JAVA_HOME/include/linux"
4710 #export LIBRARY_PATH=$LIBRARY_PATH:"$JAVA_HOME/jre/lib/amd64/server"
4711 #export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:"$JAVA_HOME/jre/lib/amd64/server"
4712
4713 #export PATH="$HOME/usr/build/pvs:$PATH"
4714 #export SBCLISP_HOME=/usr/share/sbcl-source
4715 #export PVS_LIBRARY_PATH="$HOME/usr/build/pvs/nasalib"
4716
4717 export MOZ_USE_XINPUT2=1 # precise scrolling in firefox
4718
4719 #export JAVA_HOME=/usr/lib/jvm/java-8-openjdk
4720 #export ANDROID_JACK_VM_ARGS="-Dfile.encoding=UTF-8 -XX:+TieredCompilation -Xmx4G"
4721
4722 if [ -e /home/amin/.nix-profile/etc/profile.d/nix.sh ]; then . /home/amin/.nix-profile/etc/profile.d/nix.sh; fi # added by Nix installer
4723 #+end_src
4724
4725 *** zshenv
4726 :PROPERTIES:
4727 :header-args+: :tangle ~/.zshenv
4728 :END:
4729
4730 #+begin_src sh
4731 # Ensure that a non-login, non-interactive shell has a defined environment.
4732 if [[ "$SHLVL" -eq 1 && ! -o LOGIN && -s "${ZDOTDIR:-$HOME}/.zprofile" ]]; then
4733 source "${ZDOTDIR:-$HOME}/.zprofile"
4734 fi
4735 #+end_src
4736
4737 *** zshrc
4738 :PROPERTIES:
4739 :header-args+: :tangle ~/.zshrc
4740 :END:
4741
4742 #+begin_src sh
4743 # Bash-like navigation
4744 #export WORDCHARS='*?_-.[]~=&;!#$%^(){}<>'
4745 #export WORDCHARS='*?-[]~=&;!#$%^(){}<>'
4746 export WORDCHARS='*?[]~=&;!#$%^(){}<>'
4747 #ZLE_SPACE_SUFFIX_CHARS=$'|&'
4748
4749 #disable -r time # disable shell reserved word
4750 #alias time='time -p' # -p for POSIX output
4751
4752 # rehash if last command was pacaur or pacman
4753 # (so that zsh picks up changes in $PATH immediately)
4754 TRAPUSR1() { rehash}; precmd() { [[ $history[$[ HISTCMD -1 ]] == *(pacaur|pacman)* ]] && killall -USR1 zsh }
4755
4756 #
4757 # User configuration sourced by interactive shells
4758 #
4759
4760 # Change default zim location
4761 export ZIM_HOME=${ZDOTDIR:-${HOME}}/.zim
4762
4763 # Start zim
4764 [[ -s ${ZIM_HOME}/init.zsh ]] && source ${ZIM_HOME}/init.zsh
4765
4766 ZSH_HIGHLIGHT_PATTERNS+=('rm -rf *' 'fg=white,bold,bg=red')
4767 #ZSH_HIGHLIGHT_STYLES[unknown-token]='fg=red,bold'
4768
4769 setopt globdots
4770
4771 source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
4772 source ~/.zsh/zsh-autopair/autopair.zsh
4773
4774
4775 ### fzf ###
4776
4777 source /usr/share/fzf/key-bindings.zsh
4778 source /usr/share/fzf/completion.zsh
4779
4780 # Accept history selection instead of putting it on
4781 # the command line
4782 fzf-history-widget-accept() {
4783 fzf-history-widget
4784 zle accept-line
4785 }
4786 #zle -N fzf-history-widget-accept
4787 #bindkey '^R' fzf-history-widget-accept
4788
4789 # alt+c preview
4790 export FZF_ALT_C_OPTS="--preview 'tree -C {} | head -200'"
4791
4792 ### fzf ###
4793
4794
4795 # aliases
4796 alias mpv="mpv --ytdl-format mp4"
4797 alias mv="mv -iv"
4798 alias cp="cp -iv"
4799 alias scl=systemctl
4800 alias jcl=journalctl
4801 alias m="mbsync -Va; getmail; notmuch new"
4802 alias best="youtube-dl -f best"
4803 alias nixx="ssh amin@nix.aminb.org"
4804 alias fence="ssh aminb@fencepost.gnu.org"
4805
4806 aur() {
4807 cd ~/usr/build
4808 git clone https://aur.archlinux.org/${1}.git
4809 cd ${1}
4810 }
4811
4812 # i-beam cursor
4813 echo -e "\033[5 q"
4814 #echo -e "\033[6 q"
4815 #+end_src
4816
4817 * Scripts
4818
4819 This section contains various useful scripts and the ones used by the
4820 programs above. For instance, =toggle-tablet= for switching to and
4821 from tablet mode on my X220T, =toggle-presentation-mode= for toggling
4822 Xfce's presentation mode which keeps the screen awake, and
4823 =rofi-light= a small utility that uses [[https://github.com/DaveDavenport/rofi][Rofi]] to ask and [[https://github.com/haikarainen/light][light]] to set an
4824 exact brightness value.
4825
4826 ** rofi-light
4827 :PROPERTIES:
4828 :header-args+: :tangle ~/.local/bin/rofi-light :shebang "#!/bin/bash"
4829 :END:
4830
4831 #+begin_src bash
4832 cur=$(light -G)
4833 val=$(rofi -dmenu -mesg "light $cur" -p "light -S " -l 0 -width 12)
4834 light -S $val
4835 #+end_src
4836
4837 ** s (run sway)
4838 :PROPERTIES:
4839 :header-args+: :tangle ~/.local/bin/s :shebang "#!/bin/bash"
4840 :END:
4841
4842 #+begin_src bash
4843 export XKB_DEFAULT_OPTIONS=ctrl:nocaps,altwin:swap_alt_win,ctrl:rctrl_ralt
4844 export _JAVA_AWT_WM_NONREPARENTING=1
4845 export _JAVA_OPTIONS='-Dawt.useSystemAAFontSettings=on -Dswing.aatext=true'
4846 light -Scrs "intel_backlight" 2
4847 source $HOME/.zprofile
4848 sway
4849 #+end_src
4850
4851 ** sway-ws-util
4852 :PROPERTIES:
4853 :header-args+: :tangle ~/.local/bin/sway-ws-util :shebang "#!/bin/bash"
4854 :END:
4855
4856 #+begin_src bash
4857 curr_ws=$(swaymsg -t get_workspaces | jq -r '.[] | select(.focused==true).name')
4858 [[ $curr_ws -eq 1 ]] && prev_ws=10 || prev_ws=$((curr_ws-1))
4859 [[ $curr_ws -eq 10 ]] && next_ws=1 || next_ws=$((curr_ws+1))
4860 dest_ws=-1
4861 op=-1
4862
4863 if [ "$1" = "switch" ] || [ "$1" = "move" ]; then
4864 op="$1"
4865 if [ "$2" = "prev" ]; then
4866 dest_ws="$prev_ws"
4867 elif [ "$2" = "next" ]; then
4868 dest_ws="$next_ws"
4869 else
4870 echo "Usage: $0 $1 {prev|next} [follow]"
4871 exit 1
4872 fi
4873 else
4874 echo "Usage: $0 {switch|move} {prev|next} [follow]"
4875 exit 1
4876 fi
4877
4878 if [ "$op" = "switch" ]; then
4879 sway workspace "$dest_ws"
4880 elif [ "$op" = "move" ]; then
4881 sway move container to workspace "$dest_ws"
4882 if [ "$3" = "follow" ]; then
4883 sway workspace "$dest_ws"
4884 fi
4885 fi
4886 #+end_src
4887
4888 ** toggle-layout
4889 :PROPERTIES:
4890 :header-args+: :tangle ~/.local/bin/toggle-layout :shebang "#!/bin/bash"
4891 :END:
4892
4893 #+begin_src bash
4894 lang="$(setxkbmap -print | grep xkb_symbols | cut -d'+' -f 2)"
4895
4896 if [ "$lang" = "us" ]; then
4897 setxkbmap ir
4898 else
4899 setxkbmap us
4900 # xmodmap $HOME/.Xmodmap
4901 fi
4902 #+end_src
4903
4904 ** toggle-presentation-mode
4905 :PROPERTIES:
4906 :header-args+: :tangle ~/.local/bin/toggle-presentation-mode :shebang "#!/bin/bash"
4907 :END:
4908
4909 #+begin_src bash
4910 xfconf-query -c xfce4-power-manager -p /xfce4-power-manager/presentation-mode -T
4911 #+end_src
4912
4913 ** toggle-tablet
4914 :PROPERTIES:
4915 :header-args+: :tangle ~/.local/bin/toggle-tablet :shebang "#!/bin/bash"
4916 :END:
4917
4918 This script toggles between a 'normal' mode and a 'tablet' mode, doing
4919 a few things:
4920
4921 - rotates the screen using =xrandr=, so that rotating the physical
4922 display of my X220t would have the laptop's battery on the right
4923 hand side,
4924 - enables touch screen,
4925 - properly rotates the stylus pen and touch screen pointers, and
4926 - toggles between RGB and Vertical BGR sub-pixel order.
4927
4928 #+begin_src bash
4929 case $(xfconf-query -c pointers -p /Wacom_ISDv4_E6_Pen_stylus/Properties/Wacom_Rotation) in
4930 0) # Screen is not rotated, we should rotate it right (90°)
4931 xrandr -o 3
4932 xfconf-query -c pointers -p /Wacom_ISDv4_E6_Pen_stylus/Properties/Wacom_Rotation -s 1
4933 xfconf-query -c pointers -p /Wacom_ISDv4_E6_Finger_touch/Properties/Device_Enabled -s 1
4934 xfconf-query -c pointers -p /Wacom_ISDv4_E6_Finger_touch/Properties/Wacom_Rotation -s 1
4935 xfconf-query -c xsettings -p /Xft/RGBA -s vbgr
4936 ;;
4937 1) # Currently top is rotated right, we should set it normal (0°)
4938 xrandr -o 0
4939 xfconf-query -c pointers -p /Wacom_ISDv4_E6_Pen_stylus/Properties/Wacom_Rotation -s 0
4940 xfconf-query -c pointers -p /Wacom_ISDv4_E6_Finger_touch/Properties/Wacom_Rotation -s 0
4941 xfconf-query -c pointers -p /Wacom_ISDv4_E6_Finger_touch/Properties/Device_Enabled -s 0
4942 xfconf-query -c xsettings -p /Xft/RGBA -s rgb
4943 ;;
4944 *)
4945 echo "Unknown result from 'xfconf-query -c pointers -p /Wacom_ISDv4_E6_Pen_stylus/Properties/Wacom_Rotation'" >&2
4946 exit 1
4947 ;;
4948 esac
4949 #+end_src
4950
4951 ** unlock-def-gk.py
4952 :PROPERTIES:
4953 :header-args+: :tangle ~/.local/bin/unlock-def-gk.py :shebang "#!/usr/bin/env python2"
4954 :END:
4955
4956 #+begin_src python
4957 import gnomekeyring as gk
4958 # list_item_ids_sync('login')[0] == 1L
4959 gk.unlock_sync('Default_keyring',gk.item_get_info_sync('login',1L).get_secret())
4960 #+end_src
4961
4962 ** wp
4963
4964 My little wallpaper changer script.
4965
4966 *** wp
4967 :PROPERTIES:
4968 :header-args+: :tangle ~/.local/bin/wp :shebang "#!/bin/bash"
4969 :END:
4970
4971 #+begin_src bash :tangle no
4972 export DISPLAY=:0
4973
4974 case "$1" in
4975 "day")
4976 feh --bg-scale $HOME/usr/pics/island_day_by_arsenixc-d6ctqon.jpg
4977 ;;
4978 "night")
4979 feh --bg-scale $HOME/usr/pics/island_night_by_arsenixc-d6cz757.jpg
4980 ;;
4981 *)
4982 echo $"Usage: $0 {day|night}"
4983 exit 1
4984 esac
4985 #+end_src
4986
4987 *** wp-auto
4988 :PROPERTIES:
4989 :header-args+: :tangle ~/.local/bin/wp-auto :shebang "#!/bin/bash"
4990 :END:
4991
4992 #+begin_src bash :tangle no
4993 SED=$(which sed)
4994 ROFI=$(which rofi)
4995
4996 export DISPLAY=:0
4997 HOUR=$(date +%H)
4998
4999 if [ -z "${SED}" ]
5000 then
5001 echo "Did not find 'sed', script cannot continue."
5002 exit 1
5003 fi
5004 if [ -z "${ROFI}" ]
5005 then
5006 echo "Did not find rofi, there is no point to continue."
5007 exit 1
5008 fi
5009
5010 ###
5011 # Create if not exists, then removes #include of .theme file (if present) and add the selected theme to the end.
5012 # Repeated calls should leave the config clean-ish
5013 ###
5014 function set_theme()
5015 {
5016 CDIR="${HOME}/.config/rofi/"
5017 if [ ! -d "${CDIR}" ]
5018 then
5019 mkdir -p ${CDIR}
5020 fi
5021 if [ -f "${CDIR}/config" ]
5022 then
5023 ${SED} -i "/rofi\.theme: .*\.rasi$/d" "${CDIR}/config"
5024 fi
5025 echo "rofi.theme: ${1}" >> "${CDIR}/config"
5026
5027 }
5028
5029 if [ "$HOUR" -gt "19" ] || [ "$HOUR" -lt "7" ]
5030 then
5031 feh --bg-scale $HOME/usr/pics/island_night_by_arsenixc-d6cz757.jpg
5032 xrdb -merge $HOME/.Xresources.d/gruvbox-dark.xresources
5033 set_theme "/usr/share/rofi/themes//gruvbox-dark.rasi"
5034 else
5035 feh --bg-scale $HOME/usr/pics/island_day_by_arsenixc-d6ctqon.jpg
5036 xrdb -merge $HOME/.Xresources.d/gruvbox-light.xresources
5037 set_theme "/usr/share/rofi/themes//gruvbox-light.rasi"
5038 fi
5039 #+end_src
5040
5041 *** wp.service
5042 :PROPERTIES:
5043 :header-args+: :tangle ~/.config/systemd/user/wp.service
5044 :END:
5045
5046 #+begin_src conf :tangle no
5047 [Unit]
5048 Description=wallpaper service
5049
5050 [Service]
5051 Type=oneshot
5052 ExecStart=/usr/bin/bash -c %h/.local/bin/wp-auto
5053 #+end_src
5054
5055 *** wp.timer
5056 :PROPERTIES:
5057 :header-args+: :tangle ~/.config/systemd/user/wp.timer
5058 :END:
5059
5060 #+begin_src conf :tangle no
5061 [Unit]
5062 [Unit]
5063 Description=wallpaper timer
5064
5065 [Timer]
5066 OnCalendar=07,21:00
5067 Unit=wp.service
5068 Persistent=true
5069
5070 [Install]
5071 WantedBy=timers.target
5072 #+end_src
5073
5074 ** zathura-sync.sh
5075 :PROPERTIES:
5076 :header-args+: :tangle ~/.local/bin/zathura-sync.sh :shebang "#!/bin/sh"
5077 :END:
5078
5079 #+begin_src sh
5080 pos="$1"
5081 pdffile="$2"
5082 zathura --synctex-forward "$pos" "$pdffile" || \
5083 (
5084 zathura -x "emacsclient --eval '(progn (switch-to-buffer (file-name-nondirectory \"%{input}\")) (goto-line %{line}))'" "$pdffile" &
5085 sleep 1; zathura --synctex-forward "$pos" "$pdffile" )
5086 #+end_src
5087 ** Fun :)
5088
5089 *** eat-em
5090 :PROPERTIES:
5091 :header-args+: :tangle ~/.local/bin/eat-em :shebang "#!/bin/sh"
5092 :END:
5093
5094 #+begin_src sh
5095 # Original Posted at http://crunchbang.org/forums/viewtopic.php?pid=126921%23p126921#p126921
5096 # [ESC] character in original post removed here.
5097
5098 # ANSI Color -- use these variables to easily have different color
5099 # and format output. Make sure to output the reset sequence after
5100 # colors (f = foreground, b = background), and use the 'off'
5101 # feature for anything you turn on.
5102
5103 initializeANSI()
5104 {
5105 esc="$(echo -en '\e')"
5106
5107 blackf="${esc}[30m"; redf="${esc}[31m"; greenf="${esc}[32m"
5108 yellowf="${esc}[33m" bluef="${esc}[34m"; purplef="${esc}[35m"
5109 cyanf="${esc}[36m"; whitef="${esc}[37m"
5110
5111 blackb="${esc}[40m"; redb="${esc}[41m"; greenb="${esc}[42m"
5112 yellowb="${esc}[43m" blueb="${esc}[44m"; purpleb="${esc}[45m"
5113 cyanb="${esc}[46m"; whiteb="${esc}[47m"
5114
5115 boldon="${esc}[1m"; boldoff="${esc}[22m"
5116 italicson="${esc}[3m"; italicsoff="${esc}[23m"
5117 ulon="${esc}[4m"; uloff="${esc}[24m"
5118 invon="${esc}[7m"; invoff="${esc}[27m"
5119
5120 reset="${esc}[0m"
5121 }
5122
5123 # note in this first use that switching colors doesn't require a reset
5124 # first - the new color overrides the old one.
5125
5126 #clear
5127
5128 initializeANSI
5129
5130 cat << EOF
5131
5132 ${yellowf} ▄███████▄${reset} ${redf} ▄██████▄${reset} ${greenf} ▄██████▄${reset} ${bluef} ▄██████▄${reset} ${purplef} ▄██████▄${reset} ${cyanf} ▄██████▄${reset}
5133 ${yellowf}▄█████████▀▀${reset} ${redf}▄${whitef}█▀█${redf}██${whitef}█▀█${redf}██▄${reset} ${greenf}▄${whitef}█▀█${greenf}██${whitef}█▀█${greenf}██▄${reset} ${bluef}▄${whitef}█▀█${bluef}██${whitef}█▀█${bluef}██▄${reset} ${purplef}▄${whitef}█▀█${purplef}██${whitef}█▀█${purplef}██▄${reset} ${cyanf}▄${whitef}█▀█${cyanf}██${whitef}█▀█${cyanf}██▄${reset}
5134 ${yellowf}███████▀${reset} ${redf}█${whitef}▄▄█${redf}██${whitef}▄▄█${redf}███${reset} ${greenf}█${whitef}▄▄█${greenf}██${whitef}▄▄█${greenf}███${reset} ${bluef}█${whitef}▄▄█${bluef}██${whitef}▄▄█${bluef}███${reset} ${purplef}█${whitef}▄▄█${purplef}██${whitef}▄▄█${purplef}███${reset} ${cyanf}█${whitef}▄▄█${cyanf}██${whitef}▄▄█${cyanf}███${reset}
5135 ${yellowf}███████▄${reset} ${redf}████████████${reset} ${greenf}████████████${reset} ${bluef}████████████${reset} ${purplef}████████████${reset} ${cyanf}████████████${reset}
5136 ${yellowf}▀█████████▄▄${reset} ${redf}██▀██▀▀██▀██${reset} ${greenf}██▀██▀▀██▀██${reset} ${bluef}██▀██▀▀██▀██${reset} ${purplef}██▀██▀▀██▀██${reset} ${cyanf}██▀██▀▀██▀██${reset}
5137 ${yellowf} ▀███████▀${reset} ${redf}▀ ▀ ▀ ▀${reset} ${greenf}▀ ▀ ▀ ▀${reset} ${bluef}▀ ▀ ▀ ▀${reset} ${purplef}▀ ▀ ▀ ▀${reset} ${cyanf}▀ ▀ ▀ ▀${reset}
5138
5139 ${boldon}${yellowf} ▄███████▄ ${redf} ▄██████▄ ${greenf} ▄██████▄ ${bluef} ▄██████▄ ${purplef} ▄██████▄ ${cyanf} ▄██████▄${reset}
5140 ${boldon}${yellowf}▄█████████▀▀ ${redf}▄${whitef}█▀█${redf}██${whitef}█▀█${redf}██▄ ${greenf}▄${whitef}█▀█${greenf}██${whitef}█▀█${greenf}██▄ ${bluef}▄${whitef}█▀█${bluef}██${whitef}█▀█${bluef}██▄ ${purplef}▄${whitef}█▀█${purplef}██${whitef}█▀█${purplef}██▄ ${cyanf}▄${whitef}█▀█${cyanf}██${whitef}█▀█${cyanf}██▄${reset}
5141 ${boldon}${yellowf}███████▀ ${redf}█${whitef}▄▄█${redf}██${whitef}▄▄█${redf}███ ${greenf}█${whitef}▄▄█${greenf}██${whitef}▄▄█${greenf}███ ${bluef}█${whitef}▄▄█${bluef}██${whitef}▄▄█${bluef}███ ${purplef}█${whitef}▄▄█${purplef}██${whitef}▄▄█${purplef}███ ${cyanf}█${whitef}▄▄█${cyanf}██${whitef}▄▄█${cyanf}███${reset}
5142 ${boldon}${yellowf}███████▄ ${redf}████████████ ${greenf}████████████ ${bluef}████████████ ${purplef}████████████ ${cyanf}████████████${reset}
5143 ${boldon}${yellowf}▀█████████▄▄ ${redf}██▀██▀▀██▀██ ${greenf}██▀██▀▀██▀██ ${bluef}██▀██▀▀██▀██ ${purplef}██▀██▀▀██▀██ ${cyanf}██▀██▀▀██▀██${reset}
5144 ${boldon}${yellowf} ▀███████▀ ${redf}▀ ▀ ▀ ▀ ${greenf}▀ ▀ ▀ ▀ ${bluef}▀ ▀ ▀ ▀ ${purplef}▀ ▀ ▀ ▀ ${cyanf}▀ ▀ ▀ ▀${reset}
5145
5146 EOF
5147 #+end_src
5148
5149 *** invade-em
5150 :PROPERTIES:
5151 :header-args+: :tangle ~/.local/bin/invade-em :shebang "#!/bin/bash"
5152 :END:
5153
5154 #+begin_src bash
5155 #
5156 # ANSI color scheme script featuring Space Invaders
5157 #
5158 # Original: http://crunchbang.org/forums/viewtopic.php?pid=126921%23p126921#p126921
5159 # Modified by lolilolicon
5160 #
5161
5162 f=3 b=4
5163 for j in f b; do
5164 for i in {0..7}; do
5165 printf -v $j$i %b "\e[${!j}${i}m"
5166 done
5167 done
5168 bld=$'\e[1m'
5169 rst=$'\e[0m'
5170
5171 cat << EOF
5172
5173 $f1 ▀▄ ▄▀ $f2 ▄▄▄████▄▄▄ $f3 ▄██▄ $f4 ▀▄ ▄▀ $f5 ▄▄▄████▄▄▄ $f6 ▄██▄ $rst
5174 $f1 ▄█▀███▀█▄ $f2███▀▀██▀▀███ $f3▄█▀██▀█▄ $f4 ▄█▀███▀█▄ $f5███▀▀██▀▀███ $f6▄█▀██▀█▄$rst
5175 $f1█▀███████▀█ $f2▀▀███▀▀███▀▀ $f3▀█▀██▀█▀ $f4█▀███████▀█ $f5▀▀███▀▀███▀▀ $f6▀█▀██▀█▀$rst
5176 $f1▀ ▀▄▄ ▄▄▀ ▀ $f2 ▀█▄ ▀▀ ▄█▀ $f3▀▄ ▄▀ $f4▀ ▀▄▄ ▄▄▀ ▀ $f5 ▀█▄ ▀▀ ▄█▀ $f6▀▄ ▄▀$rst
5177
5178 $bld$f1▄ ▀▄ ▄▀ ▄ $f2 ▄▄▄████▄▄▄ $f3 ▄██▄ $f4▄ ▀▄ ▄▀ ▄ $f5 ▄▄▄████▄▄▄ $f6 ▄██▄ $rst
5179 $bld$f1█▄█▀███▀█▄█ $f2███▀▀██▀▀███ $f3▄█▀██▀█▄ $f4█▄█▀███▀█▄█ $f5███▀▀██▀▀███ $f6▄█▀██▀█▄$rst
5180 $bld$f1▀█████████▀ $f2▀▀▀██▀▀██▀▀▀ $f3▀▀█▀▀█▀▀ $f4▀█████████▀ $f5▀▀▀██▀▀██▀▀▀ $f6▀▀█▀▀█▀▀$rst
5181 $bld$f1 ▄▀ ▀▄ $f2▄▄▀▀ ▀▀ ▀▀▄▄ $f3▄▀▄▀▀▄▀▄ $f4 ▄▀ ▀▄ $f5▄▄▀▀ ▀▀ ▀▀▄▄ $f6▄▀▄▀▀▄▀▄$rst
5182
5183
5184 $f7▌$rst
5185
5186 $f7▌$rst
5187
5188 $f7 ▄█▄ $rst
5189 $f7▄█████████▄$rst
5190 $f7▀▀▀▀▀▀▀▀▀▀▀$rst
5191
5192 EOF
5193 #+end_src