mirror of
https://github.com/Gerg-L/nixos.git
synced 2025-12-10 00:43:56 -05:00
30 lines
731 B
Nix
Executable file
30 lines
731 B
Nix
Executable file
{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 = {
|
|
HDMI-0 = [ "I" "II" "III" "IV" "V" ];
|
|
# eDP-1 = [ "VI" "VII" "VIII" "IX" "X" ];
|
|
};
|
|
};
|
|
}
|