This commit is contained in:
Dmitriy Holkin 2019-09-29 20:16:29 +04:00
parent cb01f5c303
commit 0e0c83165d
2 changed files with 39 additions and 13 deletions

View File

@ -51,6 +51,10 @@ with deviceSpecific; {
maim maim
mupdf mupdf
ncmpcpp ncmpcpp
pywal
python27Packages.pygtk
python2
] ++ lib.optionals isLaptop [ ] ++ lib.optionals isLaptop [
# Important # Important
acpi acpi

View File

@ -24,26 +24,48 @@ in {
bars = [ ]; bars = [ ];
# colors = rec {
# background = thm.bg;
# unfocused = {
# border = thm.dark;
# background = thm.bg;
# text = thm.alt;
# indicator = thm.fg;
# childBorder = thm.dark;
# };
# focusedInactive = unfocused;
# urgent = unfocused // {
# border = thm.orange;
# text = thm.fg;
# childBorder = thm.orange;
# };
# focused = unfocused // {
# border = thm.blue;
# background = thm.dark;
# text = thm.fg;
# childBorder = thm.blue;
# };
# };
colors = rec { colors = rec {
background = thm.bg; background = "\$bg";
unfocused = { unfocused = {
text = thm.alt; border = "\$color0";
border = thm.dark; background = "\$bg";
background = thm.bg; text = "\$color8";
childBorder = thm.dark; indicator = "\$fg";
indicator = thm.fg; childBorder = "\$color0";
}; };
focusedInactive = unfocused; focusedInactive = unfocused;
urgent = unfocused // { urgent = unfocused // {
text = thm.fg; border = "\$color8";
border = thm.orange; text = "\$fg";
childBorder = thm.orange; childBorder = "\$color8";
}; };
focused = unfocused // { focused = unfocused // {
childBorder = thm.blue; border = "\$color12";
border = thm.blue; background = "\$color0";
background = thm.dark; text = "\$fg";
text = thm.fg; childBorder = "\$color12";
}; };
}; };
gaps = { gaps = {