2022-03-22 23:50:53 +07:00
|
|
|
# Depends on eww
|
2022-03-22 23:11:19 +07:00
|
|
|
{ config, pkgs, ... }: {
|
2021-05-30 21:37:07 +07:00
|
|
|
xsession.windowManager.bspwm = {
|
|
|
|
|
enable = true;
|
2022-01-11 20:56:43 +07:00
|
|
|
monitors = { eDP-1 = [ "1" "2" "3" "4" "5" "6" "7" "8" "9" "0"]; };
|
2021-05-30 21:37:07 +07:00
|
|
|
settings = {
|
|
|
|
|
window_gap = 10;
|
|
|
|
|
border_width = 0;
|
|
|
|
|
split_ratio = 0.5;
|
2022-03-22 23:50:53 +07:00
|
|
|
top_padding = 35;
|
2021-05-30 21:37:07 +07:00
|
|
|
};
|
|
|
|
|
extraConfig = ''
|
2022-03-22 23:11:19 +07:00
|
|
|
${pkgs.feh}/bin/feh --no-fehbg --bg-fill ~/Pictures/Wallpapers/current
|
2022-03-22 23:50:53 +07:00
|
|
|
|
|
|
|
|
${pkgs.procps}/bin/pkill -SIGINT eww
|
|
|
|
|
${pkgs.eww}/bin/eww open mainbar
|
2021-05-30 21:37:07 +07:00
|
|
|
'';
|
|
|
|
|
};
|
|
|
|
|
}
|