mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 08:53:56 -05:00
flakes
This commit is contained in:
commit
beaf5202ca
37 changed files with 1802 additions and 0 deletions
29
home-manager/bspwm.nix
Executable file
29
home-manager/bspwm.nix
Executable file
|
|
@ -0,0 +1,29 @@
|
|||
{config, pkgs, lib, ...}:
|
||||
{
|
||||
xsession.windowManager.bspwm = {
|
||||
enable = true;
|
||||
startupPrograms = [
|
||||
"polybar left"
|
||||
"polybar middle"
|
||||
"polybar right"
|
||||
"xfce4-power-manager"
|
||||
"xsetroot -cursor_name left_ptr"
|
||||
"xsetroot -solid \"#000000\""
|
||||
"flashfocus"
|
||||
];
|
||||
settings = {
|
||||
border_width = 0;
|
||||
window_gap = 20;
|
||||
border_radius = 15;
|
||||
normal_border_color = "\#c0caf5";
|
||||
active_border_color = "\#c0caf5";
|
||||
focused_border_color = "\#c0caf5";
|
||||
spilt_ratio = 0.52;
|
||||
borderless_monocle = true;
|
||||
gapless_monocle = true;
|
||||
};
|
||||
monitors = {
|
||||
eDP-1 = [ "I" "II" "III" "IV" "V" ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue