dotfiles/.config/dwm/scripts/disk_info.sh
2022-04-29 00:02:04 +02:00

5 lines
99 B
Bash
Executable File

#!/bin/bash
disk_info=$(df -h / | awk '/\//{ printf(" %4s / %s \n", $4, $2) }')
echo ${disk_info}