Compare commits

..

No commits in common. "351fc2685813ac7c3e8074ce41ff5424f7ec7d4b" and "e07aaedfef89e45532bc7b02e5c87702559dbd60" have entirely different histories.

3 changed files with 4 additions and 37 deletions

View File

@ -85,12 +85,13 @@ bspc rule -a kitty_float state=floating rectangle=1000x700+0+0 center=on
bspc rule -a Popsicle-gtk state=floating rectangle=800x300+0+0 center=on
# startup
killall picom
picom --experimental-backends &
polybar-msg cmd quit
polybar left &
polybar right &
dunst &
rofi-polkit-agent &
if [ ! -f /tmp/startup.lock ]; then
touch /tmp/startup.lock
@ -102,6 +103,4 @@ if [ ! -f /tmp/startup.lock ]; then
firefox &
claws-mail &
obsidian &
rofi-polkit-agent &
fi

View File

@ -57,7 +57,7 @@ font-1 = JetBrainsMono NerdFont;2
modules-left = bspwm xwindow
modules-center = date
modules-right = real netatmo eth pulseaudio xkeyboard memory cpu
modules-right = real eth pulseaudio xkeyboard memory cpu
cursor-click = pointer
cursor-scroll = ns-resize
@ -181,7 +181,7 @@ label = %{A1:kitty --class kitty_float htop:}%percentage_used:2%%%{A}
[module/cpu]
type = internal/cpu
interval = 2
format-prefix = " "
format-prefix = ""
format-prefix-foreground = ${colors.primary}
label = %{A1:kitty --class kitty_float htop:}%percentage:2%%%{A}
@ -253,13 +253,6 @@ format-prefix-foreground = ${colors.primary}
exec = ~/.config/polybar/scripts/real.sh
[module/netatmo]
type = custom/script
interval = 900
exec = ~/.config/polybar/scripts/netatmo.sh
[settings]
screenchange-reload = true
pseudo-transparency = false

View File

@ -1,25 +0,0 @@
#!/bin/sh
# this script requires for https://github.com/deletescape/netatmo to be installed and set up
data_indoor="$(~/go/bin/netatmo json -i)"
data_outdoor="$(~/go/bin/netatmo json -o)"
temp_outdoor="$(jq .Temperature <<< "$data_outdoor")"
temp_indoor="$(jq .Temperature <<< "$data_indoor")"
co2="$(jq .CO2 <<< "$data_indoor")"
echo -n "%{F#cba6f7}﨎%{F-} $temp_indoor/$temp_outdoor"
if [ "$co2" -gt "700" ]; then
echo -n " %{F#cba6f7}ﳢ%{F-} "
if [ "$co2" -gt "2000" ]; then
echo "%{F#f38ba8}$co2%{F-}"
dunstify -u critical "netatmo" "indoor co2 level is at $co2"
elif [ "$co2" -gt "1000" ]; then
echo "%{F#eba0ac}$co2%{F-}"
dunstify -u normal "netatmo" "indoor co2 level is at $co2"
else
echo "$co2"
fi
fi