theming
This commit is contained in:
parent
18ba4ba9c1
commit
eceef78218
|
@ -158,6 +158,9 @@ in
|
||||||
wl-clipboard # wl-copy and wl-paste for copy/paste from stdin / stdout
|
wl-clipboard # wl-copy and wl-paste for copy/paste from stdin / stdout
|
||||||
bemenu # wayland clone of dmenu
|
bemenu # wayland clone of dmenu
|
||||||
mako # notification system developed by swaywm maintainer
|
mako # notification system developed by swaywm maintainer
|
||||||
|
|
||||||
|
(orchis-theme.override { tweaks = [ "compact" "solid" ]; })
|
||||||
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# enable sway window manager
|
# enable sway window manager
|
||||||
|
|
|
@ -53,6 +53,8 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
orchis_theme_compact = (pkgs.orchis-theme.override { tweaks = [ "compact" "solid" ]; });
|
||||||
|
|
||||||
accent = accents.red;
|
accent = accents.red;
|
||||||
color = themes.dark.color;
|
color = themes.dark.color;
|
||||||
in {
|
in {
|
||||||
|
@ -85,13 +87,15 @@ in {
|
||||||
imagemagick
|
imagemagick
|
||||||
mpv
|
mpv
|
||||||
|
|
||||||
|
xfce.thunar
|
||||||
|
|
||||||
liberation_ttf
|
liberation_ttf
|
||||||
hack-font
|
hack-font
|
||||||
font-awesome_5
|
font-awesome_5
|
||||||
fira-code
|
fira-code
|
||||||
(nerdfonts.override { fonts = [ "FiraCode" "Hack" ]; })
|
(nerdfonts.override { fonts = [ "FiraCode" "Hack" ]; })
|
||||||
|
|
||||||
(orchis-theme.override { tweaks = [ "compact" "solid" ]; })
|
orchis_theme_compact
|
||||||
];
|
];
|
||||||
|
|
||||||
programs.fish.enable = true;
|
programs.fish.enable = true;
|
||||||
|
@ -499,4 +503,20 @@ in {
|
||||||
enable = true;
|
enable = true;
|
||||||
indicator = true;
|
indicator = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
gtk = {
|
||||||
|
enable = true;
|
||||||
|
theme = {
|
||||||
|
name = "Orchis-Red-Dark-Compact";
|
||||||
|
package = orchis_theme_compact;
|
||||||
|
};
|
||||||
|
iconTheme = {
|
||||||
|
name = "Papirus-Dark";
|
||||||
|
package = pkgs.papirus-icon-theme;
|
||||||
|
};
|
||||||
|
cursorTheme = {
|
||||||
|
name = "capitaine-cursors";
|
||||||
|
package = pkgs.capitaine-cursors;
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue