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