kekl
This commit is contained in:
@ -112,6 +112,7 @@
|
|||||||
grim
|
grim
|
||||||
slurp
|
slurp
|
||||||
feh
|
feh
|
||||||
|
polybar
|
||||||
|
|
||||||
# cli
|
# cli
|
||||||
neofetch
|
neofetch
|
||||||
|
@ -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";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
imports = [
|
imports = [
|
||||||
./bspwm.nix
|
./bspwm.nix
|
||||||
./alacritty.nix
|
./alacritty.nix
|
||||||
|
./polybar.nix
|
||||||
];
|
];
|
||||||
#home.file = {
|
#home.file = {
|
||||||
|
|
||||||
|
9
modules/nix/bspwm/polybar.nix
Normal file
9
modules/nix/bspwm/polybar.nix
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
{ config, pkgs, ... }:
|
||||||
|
{
|
||||||
|
services = {
|
||||||
|
polybar = {
|
||||||
|
enable = true;
|
||||||
|
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
@ -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
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
Reference in New Issue
Block a user