attempt dark mode i3 de
This commit is contained in:
parent
3f2650cd46
commit
071ae90c08
4 changed files with 25 additions and 2 deletions
|
|
@ -1,4 +1,5 @@
|
|||
{ ... }:
|
||||
{
|
||||
imports = [ ./i3.nix ./polybar.nix ];
|
||||
imports = [ ./i3.nix ./polybar.nix ./theme.nix ];
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -9,6 +9,12 @@
|
|||
default_border pixel 1
|
||||
default_floating_border pixel 1
|
||||
floating_modifier Mod4
|
||||
|
||||
# Dark mode colors
|
||||
client.focused #2e3440 #4c566a #eceff4 #4c566a #2e3440
|
||||
client.unfocused #2e3440 #2e3440 #d8dee9 #2e3440 #2e3440
|
||||
client.focused_inactive #2e3440 #3b4252 #e5e9f0 #3b4252 #2e3440
|
||||
client.urgent #2e3440 #bf616a #eceff4 #bf616a #2e3440
|
||||
'';
|
||||
config = rec {
|
||||
modifier = "Mod4";
|
||||
|
|
|
|||
16
flakes/common/hm_modules/de_i3/theme.nix
Normal file
16
flakes/common/hm_modules/de_i3/theme.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{ pkgs, ... }:
|
||||
{
|
||||
home.pointerCursor = {
|
||||
gtk.enable = true;
|
||||
x11.enable = true;
|
||||
package = pkgs.bibata-cursors;
|
||||
name = "Bibata-Modern-Classic";
|
||||
size = 16;
|
||||
};
|
||||
gtk = {
|
||||
enable = true;
|
||||
theme = { package = pkgs.flat-remix-gtk; name = "Flat-Remix-GTK-Grey-Darkest"; };
|
||||
iconTheme = { package = pkgs.adwaita-icon-theme; name = "Adwaita"; };
|
||||
font = { name = "Sans"; size = 11; };
|
||||
};
|
||||
}
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
modi = "drun,run,ssh,window,calc";
|
||||
terminal = "alacritty";
|
||||
};
|
||||
theme = "glue_pro_blue";
|
||||
theme = "Arc-Dark";
|
||||
};
|
||||
programs.wofi = {
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue