Joystickwake + background
This commit is contained in:
parent
e080d5b9b8
commit
8acab53e36
10 changed files with 135 additions and 35 deletions
32
modules/bspwm.nix
Normal file
32
modules/bspwm.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ pkgs, ... }:
|
||||
|
||||
let
|
||||
monitorPages = [ "I" "II" "III" "IV" "V" "VI" "VII" "VIII" "IX" "X" ];
|
||||
strPalette = pkgs.extra.palette.toRGBHex pkgs.extra.colorPalette;
|
||||
in
|
||||
{
|
||||
xsession.windowManager.bspwm = {
|
||||
enable = true;
|
||||
settings = {
|
||||
border_width = 2;
|
||||
border_radius = 8;
|
||||
window_gap = 4;
|
||||
split_ratio = 0.5;
|
||||
top_padding = 0;
|
||||
borderless_monocle = true;
|
||||
gapless_monocle = false;
|
||||
normal_border_color = strPalette.normal.blue;
|
||||
focused_border_color = strPalette.bright.blue;
|
||||
};
|
||||
monitors = {
|
||||
"eDP1-1" = monitorPages;
|
||||
"eDP1" = monitorPages;
|
||||
"HDMI-0" = monitorPages;
|
||||
};
|
||||
extraConfig = ''
|
||||
sleep 2
|
||||
polybar-msg cmd restart
|
||||
'';
|
||||
startupPrograms = [];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue