Remove feh and nitrogen

Go back to the default awesome WM wallpaper.
This commit is contained in:
Oliver Davies 2024-08-15 21:22:55 +01:00
parent 0a2a924a9d
commit 92cecef02c
4 changed files with 2 additions and 28 deletions

View file

@ -93,7 +93,7 @@ theme.titlebar_maximized_button_focus_inactive = themes_path .. "default/titleba
theme.titlebar_maximized_button_normal_active = themes_path .. "default/titlebar/maximized_normal_active.png"
theme.titlebar_maximized_button_focus_active = themes_path .. "default/titlebar/maximized_focus_active.png"
-- theme.wallpaper = themes_path .. "default/background.png"
theme.wallpaper = themes_path .. "default/background.png"
-- You can use your own layout icons like this:
theme.layout_fairh = themes_path .. "default/layouts/fairhw.png"

View file

@ -11,7 +11,6 @@
./modules/desktop/bluetuith.nix
./modules/espanso.nix
./modules/gtk.nix
./modules/feh.nix
./modules/flameshot.nix
./modules/gtk.nix
./modules/mpv.nix

View file

@ -1 +0,0 @@
{ programs.feh.enable = true; }

View file

@ -1,29 +1,5 @@
{ self, username, ... }:
{
pkgs,
self,
username,
...
}:
let
inherit (pkgs) writeShellApplication;
script-autostart = writeShellApplication {
name = "awesome-autostart";
text = ''
set -o errexit
${pkgs.nitrogen}/bin/nitrogen --set-zoom-fill --random "''${HOME}/Pictures/Wallpaper"
'';
};
in
{
environment.systemPackages = with pkgs; [
script-autostart
nitrogen
];
services.xserver = {
displayManager.lightdm.enable = true;