Changed background

This commit is contained in:
James Patrick 2022-08-11 20:39:46 -04:00
parent 7c2f9d4f11
commit 532707a19f
1 changed files with 9 additions and 4 deletions

View File

@ -4,9 +4,8 @@ let
graphical = config.this.graphical; graphical = config.this.graphical;
modifier = "Mod4"; modifier = "Mod4";
wallpaper = pkgs.fetchurl { wallpaper = pkgs.fetchurl {
url = url = "https://i.imgur.com/6B4Hgw0.jpeg";
"https://raw.githubusercontent.com/catppuccin/wallpapers/main/landscapes/evening-sky.png"; sha256 = "sha256-dErBslKRBTLKbTTUanIPDwX8CcMJ0Kpi3oof0oXlHys=";
sha256 = "sha256-fYMzoY3un4qGOSR4DMqVUAFmGGil+wUze31rLLrjcAc=";
}; };
in with lib; { in with lib; {
@ -47,6 +46,11 @@ in with lib; {
scrot scrot
xclip xclip
xdotool xdotool
xorg.xrandr
autorandr
arandr
stalonetray
pavucontrol
]; ];
}; };
}; };
@ -59,6 +63,7 @@ in with lib; {
bars = [ ]; bars = [ ];
colors = { colors = {
focusedInactive = { focusedInactive = {
background = "#1E1E2E"; background = "#1E1E2E";
border = "#1E1E2E"; border = "#1E1E2E";
childBorder = "#1E1E2E"; childBorder = "#1E1E2E";
@ -128,7 +133,7 @@ in with lib; {
modifier = "Mod4"; modifier = "Mod4";
startup = [ startup = [
{ command = "${pkgs.autotiling}/bin/autotiling"; } { command = "${pkgs.autotiling}/bin/autotiling"; }
{ command = "${pkgs.feh}/bin/feh --bg-scale ${wallpaper}"; } { command = "${pkgs.feh}/bin/feh --bg-center ${wallpaper}"; }
{ command = "systemctl --user restart polybar.service"; } { command = "systemctl --user restart polybar.service"; }
]; ];
}; };