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

View File

@@ -0,0 +1,10 @@
#!/bin/bash
STATE=$(bluetoothctl show | grep Powered)
if [[ $STATE == *"yes" ]]
then
echo $(bluetoothctl power off)
else
echo $(bluetoothctl power on)
fi