From 6c4fc5e429f362c0c5544d34f17285c4cfc16ba8 Mon Sep 17 00:00:00 2001 From: Ryan Schanzenbacher Date: Mon, 24 Aug 2026 01:47:36 -0400 Subject: remove old filesand bump nix-files --- home-config/waybar/modules/check-for-music.sh | 7 --- home-config/waybar/modules/spotify.sh | 19 ------- home-config/waybar/modules/storage.sh | 25 --------- home-config/waybar/modules/weather.sh | 77 --------------------------- 4 files changed, 128 deletions(-) delete mode 100755 home-config/waybar/modules/check-for-music.sh delete mode 100755 home-config/waybar/modules/spotify.sh delete mode 100755 home-config/waybar/modules/storage.sh delete mode 100755 home-config/waybar/modules/weather.sh (limited to 'home-config/waybar/modules') diff --git a/home-config/waybar/modules/check-for-music.sh b/home-config/waybar/modules/check-for-music.sh deleted file mode 100755 index 3b735a2..0000000 --- a/home-config/waybar/modules/check-for-music.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -if [[ $(playerctl metadata --format '{{lc(status)}}' | grep playing) -eq 0 ]]; then - exit 0 -else - exit 1 -fi diff --git a/home-config/waybar/modules/spotify.sh b/home-config/waybar/modules/spotify.sh deleted file mode 100755 index fc732a1..0000000 --- a/home-config/waybar/modules/spotify.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/sh - -class=$(playerctl metadata --format '{{lc(status)}}') -icon="󰎆" - -if [[ $class == "playing" ]]; then - info=$(playerctl metadata --format '{{artist}} - {{title}}') - if [[ ${#info} > 40 ]]; then - info=$(playerctl metadata --format '{{title}}' | cut -c1-40)"..." - fi - text=$info" "$icon -elif [[ $class == "paused" ]]; then - text=$icon -elif [[ $class == "stopped" ]]; then - text="" -fi - -echo -e "{\"text\":\""$text"\", \"class\":\""$class"\"}" - diff --git a/home-config/waybar/modules/storage.sh b/home-config/waybar/modules/storage.sh deleted file mode 100755 index 90cc3dc..0000000 --- a/home-config/waybar/modules/storage.sh +++ /dev/null @@ -1,25 +0,0 @@ -#!/bin/sh - -mount="/" -warning=20 -critical=10 - -df -h -P -l "$mount" | awk -v warning=$warning -v critical=$critical ' -/\/.*/ { - text=$4 - tooltip="Filesystem: "$1"\rSize: "$2"\rUsed: "$3"\rAvail: "$4"\rUse%: "$5"\rMounted on: "$6 - use=$5 - exit 0 -} -END { - class="" - gsub(/%$/,"",use) - if ((100 - use) < critical) { - class="critical" - } else if ((100 - use) < warning) { - class="warning" - } - print "{\"text\":\""text"\", \"percentage\":"use",\"tooltip\":\""tooltip"\", \"class\":\""class"\"}" -} -' - diff --git a/home-config/waybar/modules/weather.sh b/home-config/waybar/modules/weather.sh deleted file mode 100755 index 01faffc..0000000 --- a/home-config/waybar/modules/weather.sh +++ /dev/null @@ -1,77 +0,0 @@ -cachedir=~/.cache/rbn -cachefile=${0##*/}-$1 - -if [ ! -d $cachedir ]; then - mkdir -p $cachedir -fi - -if [ ! -f $cachedir/$cachefile ]; then - touch $cachedir/$cachefile -fi - -# Save current IFS -SAVEIFS=$IFS -# Change IFS to new line. -IFS=$'\n' - -cacheage=$(($(date +%s) - $(stat -c '%Y' "$cachedir/$cachefile"))) -if [ $cacheage -gt 1740 ] || [ ! -s $cachedir/$cachefile ]; then - data=($(curl -s https://en.wttr.in/$1\?0qnT 2>&1)) - echo ${data[0]} | cut -f1 -d, > $cachedir/$cachefile - echo ${data[1]} | sed -E 's/^.{15}//' >> $cachedir/$cachefile - echo ${data[2]} | sed -E 's/^.{15}//' >> $cachedir/$cachefile -fi - -weather=($(cat $cachedir/$cachefile)) - -# Restore IFSClear -IFS=$SAVEIFS - -temperature=$(echo ${weather[2]} | sed -E 's/([[:digit:]]+)\.\./\1 to /g') - -#echo ${weather[1]##*,} - -# https://fontawesome.com/icons?s=solid&c=weather -case $(echo ${weather[1]##*,} | tr '[:upper:]' '[:lower:]') in -"clear" | "sunny") - condition="" - ;; -"partly cloudy") - condition="" - ;; -"cloudy") - condition="" - ;; -"overcast") - condition="" - ;; -"mist" | "fog" | "freezing fog") - condition="敖" - ;; -"patchy rain possible" | "patchy light drizzle" | "light drizzle" | "patchy light rain" | "light rain" | "light rain shower" | "rain") - condition="殺" - ;; -"moderate rain at times" | "moderate rain" | "heavy rain at times" | "heavy rain" | "moderate or heavy rain shower" | "torrential rain shower" | "rain shower") - condition="" - ;; -"patchy snow possible" | "patchy sleet possible" | "patchy freezing drizzle possible" | "freezing drizzle" | "heavy freezing drizzle" | "light freezing rain" | "moderate or heavy freezing rain" | "light sleet" | "ice pellets" | "light sleet showers" | "moderate or heavy sleet showers") - condition="流" - ;; -"blowing snow" | "moderate or heavy sleet" | "patchy light snow" | "light snow" | "light snow showers") - condition="ﰕ" - ;; -"blizzard" | "patchy moderate snow" | "moderate snow" | "patchy heavy snow" | "heavy snow" | "moderate or heavy snow with thunder" | "moderate or heavy snow showers") - condition="" - ;; -"thundery outbreaks possible" | "patchy light rain with thunder" | "moderate or heavy rain with thunder" | "patchy light snow with thunder") - condition="" - ;; -*) - condition="" - echo -e "{\"text\":\""$condition"\", \"alt\":\""${weather[0]}"\", \"tooltip\":\""${weather[0]}: $temperature ${weather[1]}"\"}" - ;; -esac - -#echo $temp $condition - -echo -e "{\"text\":\""$temperature $condition"\", \"alt\":\""${weather[0]}"\", \"tooltip\":\""${weather[0]}: $temperature ${weather[1]}"\"}" -- cgit v1.3.1