laptop stuff

This commit is contained in:
Vivian 2022-09-26 17:17:27 +02:00
parent 157511dbfc
commit fa8d9031fb
10 changed files with 62 additions and 65 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env nix-shell
#! nix-shell -p jq -i bash
if makoctl mode | grep -Fxq "do-not-disturb"; then
if makoctl mode | rg -q "do-not-disturb"; then
eww update dnd=""
makoctl mode -r do-not-disturb > /dev/null
else

View file

@ -2,7 +2,7 @@
per="$(pamixer --get-volume)"
if pamixer --get-mute | grep -q true; then
if pamixer --get-mute | rg -q true; then
icon="婢"
elif [ "$per" -gt 66 ]; then
icon="墳" # high

View file

@ -1,13 +1,8 @@
#!/bin/sh
if nmcli g | rg -q "\bconnected\b"; then
if wpa_cli status | rg -q "wpa_state=COMPLETED"; then
icon="直"
ssid=$(nmcli -t -f name connection show --active | sed -z 's/\n/,/g;s/,$/\n/')
if echo $ssid | rg -q "Wired"; then
status="Connected via cable"
else
status="Connected to ${ssid}"
fi
status="Connected"
else
icon="睊"
status="offline"

View file

@ -1,8 +1,10 @@
#!/bin/sh
workspaces() {
./scripts/workspaces.lua
./scripts/workspaces.lua
}
workspaces
tail -f /tmp/hypr/$HYPRLAND_INSTANCE_SIGNATURE/hyprland.log | grep --line-buffered "Changed to workspace" | while read -r; do
workspaces
workspaces
done