From ee513619c4f6ebce49b15020c121cbb6dc2e0c86 Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Sun, 2 Feb 2020 13:20:30 -0700 Subject: Add wallpaper + add install and startup --- assets/wallpaper.jpg | Bin 0 -> 7936023 bytes install.sh | 2 ++ startup | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 assets/wallpaper.jpg diff --git a/assets/wallpaper.jpg b/assets/wallpaper.jpg new file mode 100644 index 0000000..8a1744d Binary files /dev/null and b/assets/wallpaper.jpg differ diff --git a/install.sh b/install.sh index 7cbcfa8..dd8c299 100755 --- a/install.sh +++ b/install.sh @@ -4,7 +4,9 @@ real_dir=$(dirname $(readlink -f "$0")) cd "$real_dir" mkdir -p "$HOME/.xmonad" + ln -sfv "$real_dir/build-script.sh" "$HOME/.xmonad/build" ln -sfv "$real_dir/compton.conf" "$HOME/.config/compton.conf" ln -sfv "$real_dir/startup" "$HOME/.xmonad/startup" ln -sfv "$real_dir/xmobarrc" "$HOME/.xmobarrc" +ln -sfv "$real_dir/assets/wallpaper.jpg" "$HOME/.xmonad/wallpaper.jpg" diff --git a/startup b/startup index a161685..ce97ad4 100755 --- a/startup +++ b/startup @@ -4,7 +4,7 @@ xrandr --output DVI-I-1 --right-of DP-5 --mode 2560x1440 # Change the background image using 'feh' -feh --bg-scale ~/Downloads/marco-xu-zcvWUNrmPBQ-unsplash.jpg +feh --bg-scale "$HOME/.xmonad/wallpaper.jpg" # Increase the kebyoard repeat rate and decrease the repeat time. xset r rate 200 60 -- cgit