Files
dotfiles/setup.sh

30 lines
1.1 KiB
Bash
Raw Permalink Normal View History

2021-02-21 19:47:29 +05:30
#!/bin/bash
# i3
2021-02-21 11:25:54 +05:30
test ! -d ~/.config/i3 && ln -s "$(pwd)/i3" ~/.config/i3
2021-02-21 19:47:29 +05:30
# i3status
2021-02-21 11:25:54 +05:30
test ! -d ~/.config/i3status && ln -s "$(pwd)/i3status" ~/.config/i3status
2022-12-29 17:41:16 +05:30
## May not need this anymore
2021-02-21 19:47:29 +05:30
# picom
2022-12-29 17:41:16 +05:30
#test ! -d ~/.config/picom && ln -s "$(pwd)/picom" ~/.config/picom
2021-02-21 19:47:29 +05:30
# rofi
2022-12-29 17:41:16 +05:30
#test ! -f ~/.config/wallpaper/wallpaper.jpg && echo "Download to ~/.config/wallpaper/wallpaper.jpg: https://old.reddit.com/r/Art/comments/7ysmt2/lakeside_sunset_digital_8000x4500/"
2021-02-22 15:36:47 +05:30
# dunst
2022-12-29 17:41:16 +05:30
#test ! -d ~/.config/dunst && ln -s "$(pwd)/dunst" ~/.config/dunst
2021-02-22 15:36:47 +05:30
2022-12-29 17:41:16 +05:30
#test ! -d ~/.config/alacritty && ln -s "$(pwd)/alacritty" ~/.config/alacritty
2021-02-21 11:25:54 +05:30
2021-02-21 19:47:29 +05:30
# wallpaper
2022-12-29 17:41:16 +05:30
# mkdir -p ~/.config/wallpaper/
# test -f ~/.config/wallpaper/wallpaper.jpg && echo "I>Wallpaper exists, setting up"
# test ! -f ~/.config/wallpaper/wallpaper.jpg && echo "Download to ~/.config/wallpaper/wallpaper.jpg: https://old.reddit.com/r/Art/comments/7ysmt2/lakeside_sunset_digital_8000x4500/"
2021-02-21 11:50:34 +05:30
2021-02-21 19:47:29 +05:30
# colorscheme generator
2022-12-29 17:41:16 +05:30
# wal -i ~/.config/wallpaper/wallpaper.jpg
2021-02-21 11:25:54 +05:30
2021-02-22 15:36:47 +05:30
# dont use wpg
# test ! -f ~/.config/wallpaper/wallpaper.jpg && wpg -a ~/.config/wallpaper/wallpaper.jpg && wpg -i wallpaper.jpg ./wpg.json && wpg -s wallpaper.jpg
2022-12-29 17:41:16 +05:30
echo "Done"