mirror of
https://github.com/EdenQwQ/nixos.git
synced 2025-12-27 19:04:58 +08:00
9 lines
230 B
Bash
Executable file
9 lines
230 B
Bash
Executable file
#!/bin/sh
|
|
|
|
. ~/scripts/tofi/config
|
|
|
|
entry=$(printf "power-saver\nbalanced\nperformance" | tofi_full "mode")
|
|
entry=$(echo $entry | cut -d' ' -f2 )
|
|
|
|
notify-send "Power Mode" "Setting mode to $entry"
|
|
doas powerprofilesctl set $entry
|