diff --git a/.config/i3status/config b/.config/i3status/config index efda8b8..35d7cdf 100644 --- a/.config/i3status/config +++ b/.config/i3status/config @@ -16,8 +16,7 @@ general { } # order += "ipv6" order += "read_file now-playing" -order += "read_file reminder" -order += "read_file now-monero" +order += "read_file now-crypto" order += "volume master" order += "wireless _first_" order += "cpu_usage" @@ -30,16 +29,12 @@ order += "disk /home/naiji/Mounts/hdd2/" order += "memory" order += "tztime local" -read_file "reminder" { - path = "/home/naiji/.local/share/i3status/reminder" -} - read_file "now-playing" { path = "/home/naiji/.local/share/i3status/now-playing" } -read_file "now-monero" { - path = "/home/naiji/.local/share/i3status/now-monero" +read_file "now-crypto" { + path = "/home/naiji/.local/share/i3status/now-crypto" } cpu_usage { diff --git a/.config/newsboat/urls b/.config/newsboat/urls index 50f5d8f..f3745c5 100644 --- a/.config/newsboat/urls +++ b/.config/newsboat/urls @@ -4,3 +4,4 @@ https://pencil.toast.cafe/yu-gi-oh-colors/feed/ https://pencil.toast.cafe/bunker-labs/feed/ https://selfprivacy.org/blog/index.xml https://lukesmith.xyz/index.xml +https://blog.waifuism.life/index.xml diff --git a/.config/pacman/pacman.conf b/.config/pacman/pacman.conf index 86637d0..9a26897 100644 --- a/.config/pacman/pacman.conf +++ b/.config/pacman/pacman.conf @@ -78,12 +78,6 @@ Include = /etc/pacman.d/mirrorlist [extra] Include = /etc/pacman.d/mirrorlist -#[community-testing] -#Include = /etc/pacman.d/mirrorlist - -[community] -Include = /etc/pacman.d/mirrorlist - # If you want to run 32 bit applications on your x86_64 system, # enable the multilib repositories as required here. diff --git a/.local/bin/update-crypto-price b/.local/bin/update-crypto-price new file mode 100755 index 0000000..5727992 --- /dev/null +++ b/.local/bin/update-crypto-price @@ -0,0 +1,9 @@ +#!/bin/sh + +while : +do + current_btc="$(curl -sSL 'https://mempool.space/api/v1/prices' | jq '.USD')" + echo " btc: $current_btc " > /home/naiji/.local/share/i3status/now-crypto + + sleep 3600 +done diff --git a/.local/bin/update-monero-price b/.local/bin/update-monero-price deleted file mode 100755 index 255bde0..0000000 --- a/.local/bin/update-monero-price +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -while : -do - current="$(curl https://api.nanopool.org/v1/xmr/prices | jq | grep usd | cut -d ':' -f 2 | cut -d ',' -f 1)" - if [ -n "$current" ] - then - echo " xmr:$current " > /home/naiji/.local/share/i3status/now-monero - fi - - sleep 3600 -done diff --git a/.local/bin/update-now-playing b/.local/bin/update-now-playing index 652cffc..a3010d4 100755 --- a/.local/bin/update-now-playing +++ b/.local/bin/update-now-playing @@ -2,7 +2,7 @@ while : do - current="$(mpc current)" + current="$(mpc current -f '%title%')" if [ -n "$current" ] then echo "$(echo "$current" | awk '{ if ( length($0) > 80 ) { printf substr($0, 1, 80); print "..." } else { print $0; }}') " >/home/naiji/.local/share/i3status/now-playing diff --git a/.local/share/backgrounds/exodus.png b/.local/share/backgrounds/exodus.png new file mode 100644 index 0000000..8a932af Binary files /dev/null and b/.local/share/backgrounds/exodus.png differ diff --git a/.local/share/backgrounds/full.png b/.local/share/backgrounds/full.png index dabbd16..1d152c5 100644 Binary files a/.local/share/backgrounds/full.png and b/.local/share/backgrounds/full.png differ diff --git a/.local/share/backgrounds/miku-piano.jpg b/.local/share/backgrounds/miku-piano.jpg deleted file mode 100644 index c0cb6a7..0000000 Binary files a/.local/share/backgrounds/miku-piano.jpg and /dev/null differ diff --git a/.local/share/backgrounds/miku-sky.jpg b/.local/share/backgrounds/miku-sky.jpg deleted file mode 100644 index 70666d7..0000000 Binary files a/.local/share/backgrounds/miku-sky.jpg and /dev/null differ diff --git a/.local/share/backgrounds/wallpaper.png b/.local/share/backgrounds/wallpaper.png index 29b7491..f3a7ec8 100644 Binary files a/.local/share/backgrounds/wallpaper.png and b/.local/share/backgrounds/wallpaper.png differ diff --git a/.local/share/backgrounds/winter.png b/.local/share/backgrounds/winter.png new file mode 100644 index 0000000..66367bf Binary files /dev/null and b/.local/share/backgrounds/winter.png differ