diff --git a/flakes/common/hm_modules/de_i3/default.nix b/flakes/common/hm_modules/de_i3/default.nix index 7af8291..8274537 100644 --- a/flakes/common/hm_modules/de_i3/default.nix +++ b/flakes/common/hm_modules/de_i3/default.nix @@ -1,4 +1,5 @@ { ... }: { - imports = [ ./i3.nix ./polybar.nix ]; + imports = [ ./i3.nix ./polybar.nix ./theme.nix ]; } + diff --git a/flakes/common/hm_modules/de_i3/i3.nix b/flakes/common/hm_modules/de_i3/i3.nix index 14b5404..e6fb2ef 100644 --- a/flakes/common/hm_modules/de_i3/i3.nix +++ b/flakes/common/hm_modules/de_i3/i3.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"; diff --git a/flakes/common/hm_modules/de_i3/theme.nix b/flakes/common/hm_modules/de_i3/theme.nix new file mode 100644 index 0000000..0b6d7ce --- /dev/null +++ b/flakes/common/hm_modules/de_i3/theme.nix @@ -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; }; + }; +} diff --git a/flakes/common/hm_modules/launcher_rofi.nix b/flakes/common/hm_modules/launcher_rofi.nix index 353b29e..df884a9 100644 --- a/flakes/common/hm_modules/launcher_rofi.nix +++ b/flakes/common/hm_modules/launcher_rofi.nix @@ -10,7 +10,7 @@ modi = "drun,run,ssh,window,calc"; terminal = "alacritty"; }; - theme = "glue_pro_blue"; + theme = "Arc-Dark"; }; programs.wofi = { enable = true;