mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
6096e7f94f
lazy and update update lazy add lsp-lines copilot and stuff äf update Re-set up laptop slight changes to hyprland config update neovim eww rice vert bar update asdf
7 lines
155 B
Bash
7 lines
155 B
Bash
#!/usr/bin/env bash
|
|
|
|
max=$(brightnessctl max)
|
|
current=$(brightnessctl get)
|
|
percentage=$(echo "scale=1; $current / $max * 100" | bc -l)
|
|
echo "$percentage"
|
|
|