user/eww: init

This commit is contained in:
LavaDesu 2022-03-22 23:50:53 +07:00
parent ed93b93c43
commit 5a4b56580b
Signed by: cilly
GPG key ID: 6500251E087653C9
12 changed files with 202 additions and 3 deletions

View file

@ -1,3 +1,4 @@
# Depends on eww
{ config, pkgs, ... }: {
xsession.windowManager.bspwm = {
enable = true;
@ -6,11 +7,13 @@
window_gap = 10;
border_width = 0;
split_ratio = 0.5;
top_padding = 25;
top_padding = 35;
};
extraConfig = ''
${pkgs.feh}/bin/feh --no-fehbg --bg-fill ~/Pictures/Wallpapers/current
systemctl --user restart polybar # home-manager loads this too early
${pkgs.procps}/bin/pkill -SIGINT eww
${pkgs.eww}/bin/eww open mainbar
'';
};
}