diff options
Diffstat (limited to '.local/bin/dwmbar')
-rwxr-xr-x | .local/bin/dwmbar/dwmb-bat | 29 | ||||
-rwxr-xr-x | .local/bin/dwmbar/dwmb-date | 3 | ||||
-rwxr-xr-x | .local/bin/dwmbar/dwmb-dotfiles | 15 | ||||
-rwxr-xr-x | .local/bin/dwmbar/dwmb-layout | 3 | ||||
-rwxr-xr-x | .local/bin/dwmbar/dwmb-news | 3 | ||||
-rwxr-xr-x | .local/bin/dwmbar/dwmb-test | 3 | ||||
-rwxr-xr-x | .local/bin/dwmbar/dwmb-vpn | 25 | ||||
-rwxr-xr-x | .local/bin/dwmbar/dwmbar (renamed from .local/bin/dwmbar) | 14 |
8 files changed, 88 insertions, 7 deletions
diff --git a/.local/bin/dwmbar/dwmb-bat b/.local/bin/dwmbar/dwmb-bat new file mode 100755 index 0000000..4cc14ec --- /dev/null +++ b/.local/bin/dwmbar/dwmb-bat @@ -0,0 +1,29 @@ +#!/bin/sh + +case $BLOCK_BUTTON in + 1) notify-send hey ;; + 2) setsid -f "$TERMINAL" -e calcurse ;; + 3) notify-send " 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 + +# Charging: # +# Discharching: # +# Full: underscore: # +# LOW BATTERY: # + +batstatus=$(acpi | tail -n 1) + +ico="" + +# Change the underscore color according to the charging state +case "$batstatus" in + *Charging*) ico=" ";; + *Discharging*) ico=" " ;; + *) ico=" " ;; +esac + +percentage=$( echo "$batstatus" | sed "s/.*\(\ [0-9]*\)\%.*$/\1/; s/\ //g; 1q") + +echo "$ico$percentage% " diff --git a/.local/bin/dwmbar/dwmb-date b/.local/bin/dwmbar/dwmb-date new file mode 100755 index 0000000..e2198bd --- /dev/null +++ b/.local/bin/dwmbar/dwmb-date @@ -0,0 +1,3 @@ +#!/bin/sh + +date +" %a %b %d | %H:%M " diff --git a/.local/bin/dwmbar/dwmb-dotfiles b/.local/bin/dwmbar/dwmb-dotfiles new file mode 100755 index 0000000..9c9c34d --- /dev/null +++ b/.local/bin/dwmbar/dwmb-dotfiles @@ -0,0 +1,15 @@ +#!/bin/bash + +dotfiles=$(yadm status | sed '1,3d; + 5,$d; + s/.$//g') + +if [[ ${dotfiles:0:1} == "n" ]]; then + warn="" +else + warn=" " +fi + + + +echo " $warn" diff --git a/.local/bin/dwmbar/dwmb-layout b/.local/bin/dwmbar/dwmb-layout new file mode 100755 index 0000000..3cd1132 --- /dev/null +++ b/.local/bin/dwmbar/dwmb-layout @@ -0,0 +1,3 @@ +#!/bin/sh + +echo " $(cat $HOME/.cache/layout) " diff --git a/.local/bin/dwmbar/dwmb-news b/.local/bin/dwmbar/dwmb-news new file mode 100755 index 0000000..45ec966 --- /dev/null +++ b/.local/bin/dwmbar/dwmb-news @@ -0,0 +1,3 @@ +#!/bin/sh + + cat /tmp/newsupdate 2>/dev/null || echo "$(newsboat -x print-unread | awk '{ if($1>0) print " " $1}')$(cat "${XDG_CONFIG_HOME:-$HOME/.config}"/newsboat/.update 2>/dev/null) " diff --git a/.local/bin/dwmbar/dwmb-test b/.local/bin/dwmbar/dwmb-test new file mode 100755 index 0000000..f69b76b --- /dev/null +++ b/.local/bin/dwmbar/dwmb-test @@ -0,0 +1,3 @@ +#!/bin/sh + +cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 32 | head -n 1 diff --git a/.local/bin/dwmbar/dwmb-vpn b/.local/bin/dwmbar/dwmb-vpn new file mode 100755 index 0000000..908aa76 --- /dev/null +++ b/.local/bin/dwmbar/dwmb-vpn @@ -0,0 +1,25 @@ +#!/bin/bash +# Outputs if Express VPN is connected or not + +vpnstatus=$(expressvpn status | head -n 1) + +case "$vpnstatus" in + *"Not"*) icon="" + ;; + *"Connected"*) icon="" + ;; + *"Connecting"*) icon=" " + ;; + *) icon="" +esac + +echo " $icon " + + +# \033]01;31\] # pink +# \033]00m\] # white +# \033]01;36\] # bold green +# \033]02;36\] # green +# \033]01;34\] # blue +# \033]01;33\] # bold yellow +# s/onnected\sto\s//; diff --git a/.local/bin/dwmbar b/.local/bin/dwmbar/dwmbar index a322665..24657d2 100755 --- a/.local/bin/dwmbar +++ b/.local/bin/dwmbar/dwmbar @@ -6,17 +6,17 @@ # When given the echo option, echo to stdout instead # of refreshing (useful for debugging) -battery=$(battery) -datetime=$(datetime) +battery=$(dwmb-bat) +datetime=$(dwmb-date) # dropbox=$(dropbox-status) -kblayout=$(kblayout) +kblayout=$(dwmb-layout) # mailbox=$(mailbox) -news=$(news) -vpnstatus=$(vpnstatus) +news=$(dwmb-news) +vpnstatus=$(dwmb-vpn) # wifi=$(wifi) -yadms=$(yadms) +dotfiles=$(dwmb-dotfiles) -bar="$yadms|$news|$datetime|$kblayout|$vpnstatus|$battery |" +bar="$dotfiles|$news|$datetime|$kblayout|$vpnstatus|$battery " case "$1" in echo) echo "$bar" ;; |