Day 2 of i3

This commit is contained in:
kat witch 2022-01-04 21:05:17 +00:00 committed by kat
parent 984fd2f69c
commit 29c6d142f8
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
21 changed files with 904 additions and 581 deletions

View file

@ -17,9 +17,19 @@
modules.temperature.hwmon-path = "/sys/devices/pci0000:00/0000:00:18.3/hwmon/hwmon2/temp2_input";
};
};
polybarExtend = { config, ... }: {
services.polybar.settings."module/temp".hwmon-path = "/sys/devices/pci0000:00/0000:00:18.3/hwmon/hwmon2/temp2_input";
};
/*
polybarExtend2 = { config, ... }: {
config = {
modules."temperature#icon".hwmon-path = "/sys/devices/pci0000:00/0000:00:18.3/hwmon/hwmon2/temp2_input";
modules.temperature.hwmon-path = "/sys/devices/pci0000:00/0000:00:18.3/hwmon/hwmon2/temp2_input";
};
};*/
in mkOption {
type = types.attrsOf (types.submoduleWith {
modules = singleton waybarExtend;
modules = [ waybarExtend polybarExtend ];
});
};