]> Git — Sourcephile - julm/julm-nix.git/blob - home-manager/profiles/bash.nix
bash: tweak aliases
[julm/julm-nix.git] / home-manager / profiles / bash.nix
1 { pkgs, lib, ... }:
2 with lib;
3 {
4 programs.bash = {
5 enable = mkDefault true;
6 enableCompletion = mkDefault true;
7 shellAliases = {
8 afk = "xset s activate dpms force off";
9 black-on-white = "echo -e '\\033]11;black\\007\\033]10;white\\007'";
10 c = "bat";
11 cl = "clear";
12 d = "sudo resolvectl";
13 dust = "dust --bars-on-right --full-paths";
14 emacs = "emacsclient --create-frame";
15 grep = "grep --color";
16 du = "du --apparent-size"; # ExplanationNote: shows the size __before__ ZFS' compression.
17 j = "jj"; # jujutsu
18 jnl-b = "sudo journalctl -b";
19 jnl-f = "sudo journalctl -f -u";
20 jnl-f200 = "sudo journalctl -f -n 200 -u";
21 jnl-ftoday = "sudo journalctl -f --since today -u";
22 lu = "journalctl --user -u";
23 l = "ls -alh";
24 ll = "ls -al";
25 ls = "ls --color=tty";
26 lst = "ls --sort=time --reverse -1";
27 md-toc = "grep '^#\\+' --color";
28 mem = "ps -e -orss=,user=,args= | sort -b -k1,1n";
29 mem-top = "smem --sort rss --autosize";
30 mpl = "mplayer";
31 n = "sudo networkctl";
32 nf = "sudo nft list ruleset | less";
33 nix-du-svg = "nix-du | dot -Tsvg >nix-du.svg";
34 nixos-clean = "sudo nix-collect-garbage -d";
35 nixos-history = "sudo nix-env --list-generations --profile /nix/var/nix/profiles/system";
36 nixos-rollback = "sudo nixos-rebuild switch --rollback";
37 nt = "sudo networkctl status";
38 pass-gen = "tr -d -C A-Za-z0-9_- </dev/urandom | head -c";
39 r = "reset";
40 rot13 = "tr A-Za-z N-ZA-Mn-za-m";
41 rot135 = "tr A-Za-z0-9 N-ZA-Mn-za-m5-90-4";
42 rsync = "rsync --no-inc-recursive --info=progress2 --inplace --partial";
43 s = "sudo systemctl";
44 sr = "sudo systemctl restart";
45 ssh-unknown = "ssh -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null";
46 st = "sudo systemctl status";
47 smt-on = "echo on | sudo tee /sys/devices/system/cpu/smt/control";
48 smt-off = "echo off | sudo tee /sys/devices/system/cpu/smt/control";
49 t = "tmux";
50 t0 = "tmux new -t 0";
51 t1 = "tmux new -t 1";
52 t2 = "tmux new -t 2";
53 theme-black-on-white = "echo -e '\\033]10;black\\007\\033]11;white\\007'";
54 theme-white-on-black = "echo -e '\\033]10;white\\007\\033]11;black\\007'";
55 u = "systemctl --user";
56 ud = "resolvectl";
57 ur = "systemctl --user restart";
58 ut = "systemctl --user status";
59 w = "watch --color --differences";
60 w1 = "watch --color --differences --interval 1";
61 w10 = "watch --color --differences --interval 10";
62 w5 = "watch --color --differences --interval 5";
63 watch = "watch --color --differences";
64 z = "zfs";
65 ze = "sudo zpool export";
66 zfs-umount = "zfs-unmount";
67 zi = "sudo zpool import";
68 zl = "zfs list";
69 zlb = "zfs list -t bookmarks";
70 zls = "zfs list -t snap";
71 zm = "zfs-mount";
72 zp = "sudo zpool";
73 zs = "zpool status";
74 zs5 = "w5 zpool status";
75 zu = "zfs-unmount";
76 };
77 historyControl = [
78 "erasedups"
79 "ignorespace"
80 ];
81 historyIgnore = [
82 "torify"
83 "mpv"
84 ];
85 historySize = 42000;
86 sessionVariables = {
87 PS1 = ''\[\033[1;32m\]\[\e]0;\u@\h: \w\a\]\W\[\033[0m\] \$(e=\$?; if [ \$e != 0 ]; then echo '\[\e[0;91m\]'\$e'\[\e[0m\]'; fi)\$ '';
88 # More throughput than chacha20-poly1305@openssh.com
89 # on hardware with AES acceleration.
90 RSYNC_RSH = "ssh -c aes128-gcm@openssh.com,chacha20-poly1305@openssh.com";
91 };
92 initExtra = ''
93 # Alias completion
94 . ${pkgs.complete-alias}/bin/complete_alias
95 complete -F _complete_alias "''${!BASH_ALIASES[@]}"
96
97 shopt -s globstar
98 shopt -s histappend
99 shopt -s histreedit
100 shopt -s histverify
101 # Disable ctrl-s/ctrl-q flow control
102 stty -ixon
103
104 ffmpeg-audio () {
105 for i in "$@"; do
106 ffmpeg -i "$i" -vn -map 0:a -acodec copy "''${i%.*}".audio-only.mkv
107 done
108 }
109 ffmpeg-mp3 () {
110 for i in "$@"; do
111 ffmpeg -i "$i" -vn -map 0:a -c:a libmp3lame -qscale:a 3 "''${i%.*}".mp3
112 done
113 }
114 ffmpeg-opus () {
115 for i in "$@"; do
116 ffmpeg -i "$i" -vn -map 0:a -c:a libopus -b:a 64k -application voip "''${i%.*}".opus
117 done
118 }
119 opusenc-voice () {
120 find "$@" -depth -type f -print0 | sort -n -z |
121 xargs -0 -P "$(lscpu --online -p | grep -v "#" | wc -l)" -I {} bash -c '
122 test -e "''${0%.*}".opus ||
123 nice -n 19 ffmpeg -y -i "$0" -map 0:a -b:a 32k -application voip "''${0%.*}".opus
124 ' {} \;
125 }
126 ibm-fan () {
127 if [ $# -gt 0 ]
128 then sudo tee /proc/acpi/ibm/fan <<<"level $1"
129 else grep '^\(level\|speed\):' /proc/acpi/ibm/fan
130 fi
131 acpi -t
132 }
133 mkcd () {
134 mkdir -p "$1" &&
135 cd "$1"
136 }
137 mkpass () {
138 tr -d -C 'A-Za-z0-9' </dev/urandom | head -c 25 | xclip
139 }
140 smartctl-tbw () {
141 device=''${1:-/dev/sda}
142 sudo smartctl -A $device |
143 { awk '
144 $0 ~ /Power_On_Hours/ {
145 poh=$10;
146 printf "%s / %d hours / %d days / %.2f years\n", $2, $10, $10 / 24, $10 / 24 / 365.25
147 }
148 $0 ~ /Total_LBAs_Written/ {
149 lbas = $10;
150 bytes = $10 * 512;
151 mb = bytes / 1024^2;
152 gb = bytes / 1024^3;
153 tb = bytes / 1024^4;
154 printf "%s / %s / %d mb / %.1f gb / %.3f tb\n", $2, $10, mb, gb, tb
155 printf "mean writes per hour / %.2f", mb/poh
156 }
157 $0 ~ /Airflow_Temperature_Cel/ { print $2 " / " $10}
158 $0 ~ /Wear_Leveling_Count/ { printf "%s / %d (%% health)\n", $2, int($4) }
159 $0 ~ /Percentage Used:/ { printf "Percentage_Used / %d\n", int($3) }
160 '; echo; } |
161 sed -e 's:/:@:' |
162 sed -e "s\$^\$$device @ \$" |
163 column -ts@
164 }
165 stress-mem() { fac="$1"; stress-ng --vm 1 --vm-keep --vm-bytes $(awk "/MemAvailable/{ printf \"%d\n\", \$2 * $fac; }" </proc/meminfo)k; }
166 sysenter() { srv="$1"; shift; nsenter -a -t "$(systemctl show --property MainPID --value "$srv")" "$@"; }
167 systrace() { srv="$1"; shift; strace -f -p "$(systemctl show --property MainPID --value "$srv")" "$@"; }
168 swaplist () {
169 lastpid=
170 swap=0
171 sudo grep -H '^Swap:' /proc/*/smaps 2>/dev/null |
172 while IFS=: read -r file x size x
173 do
174 pid=''${file#/proc/}
175 pid=''${pid%/smaps}
176 size=''${size% kB}
177 size=''${size##* }
178 if test "$pid" = "$lastpid"
179 then swap=$(( swap + size ))
180 else
181 if test "$swap" -gt 0
182 then printf "%u pid=%u cmd=%s\n" "$swap" "$lastpid" "$(tr '\000' ' ' </proc/"$lastpid"/cmdline)"
183 fi
184 if test "$pid" = self
185 then break
186 else
187 lastpid=$pid
188 swap=$size
189 fi
190 fi
191 done |
192 sort -nk1,1
193 }
194
195 # Recursively mount not-mounted dataset,
196 # loading their keys if needed.
197 zfs-mount () {
198 (
199 set -e
200 for d in $(zfs list -rH -o name "$@"); do
201 mountpoint /mnt/"$d" 2>/dev/null ||
202 sudo zfs mount -l "$d"
203 done
204 )
205 }
206 # Recursively unmount dataset,
207 # unloading their keys.
208 zfs-unmount () { sudo zfs unmount -u "$@"; }
209
210 # Create bookmarks for all the snapshots of the given datasets.
211 # Bookmarks are only useful on source datasets
212 # But syncoid --create-bookmark only creates
213 # a bookmark for the latest snapshot,
214 # possibly leaving the *_daily or *_monthly snapshots without a bookmark.
215 zfs-fix-bookmarks () {
216 local d
217 local -
218 set -x
219 for d in "$@"; do
220 for s in $(zfs list -Hrpt snapshot -o name "$d"); do
221 sudo zfs bookmark "$s" "''${s//@/#}"
222 done
223 done
224 }
225
226 # Restore the inheritance of encryptionroot,
227 # usually broken by zfs send --raw.
228 # Note that it needs to decrypt the datasets.
229 zfs-fix-encryptionroot () {
230 local d
231 zfs load-key "$1"
232 for d in $(zfs list -rHo name "$1" | tail -n +2); do
233 echo >&2 "$d"
234 test "$(zfs get -Ho value encryptionroot $d)" = "$1" ||
235 sudo zfs change-key -li "$d"
236 done
237 }
238
239 # Recursively remove all the snapshots of given datasets
240 zfs-destroy-snapshots () {
241 local d
242 for d in "$@"; do
243 zfs list -t snapshot -rHo name "$d" |
244 sudo xargs --no-run-if-empty -L1 zfs destroy
245 done
246 }
247 '';
248 profileExtra = '''';
249 };
250 home.packages = [
251 (pkgs.writeShellScriptBin "ffmpeg-split" (lib.readFile bash/ffmpeg-split.sh))
252 ];
253 #programs.broot.enableBashIntegration = true;
254 programs.readline = {
255 enable = mkDefault true;
256 includeSystemConfig = true;
257 bindings = {
258 # Up/Down
259 "\\e[A" = "history-search-backward";
260 "\\e[B" = "history-search-forward";
261 "\\eOA" = "history-search-backward";
262 "\\eOB" = "history-search-forward";
263
264 # Ctrl-Left/Ctrl-Right
265 "\\e[1;5C" = "forward-word";
266 "\\e[1;5D" = "backward-word";
267 "\\e[5C" = "forward-word";
268 "\\e[5D" = "backward-word";
269 "\\e\\e[C" = "forward-word";
270 "\\e\\e[D" = "backward-word";
271
272 # Home/End
273 "\\e[1~" = "beginning-of-line";
274 "\\e[4~" = "end-of-line";
275
276 # Delete/Insert
277 "\\e[3~" = "delete-char";
278 "\\e[2~" = "quoted-insert";
279
280 # For non RH/Debian xterm, can't hurt for RH/Debian xterm
281 "\\eOF" = "end-of-line";
282 "\\eOH" = "beginning-of-line";
283
284 # For freebsd console
285 "\\e[F" = "end-of-line";
286 "\\e[H" = "beginning-of-line";
287
288 # $if term=rxvt
289 "\\e[7~" = "beginning-of-line";
290 "\\e[8~" = "end-of-line";
291 "\\eOc" = "forward-word";
292 "\\eOd" = "backward-word";
293 # $endif
294 };
295 variables = {
296 # Be 8 bit clean.
297 input-meta = mkDefault true;
298 output-meta = mkDefault true;
299 colored-completion-prefix = mkDefault true;
300 colored-stats = mkDefault true; # Note that this may cause completion text blink in some terminals (e.g. xterm).
301 echo-control-characters = mkDefault true;
302 mark-symlinked-directories = mkDefault true;
303 menu-complete-display-prefix = mkDefault true;
304 show-all-if-ambiguous = mkDefault true;
305 show-all-if-unmodified = mkDefault true;
306 visible-stats = mkDefault false; # Append char to indicate type
307 enable-bracketed-paste = mkDefault true;
308 };
309 };
310 }