5 lines
174 B
Nix
Raw Normal View History

2020-08-11 02:38:02 +04:00
{ iconfont, ... }: ''
2020-08-06 00:42:43 +04:00
#!/usr/bin/env bash
2020-08-11 02:38:02 +04:00
echo '<span font="${iconfont} Solid"></span>' `df -BM / | tail -1 | awk '{printf "%.2fGiB / %.2fGiB", $3/1024, $2/1024}'`
2020-08-06 00:42:43 +04:00
''