feat: mimeapps, remove p10k

This commit is contained in:
ange 2024-04-24 11:25:04 +02:00
parent 03a0bab194
commit 32cb220161
Signed by: ange
GPG key ID: 9E0C4157BB7BEB1D
29 changed files with 1383 additions and 11738 deletions

13
bin/wlp Executable file
View file

@ -0,0 +1,13 @@
#!/bin/bash -e
iwctl=(iwctl station wlan0)
"${iwctl[@]}" show | grep -q 'Scanning\s\+yes' || "${iwctl[@]}" scan
for _ in {0..29}; do
if "${iwctl[@]}" show | grep -q '\s*State\s\+connected\s*$'; then
kill -35 "$(cat "$HOME/.cache/pidofbar")"
exit 0
fi
sleep 1
done