From b178dfbf7dab1b1f0ae96bc975f2fcd7934f57bc Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Thu, 19 Oct 2023 14:31:43 -0400 Subject: [PATCH] added cheat sheet generation command --- home-config/bashrc | 1 + home-config/waybar/config | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/home-config/bashrc b/home-config/bashrc index 03d6b54..99aa8cc 100644 --- a/home-config/bashrc +++ b/home-config/bashrc @@ -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\"} //,// {if (! // && ! //) print; if (//) 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 diff --git a/home-config/waybar/config b/home-config/waybar/config index df9f6bb..8721a6a 100644 --- a/home-config/waybar/config +++ b/home-config/waybar/config @@ -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",