Commit | Line | Data |
---|---|---|
e0dbdb36 SK |
1 | # |
2 | ||
3 | d() { | |
4 | local -r word=$(fzf < /usr/share/dict/words) | |
5 | dict "$word" | |
6 | } | |
7 | ||
94df2def | 8 | shell_activity_report() { |
ec81fc0a | 9 | # TODO: optional concrete number output |
ec81fc0a | 10 | # TODO: optional combinations of granularities: hour, weekday, month, year |
d72bfd8f SK |
11 | local group_by="$1" |
12 | case "$group_by" in | |
13 | 'mon') ;; | |
14 | 'dow') ;; | |
15 | '') group_by='dow';; | |
16 | *) | |
957b0d4f | 17 | echo "Usage: $0 [mon|dow]" >&2 |
4b5a2977 | 18 | kill -INT $$ |
d72bfd8f | 19 | esac |
94df2def | 20 | history \ |
d72bfd8f SK |
21 | | awk -v group_by="$group_by" ' |
22 | function date2dow(y, m, d, _t, _i) { | |
23 | # Contract: | |
24 | # y > 1752, 1 <= m <= 12. | |
25 | # Source: | |
26 | # Sakamoto`s methods | |
27 | # https://en.wikipedia.org/wiki/Determination_of_the_day_of_the_week#Sakamoto%27s_methods | |
28 | _t[ 0] = 0 | |
29 | _t[ 1] = 3 | |
30 | _t[ 2] = 2 | |
31 | _t[ 3] = 5 | |
32 | _t[ 4] = 0 | |
33 | _t[ 5] = 3 | |
34 | _t[ 6] = 5 | |
35 | _t[ 7] = 1 | |
36 | _t[ 8] = 4 | |
37 | _t[ 9] = 6 | |
38 | _t[10] = 2 | |
39 | _t[11] = 4 | |
40 | y -= m < 3 | |
41 | _i = int(y + y/4 - y/100 + y/400 + _t[m - 1] + d) % 7 | |
42 | _i = _i == 0 ? 7 : _i # Make Sunday last | |
43 | return _i | |
44 | ||
45 | } | |
46 | ||
94df2def | 47 | { |
ec81fc0a SK |
48 | # NOTE: $2 & $3 are specific to oh-my-zsh history output |
49 | date = $2 | |
94df2def | 50 | time = $3 |
ec81fc0a SK |
51 | d_fields = split(date, d, "-") |
52 | t_fields = split(time, t, ":") | |
53 | if (t_fields && d_fields) { | |
54 | # +0 to coerce number from string | |
d72bfd8f | 55 | year = d[1] + 0 |
ec81fc0a | 56 | month = d[2] + 0 |
d72bfd8f | 57 | day = d[3] + 0 |
ec81fc0a | 58 | hour = t[1] + 0 |
d72bfd8f SK |
59 | dow = date2dow(year, month, day) |
60 | g = group_by == "mon" ? month : dow # dow is default | |
61 | c = count[g, hour]++ | |
94df2def | 62 | } |
ec81fc0a SK |
63 | if (c > max) |
64 | max = c | |
94df2def SK |
65 | } |
66 | ||
ec81fc0a | 67 | END { |
d72bfd8f SK |
68 | w[1] = "Monday" |
69 | w[2] = "Tuesday" | |
70 | w[3] = "Wednesday" | |
71 | w[4] = "Thursday" | |
72 | w[5] = "Friday" | |
73 | w[6] = "Saturday" | |
74 | w[7] = "Sunday" | |
75 | ||
ec81fc0a SK |
76 | m[ 1] = "January" |
77 | m[ 2] = "February" | |
78 | m[ 3] = "March" | |
79 | m[ 4] = "April" | |
80 | m[ 5] = "May" | |
81 | m[ 6] = "June" | |
82 | m[ 7] = "July" | |
83 | m[ 8] = "August" | |
84 | m[ 9] = "September" | |
85 | m[10] = "October" | |
86 | m[11] = "November" | |
87 | m[12] = "December" | |
d72bfd8f SK |
88 | |
89 | n = group_by == "mon" ? 12 : 7 # dow is default | |
90 | ||
91 | for (gid = 1; gid <= n; gid++) { | |
92 | group = group_by == "mon" ? m[gid] : w[gid] | |
93 | printf "%s\n", group; | |
94df2def | 94 | for (hour=0; hour<24; hour++) { |
d72bfd8f | 95 | c = count[gid, hour] |
ec81fc0a SK |
96 | printf " %2d ", hour |
97 | for (i = 1; i <= (c * 100) / max; i++) | |
94df2def SK |
98 | printf "|" |
99 | printf "\n" | |
100 | } | |
ec81fc0a SK |
101 | } |
102 | }' | |
94df2def SK |
103 | } |
104 | ||
d265cd11 SK |
105 | top_commands() { |
106 | history \ | |
107 | | awk ' | |
108 | { | |
109 | count[$4]++ | |
110 | } | |
111 | ||
112 | END { | |
113 | for (cmd in count) | |
114 | print count[cmd], cmd | |
115 | }' \ | |
116 | | sort -n -r -k 1 \ | |
117 | | head -50 \ | |
118 | | awk ' | |
119 | { | |
120 | cmd[NR] = $2 | |
121 | c = count[NR] = $1 + 0 # + 0 to coerce number from string | |
122 | if (c > max) | |
123 | max = c | |
124 | } | |
125 | ||
126 | END { | |
127 | for (i = 1; i <= NR; i++) { | |
128 | c = count[i] | |
129 | printf "%s %d ", cmd[i], c | |
130 | scaled = (c * 100) / max | |
131 | for (j = 1; j <= scaled; j++) | |
132 | printf "|" | |
133 | printf "\n" | |
134 | } | |
135 | }' \ | |
136 | | column -t | |
137 | } | |
138 | ||
c7de24d9 | 139 | # Top Disk-Using directories |
58bdbfbf | 140 | # TODO: Consider using numfmt instead of awk |
c7de24d9 SK |
141 | tdu() { |
142 | du "$1" \ | |
858aa230 SK |
143 | | sort -n -k 1 \ |
144 | | tail -50 \ | |
c7de24d9 SK |
145 | | awk ' |
146 | { | |
147 | size = $1 | |
148 | path = $0 | |
149 | sub("^" $1 "\t+", "", path) | |
150 | gb = size / 1024 / 1024 | |
151 | printf("%f\t%s\n", gb, path) | |
152 | }' \ | |
153 | | cut -c 1-115 | |
154 | } | |
155 | ||
27456eb6 SK |
156 | # Top Disk-Using Files |
157 | tduf() { | |
158 | find "$1" -type f -printf '%s\t%p\0' \ | |
858aa230 SK |
159 | | sort -z -n -k 1 \ |
160 | | tail -z -n 50 \ | |
27456eb6 SK |
161 | | gawk -v RS='\0' ' |
162 | { | |
163 | size = $1 | |
164 | path = $0 | |
165 | sub("^" $1 "\t+", "", path) | |
166 | gb = size / 1024 / 1024 / 1024 | |
167 | printf("%f\t%s\n", gb, path) | |
168 | }' | |
169 | } | |
170 | ||
909ece30 SK |
171 | # Most-recently modified file system objects |
172 | recent() { | |
68992a1d SK |
173 | # NOTES: |
174 | # - intentionally not quoting the parameters, so that some can be ignored | |
175 | # if not passed, rather than be passed to find as an empty string; | |
176 | # - %T+ is a GNU extension; | |
177 | # - gawk is able to split records on \0, while awk cannot. | |
909ece30 | 178 | find $@ -printf '%T@ %T+ %p\0' \ |
68992a1d | 179 | | tee >(gawk -v RS='\0' 'END { printf("[INFO] Total found: %d\n", NR); }') \ |
909ece30 SK |
180 | | sort -z -k 1 -n -r \ |
181 | | head -n "$(stty size | awk 'NR == 1 {print $1 - 5}')" -z \ | |
182 | | gawk -v RS='\0' ' | |
183 | { | |
184 | sub("^" $1 " +", "") # Remove epoch time | |
185 | sub("+", " ") # Blank-out the default separator | |
186 | sub("\\.[0-9]+", "") # Remove fractional seconds | |
187 | ||
188 | }' | |
909ece30 SK |
189 | } |
190 | ||
191 | recent_dirs() { | |
192 | recent "$1" -type d | |
193 | } | |
194 | ||
195 | recent_files() { | |
196 | recent "$1" -type f | |
197 | } | |
198 | ||
c7de24d9 SK |
199 | pa_def_sink() { |
200 | pactl info | awk '/^Default Sink:/ {print $3}' | |
201 | } | |
202 | ||
203 | void_pkgs() { | |
204 | curl "https://xq-api.voidlinux.org/v1/query/x86_64?q=$1" | jq '.data' | |
205 | } | |
206 | ||
207 | # Colorful man | |
208 | man() { | |
0c296cad SK |
209 | # mb: begin blink |
210 | # md: begin bold | |
211 | # me: end bold, blink and underline | |
212 | # | |
213 | # so: begin standout (reverse video) | |
214 | # se: end standout | |
215 | # | |
216 | # us: begin underline | |
217 | # ue: end underline | |
218 | ||
d93397a6 | 219 | LESS_TERMCAP_md=$'\e[01;30m' \ |
c7de24d9 | 220 | LESS_TERMCAP_me=$'\e[0m' \ |
c7de24d9 | 221 | LESS_TERMCAP_so=$'\e[01;44;33m' \ |
fc2ae05b | 222 | LESS_TERMCAP_se=$'\e[0m' \ |
d93397a6 | 223 | LESS_TERMCAP_us=$'\e[01;33m' \ |
fc2ae05b | 224 | LESS_TERMCAP_ue=$'\e[0m' \ |
c7de24d9 SK |
225 | command man "$@" |
226 | } | |
64ec9f23 SK |
227 | |
228 | experiment() { | |
4b5a2977 | 229 | cd "$(~/bin/experiment $@)" || kill -INT $$ |
64ec9f23 | 230 | } |
801dd7bd SK |
231 | |
232 | hump() { | |
2e8cf226 | 233 | ledit -l "$(stty size | awk '{print $2}')" ocaml $@ |
801dd7bd | 234 | } |
632b7c4a SK |
235 | |
236 | howto() { | |
0136ca23 | 237 | cat "$(find ~/Archives/Documents/HOWTOs -mindepth 1 -maxdepth 1 | sort | fzf)" |
632b7c4a | 238 | } |
f4e0bb58 | 239 | |
60e43329 SK |
240 | yt() { |
241 | local _yt_uri | |
242 | local _yt_id | |
243 | local _yt_title | |
244 | local _yt_dir | |
245 | ||
246 | _yt_uri="$1" | |
247 | _yt_id=$(youtube-dl --get-id "$_yt_uri") | |
248 | _yt_title=$(youtube-dl --get-title "$_yt_uri") | |
249 | _yt_dir="${DIR_YOUTUBE}/individual-videos/${_yt_title}--${_yt_id}" | |
250 | ||
251 | mkdir -p "$_yt_dir" | |
4b5a2977 | 252 | cd "$_yt_dir" || kill -INT $$ |
60e43329 SK |
253 | echo "$_yt_uri" > 'uri' |
254 | youtube-dl -c --write-description --write-info-json "$_yt_uri" | |
255 | } | |
256 | ||
f4e0bb58 SK |
257 | gh_fetch_repos() { |
258 | curl "https://api.github.com/$1/$2/repos?page=1&per_page=10000" | |
259 | } | |
260 | ||
261 | gh_clone() { | |
8aa18398 SK |
262 | gh_user_type="$1" |
263 | gh_user_name="$2" | |
264 | gh_dir="${DIR_GITHUB}/${gh_user_name}" | |
265 | mkdir -p "$gh_dir" | |
4b5a2977 | 266 | cd "$gh_dir" || kill -INT $$ |
8aa18398 | 267 | gh_fetch_repos "$gh_user_type" "$gh_user_name" \ |
f4e0bb58 SK |
268 | | jq --raw-output '.[] | select(.fork | not) | .git_url' \ |
269 | | parallel -j 25 \ | |
270 | git clone {} | |
271 | } | |
272 | ||
273 | gh_clone_user() { | |
274 | gh_clone 'users' "$1" | |
275 | } | |
276 | ||
277 | gh_clone_org() { | |
278 | gh_clone 'orgs' "$1" | |
279 | } | |
e09a8d5a | 280 | |
610785ef SK |
281 | gh_clone_repo() { |
282 | gh_username=$(echo "$1" | awk -F / '"$1 == "https" && $3 == github.com" {print $4}') | |
8aa18398 | 283 | gh_dir="${DIR_GITHUB}/${gh_username}" |
610785ef | 284 | mkdir -p "$gh_dir" |
4b5a2977 | 285 | cd "$gh_dir" || kill -INT $$ |
610785ef | 286 | git clone "$1" |
610785ef SK |
287 | } |
288 | ||
c45bdb58 SK |
289 | work_log_template() { |
290 | cat << EOF | |
d8da04c5 | 291 | $(date '+%F %A') |
c45bdb58 SK |
292 | ========== |
293 | ||
294 | Morning report | |
295 | -------------- | |
296 | ||
c44fbbc2 | 297 | ### Previous |
c45bdb58 | 298 | |
c44fbbc2 | 299 | ### Current |
c45bdb58 SK |
300 | |
301 | ### Blockers | |
302 | ||
303 | Day's notes | |
304 | ----------- | |
305 | EOF | |
306 | } | |
307 | ||
308 | work_log() { | |
309 | mkdir -p "$DIR_WORK_LOG" | |
310 | file_work_log_today="${DIR_WORK_LOG}/$(date +%F).md" | |
311 | if [ ! -f "$file_work_log_today" ] | |
312 | then | |
313 | work_log_template > "$file_work_log_today" | |
314 | fi | |
3008cd51 | 315 | vim -c 'set spell' "$file_work_log_today" |
c45bdb58 SK |
316 | |
317 | } | |
318 | ||
065977fd SK |
319 | note() { |
320 | mkdir -p "$DIR_NOTES" | |
3008cd51 | 321 | vim -c 'set spell' "$DIR_NOTES/$(date +'%Y_%m_%d--%H_%M_%S%z')--$1.md" |
065977fd SK |
322 | } |
323 | ||
e09a8d5a | 324 | weather() { |
87b05c1b SK |
325 | local _weather_location |
326 | case "$1" in | |
327 | '') _weather_location="$WEATHER_LOCATION";; | |
328 | *) _weather_location="$1" | |
329 | esac | |
330 | curl "http://wttr.in/$_weather_location" | |
e09a8d5a | 331 | } |
2c0865d1 SK |
332 | |
333 | bt_devs_paired() { | |
334 | bluetoothctl -- paired-devices \ | |
335 | | awk '{print $2}' \ | |
336 | | xargs bluetoothctl -- info | |
337 | } | |
338 | ||
339 | bt_devs() { | |
340 | bluetoothctl -- devices \ | |
341 | | awk '{print $2}' \ | |
342 | | xargs bluetoothctl -- info | |
343 | } | |
dfbaafa4 SK |
344 | |
345 | run() { | |
346 | stderr="$(mktemp)" | |
347 | $@ 2> >(tee "$stderr") | |
348 | code="$?" | |
349 | urgency='' | |
350 | case "$code" in | |
351 | 0) urgency='normal';; | |
352 | *) urgency='critical' | |
353 | esac | |
354 | notify-send -u "$urgency" "Job done: $code" "$(cat $stderr)" | |
355 | rm "$stderr" | |
356 | } |