add i3 and polybar conf, add new rofi logout screen

This commit is contained in:
Rene Kievits
2021-10-04 23:17:58 +02:00
parent 16508c1fae
commit 0d2a0bb8a8
124 changed files with 1525 additions and 4094 deletions

10
polybar/scripts/wifistrength.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
SSID=$(iwgetid -r)
SSIG=$(grep "$(iwgetid -m | awk '{ printf "%s", $1 }')" /proc/net/wireless | awk '{ printf "%i\n", int($3 * 100 / 70) }')
if [[ $SSID ]]; then
echo "$SSIG%"
else
echo "睊 0%"
fi