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