feat: init

This commit is contained in:
Nick 2024-10-06 15:25:05 -05:00
commit c19ea940bd
320 changed files with 23845 additions and 0 deletions

30
home-manager/modules/bottom.nix Executable file
View file

@ -0,0 +1,30 @@
{
programs.bottom = {
enable = true;
settings = {
colors = {
tableHeaderColor = "#f4dbd6";
allCpuColor = "#f4dbd6";
avgCpuColor = "#ee99a0";
cpuCoreColors = ["#ed8796" "#f5a97f" "#eed49f" "#a6da95" "#7dc4e4" "#c6a0f6"];
ramColor = "#a6da95";
swapColor = "#f5a97f";
rxColor = "#a6da95";
txColor = "#ed8796";
widgetTitleColor = "#f0c6c6";
borderColor = "#5b6078";
highlightedBorderColor = "#f5bde6";
textColor = "#cad3f5";
graphColor = "#a5adcb";
cursorColor = "#f5bde6";
selectedTextColor = "#181926";
selectedBgColor = "#c6a0f6";
highBatteryColor = "#a6da95";
mediumBatteryColor = "#eed49f";
lowBatteryColor = "#ed8796";
gpuCoreColors = ["#7dc4e4" "#c6a0f6" "#ed8796" "#f5a97f" "#eed49f" "#a6da95"];
arcColor = "#91d7e3";
};
};
};
}