diff options
author | Joe <bousset.rudy@gmail.com> | 2022-08-30 10:23:11 +0200 |
---|---|---|
committer | Joe <bousset.rudy@gmail.com> | 2022-08-30 10:23:11 +0200 |
commit | e150567d7f6e18d2bc211e0baf7f4c287c508271 (patch) | |
tree | b2c15115634651d046a452fa18356f5f2ede0707 /.local/bin/status | |
parent | update (diff) | |
download | dotfiles-bsd-e150567d7f6e18d2bc211e0baf7f4c287c508271.tar.gz dotfiles-bsd-e150567d7f6e18d2bc211e0baf7f4c287c508271.tar.bz2 dotfiles-bsd-e150567d7f6e18d2bc211e0baf7f4c287c508271.tar.xz dotfiles-bsd-e150567d7f6e18d2bc211e0baf7f4c287c508271.tar.zst dotfiles-bsd-e150567d7f6e18d2bc211e0baf7f4c287c508271.zip |
up
Diffstat (limited to '.local/bin/status')
-rwxr-xr-x | .local/bin/status/sb-clock | 14 | ||||
-rwxr-xr-x | .local/bin/status/sb-forecast | 7 |
2 files changed, 10 insertions, 11 deletions
diff --git a/.local/bin/status/sb-clock b/.local/bin/status/sb-clock index 3dc8af4..6313e49 100755 --- a/.local/bin/status/sb-clock +++ b/.local/bin/status/sb-clock @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/local/bin/dash clock=$(date '+%I') @@ -18,11 +18,11 @@ case "$clock" in "12") icon="" ;; esac -case $BLOCK_BUTTON in - 1) notify-send -u low "This Month" "$(cal | sed "s/..7m/<b><span color=\"red\">/;s|..27m|</span></b>|")" && notify-send "Appointments" "$(calcurse -d3)" ;; - 2) bsdsetsid -f "$TERMINAL" -e calcurse -C $XDG_CONFIG_HOME/calcurse -D $XDG_DATA_HOME/calcurse ;; - 3) notify-send -u low "📅 Time/date module" "\- Left click to show upcoming appointments for the next three days via \`calcurse -d3\` and show the month via \`cal\` - Middle click opens calcurse if installed" ;; - 6) "$TERMINAL" -e "$EDITOR" "$0" ;; -esac +# case $BLOCK_BUTTON in +# 1) notify-send -u low "This Month" "$(cal | sed "s/..7m/<b><span color=\"red\">/;s|..27m|</span></b>|")" && notify-send "Appointments" "$(calcurse -d3)" ;; +# 2) bsdsetsid -f "$TERMINAL" -e calcurse -C $XDG_CONFIG_HOME/calcurse -D $XDG_DATA_HOME/calcurse ;; +# 3) notify-send -u low "📅 Time/date module" "\- Left click to show upcoming appointments for the next three days via \`calcurse -d3\` and show the month via \`cal\` - Middle click opens calcurse if installed" ;; +# 6) "$TERMINAL" -e "$EDITOR" "$0" ;; +# esac date "+$icon %H:%M" diff --git a/.local/bin/status/sb-forecast b/.local/bin/status/sb-forecast index 317b502..08b788d 100755 --- a/.local/bin/status/sb-forecast +++ b/.local/bin/status/sb-forecast @@ -12,11 +12,10 @@ getweather() { [ -f $weatherreport ] && [ "$(gnustat -c %y "$weatherreport" 2>/dev/null | cut -d' ' -f1)" = "$(date '+%Y-%m-%d')" ] || getweather -printf "%s%s %s" \ +printf "%s%s" \ "$(cat $weatherglyph)" \ - "$(cat $moonglyph)" \ - "$(sed '16q;d' "$weatherreport" | grep -wo "[0-9]*%" | sort -rn | sed "s/^/ /g;1q" | tr -d '\n')" + "$(sed '16q;d' "$weatherreport" | grep -wo "[0-9]*%" | sort -rn | sed "s/^//g;1q" | tr -d '\n')" \ sed '13q;d' "$weatherreport" | grep -o "m\\([-+]\\)*[0-9]\\+" | sed 's/+//g' | sort -n -t 'm' -k 2n | sed -e 1b -e '$!d' | tr '\n|m' ' ' | - awk '{print " " $1 "/" $2 "°C" moon}' + awk -v moon="$(cat $moonglyph)" '{print " " $1 "/" $2 "°C " moon}' |