Show quota

This commit is contained in:
Daniel Olsen
2022-05-02 23:45:57 +02:00
parent 176c0569b8
commit f033c21cac
4 changed files with 20 additions and 10 deletions

View File

@@ -6,6 +6,7 @@
name = "PVV Terminal";
eth = null;
wlan = null;
secondary-fs = null;
};
profiles.base.enable = true;
profiles.gui.enable = true;
@@ -15,14 +16,22 @@
profiles.audio.fancy = false;
services.gammastep = {
enable = true;
dawnTime = "7:00-8:15";
duskTime = "21:30-22:30";
};
profiles.games.enable = false;
services.polybar.config."module/uquota" = {
type = "custom/script";
exec-if = "which uquota";
exec = "" + pkgs.writers.writePerl "parse_uquota" { } ''
my $raw = `uquota`;
if ( $raw =~ /Du har brukt (\d+(?:[KMGT]iB)) av (\d+(?:[KMGT]iB)), eller (\d+)/ )
{
print $3 . "%\n";
}
'';
interval = 10;
format = " <label>";
};
programs.home-manager = {
enable = true;
path = "https://github.com/rycee/home-manager/archive/release-21.11.tar.gz";