nixos-config/config/modules/bspwm/bspwm.nix

44 lines
1.2 KiB
Nix
Raw Normal View History

2024-07-29 00:00:59 +00:00
{ pkgs, ... }:
{
2024-08-02 16:49:54 +00:00
xsession.windowManager.bspwm = let theme = import ../theme.nix "light"; in {
2024-07-29 00:00:59 +00:00
enable = true;
settings = {
2024-08-01 23:25:41 +00:00
normal_border_color = theme.colors.disabled;
active_border_color = theme.colors.secondary;
focused_border_color = theme.colors.primary;
border_width = theme.sizing.m;
window_gap = theme.sizing.xl;
2024-08-01 22:57:35 +00:00
2024-07-29 00:00:59 +00:00
focus_follows_pointer = true;
2024-08-01 23:25:41 +00:00
single_monocle = true;
honor_size_hints = true;
2024-07-29 00:00:59 +00:00
};
extraConfig = ''
bspc monitor DP-2 -d I II III IV V
bspc monitor HDMI-1 -d VI VII VIII IX X
# Set mouse 1 to move floating windows:
bspc config pointer_action1 move
# Mouse 2 button resizes the window by side:
bspc config pointer_action2 resize_side
# Mouse 3 button (right mouse) resize by corner:
bspc config pointer_action2 resize_corner
2024-08-01 22:32:26 +00:00
${pkgs.feh}/bin/feh --bg-fill ${pkgs.atau-pkgs.atau-wallpapers}/share/backgrounds/atau-wallpapers/aos1.png
2024-07-29 00:00:59 +00:00
'';
2024-08-01 23:25:41 +00:00
startupPrograms = [
"bluetoothd"
2024-08-02 20:05:50 +00:00
"flameshot"
2024-08-15 18:58:55 +00:00
"kdeconnect-indicator"
2024-08-02 20:05:50 +00:00
"nextcloud-client"
2024-08-01 23:25:41 +00:00
"picom"
"polybar primary"
"polybar secondary"
2024-08-02 20:05:50 +00:00
"steam"
2024-08-01 23:25:41 +00:00
];
2024-07-29 00:00:59 +00:00
};
}