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