diff --git a/configuration.nix b/configuration.nix index 91c1422..15dfdfa 100644 --- a/configuration.nix +++ b/configuration.nix @@ -112,6 +112,7 @@ grim slurp feh + polybar # cli neofetch diff --git a/modules/nix/bspwm/alacritty.nix b/modules/nix/bspwm/alacritty.nix index 8c8b061..ef8db83 100644 --- a/modules/nix/bspwm/alacritty.nix +++ b/modules/nix/bspwm/alacritty.nix @@ -4,7 +4,7 @@ alacritty = { enable = true; settings = { - color = { + colors = { primary = { background = "#282828"; foreground = "#ebdbb2"; @@ -30,13 +30,10 @@ white = "#ebdbb2"; }; }; - window = { - decorations = "Full"; - }; font = { - size = "16"; + size = 20; normal = { - family = "Dina"; + family = "FantasqueSansMNerdFont"; }; }; }; diff --git a/modules/nix/bspwm/default.nix b/modules/nix/bspwm/default.nix index 547d964..47f91d3 100644 --- a/modules/nix/bspwm/default.nix +++ b/modules/nix/bspwm/default.nix @@ -3,6 +3,7 @@ imports = [ ./bspwm.nix ./alacritty.nix + ./polybar.nix ]; #home.file = { diff --git a/modules/nix/bspwm/polybar.nix b/modules/nix/bspwm/polybar.nix new file mode 100644 index 0000000..5aec959 --- /dev/null +++ b/modules/nix/bspwm/polybar.nix @@ -0,0 +1,9 @@ +{ config, pkgs, ... }: +{ + services = { + polybar = { + enable = true; + + }; + }; +} diff --git a/modules/nix/user.nix b/modules/nix/user.nix index 80005ec..3db9f9a 100644 --- a/modules/nix/user.nix +++ b/modules/nix/user.nix @@ -61,12 +61,14 @@ bind - split-window -v unbind '"' unbind % - + bind t new-window + bind -n M-q previous-window + bind -n M-e next-window + bind r source-file ~/.tmux.conf bind -n M-Left select-pane -L bind -n M-Right select-pane -R bind -n M-Up select-pane -U bind -n M-Down select-pane -D - set -g status-position top ''; };