Show quota
This commit is contained in:
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user