dotfiles/.config/waybar/custom/stats.sh
2025-12-18 12:09:34 -03:00

15 lines
209 B
Bash

#!/bin/bash
swaymsg workspace stats
if [ "$1" == "cpu" ]; then
kitty "htop" "-s" "PERCENT_CPU"
exit
fi
if [ "$1" == "memory" ]; then
kitty "htop" "-s" "M_RESIDENT"
exit
fi
kitty "htop"
exit