my dotz
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

general maintenance

+24 -10
+1
.config/chromium-flags.conf
··· 2 2 --ignore-gpu-blocklist 3 3 --enable-gpu-rasterization 4 4 --enable-zero-copy 5 + --enable-features=VaapiVideoDecoder
+9
.config/kanshi/config
··· 30 30 output eDP-1 disable 31 31 output "Dell Inc. DELL S3220DGF 7S3NF43" enable 32 32 } 33 + 34 + profile { 35 + output "Dell Inc. DELL S3220DGF 7S3NF43" enable 36 + } 37 + 38 + profile { 39 + output eDP-1 disable 40 + output "Dell Inc. DELL U2515H YKFWP5320LZL" enable 41 + }
+1 -1
bin/zora/drosh
··· 1 - /home/j3s/code/drosh/drosh 1 + /home/j3s/code/drosh-public/drosh
+13 -9
bin/zora/statusbar
··· 2 2 3 3 while true 4 4 do 5 - vpn="off" 6 - if ip link ls tun0 > /dev/null 2>&1; then 7 - vpn="on" 8 - fi 9 5 wifi="disconnected (0%)" 10 6 if nmcli dev show wlp0s20f3 | grep GENERAL.STATE | grep -q connected; then 11 7 wifiname="$(nmcli -t dev show wlp0s20f3 | grep GENERAL.CONNECTION | cut -d ':' -f 2)" 12 - wifistrength="$(nmcli dev show wlp0s20f3 | awk '/GENERAL.STATE/ {print $2}')" 13 - wifi="$wifiname ($wifistrength%)" 8 + # wifistrength="$(nmcli dev show wlp0s20f3 | awk '/GENERAL.STATE/ {print $2}')" 9 + # wifi="$wifiname ($wifistrength%)" 10 + wifi="$wifiname" 11 + fi 12 + vpn="off" 13 + if ip link ls gpd0 | grep -q UP; then 14 + vpn="on" 14 15 fi 15 16 battery="$(cat /sys/class/power_supply/BAT0/capacity)%" 16 - time=$(date +"%A %Y-%m-%d %I:%M %p") 17 - est_time=$(TZ=America/New_York date +"(🗽%I:%M ET)") 18 - time="$time $est_time $(date -u +"(🤖%H:%M UTC)")" 17 + # time=$(date +"%A %Y-%m-%d %I:%M %p") 18 + pst_time=$(TZ=America/Los_Angeles date +"%I:%M PT ") 19 + cst_time=$(TZ=America/Chicago date +"[%I:%M CT] ") 20 + est_time=$(TZ=America/New_York date +"%I:%M ET ") 21 + utc_time=$(date -u +"%H:%M UTC ") 22 + time="$pst_time $cst_time $est_time $utc_time" 19 23 # --date='TZ="America/New_York" 20 24 printf "%s | %s | %s\n" "wifi: ${wifi} vpn: $vpn" "bat: ${battery}" "${time}" 21 25 sleep 10