This commit is contained in:
meml0rz
2024-11-15 00:02:40 +01:00
parent ef1cf270f5
commit ae82dd64b0
5 changed files with 18 additions and 8 deletions

View File

@ -112,6 +112,7 @@
grim grim
slurp slurp
feh feh
polybar
# cli # cli
neofetch neofetch

View File

@ -4,7 +4,7 @@
alacritty = { alacritty = {
enable = true; enable = true;
settings = { settings = {
color = { colors = {
primary = { primary = {
background = "#282828"; background = "#282828";
foreground = "#ebdbb2"; foreground = "#ebdbb2";
@ -30,13 +30,10 @@
white = "#ebdbb2"; white = "#ebdbb2";
}; };
}; };
window = {
decorations = "Full";
};
font = { font = {
size = "16"; size = 20;
normal = { normal = {
family = "Dina"; family = "FantasqueSansMNerdFont";
}; };
}; };
}; };

View File

@ -3,6 +3,7 @@
imports = [ imports = [
./bspwm.nix ./bspwm.nix
./alacritty.nix ./alacritty.nix
./polybar.nix
]; ];
#home.file = { #home.file = {

View File

@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
services = {
polybar = {
enable = true;
};
};
}

View File

@ -61,12 +61,14 @@
bind - split-window -v bind - split-window -v
unbind '"' unbind '"'
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-Left select-pane -L
bind -n M-Right select-pane -R bind -n M-Right select-pane -R
bind -n M-Up select-pane -U bind -n M-Up select-pane -U
bind -n M-Down select-pane -D bind -n M-Down select-pane -D
set -g status-position top set -g status-position top
''; '';
}; };