added cheat sheet generation command

This commit is contained in:
Ryan Schanzenbacher 2023-10-19 14:31:43 -04:00
parent ae349ed96b
commit b178dfbf7d
Signed by: ryan77627
GPG key ID: 81B0E222A3E2308E
2 changed files with 2 additions and 1 deletions

View file

@ -43,6 +43,7 @@ alias dh='guix home -L ~/.config/guix/modules reconfigure ~/.config/guix/home-co
alias gc='git -C ~/.config/guix add . && git -C ~/.config/guix commit && git -C ~/.config/guix push all'
alias cg='git -C ~/.config/guix pull'
alias cgh='git -C ~/.config/guix pull stationeryh main'
alias gencs="awk 'BEGIN {print \"# Crib Sheet\"} /<!-- START CS -->/,/<!-- END CS -->/ {if (! /<!-- START CS -->/ && ! /<!-- END CS -->/) print; if (/<!-- END CS -->/) print \"\"}' notes.mkd | pandoc -f gfm -t pdf | zathura -"
export XDG_DATA_DIRS=$XDG_DATA_DIRS:/var/lib/flatpak/exports/share:/home/ryan/.local/share/flatpak/exports/share
# GPG SETUP FOR SSH

View file

@ -107,7 +107,7 @@
"exec-if": "ping wttr.in -c1"
},
"custom/weather": {
"format": "{} °",
"format": "{} °F",
"tooltip": true,
"interval": 3600,
"exec": "exit=101; while [ $exit = 101 ]; do wttrbar --main-indicator temp_F --fahrenheit; exit=$(echo $?); sleep 1; done",