From 6a5dd68e7f0c260dd74b8e12c1f0870bd0e2c401 Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Mon, 18 Nov 2024 21:24:12 -0600 Subject: [PATCH] Change to using images for a wallpaper instead of a solid color, looks nicer. --- i3-config | 7 +++++-- scripts/debian-install.sh | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/i3-config b/i3-config index 3f4f978..9a04d7d 100644 --- a/i3-config +++ b/i3-config @@ -32,8 +32,11 @@ exec --no-startup-id xss-lock --transfer-sleep-lock -- i3lock -efp win --nofork # and nm-applet is a desktop environment-independent system tray GUI for it. exec --no-startup-id nm-applet -# Set a background, it's awkward to just see the lockscreen back there. -exec --no-startup-id xsetroot -solid '#111111' +# Set a basic background color, it's awkward to just see the lockscreen back there. +# exec --no-startup-id xsetroot -solid '#111111' + +# Assuming you put background images into /home/yourname/Backgrounds, this next line will get a random one each login and set it as your background :3 +exec --no-startup-id nitrogen --random --set-scaled /home/$(whoami)/Backgrounds # Use pactl to adjust volume in PulseAudio. set $refresh_i3status killall -SIGUSR1 i3status diff --git a/scripts/debian-install.sh b/scripts/debian-install.sh index d6678a8..ab69222 100755 --- a/scripts/debian-install.sh +++ b/scripts/debian-install.sh @@ -1 +1 @@ -sudo apt install i3-wm i3status i3lock suckless-tools -y \ No newline at end of file +sudo apt install i3-wm i3status i3lock suckless-tools nitrogen -y \ No newline at end of file