diff options
| author | JaKooLit <jimmielovejay@gmail.com> | 2023-11-07 10:30:33 +0900 |
|---|---|---|
| committer | JaKooLit <jimmielovejay@gmail.com> | 2023-11-07 10:30:33 +0900 |
| commit | f32804856c0516ddfdb7b252fb5808cdc3e90282 (patch) | |
| tree | 4bb71d2517f43c283fb50a7fbb5c2205bd39f630 | |
| parent | 0b939394e31506d1344e34b3b049f04aced8cb95 (diff) | |
Initial boot
| -rw-r--r-- | config/hypr/initial-boot.sh | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/config/hypr/initial-boot.sh b/config/hypr/initial-boot.sh index c7353cdd..62d4c375 100644 --- a/config/hypr/initial-boot.sh +++ b/config/hypr/initial-boot.sh @@ -4,7 +4,7 @@ # A bash script designed to ran it only once dotfiles installed # Check if a marker file exists. -if [ ! -f ~/.hyprland_startup_done ]; then +if [ ! -f ~/.config/hypr/.initial_startup_done ]; then # Check if the ~/.cache/wal directory exists if [ ! -d ~/.cache/wal ]; then @@ -12,7 +12,7 @@ if [ ! -f ~/.hyprland_startup_done ]; then # Check if the ~/Pictures/wallpapers directory exists if [ -d ~/Pictures/wallpapers ]; then # Run wal with random wallpapers from ~/Pictures/wallpapers - wal -i ~/Pictures/wallpapers/* + wal -i ~/Pictures/wallpapers/mecha-nostalgia.png echo "Pywal initialized" fi fi @@ -20,11 +20,16 @@ if [ ! -f ~/.hyprland_startup_done ]; then #initial symlink for Pywal Dark and Light for Rofi Themes ln -sf "$HOME/.cache/wal/colors-rofi-dark.rasi" "$HOME/.config/rofi/pywal-color/pywal-theme.rasi" - # Initializing the initial wallpaper and wal - exec ~/.config/hypr/scripts/Wallpaper.sh & + # Setting initial wallpaper + exec swww query || swww init && swww img $HOME/Pictures/wallpapers/mecha-nostalgia.png & + + # Initial scripts inorder to have a proper waybar and pywal themes + exec $HOME/.config/hypr/scripts/PywalSwww.sh & + + exec $HOME/.config/hypr/scripts/Refresh.sh # Create a marker file to indicate that the script has been executed. - touch ~/.hyprland_startup_done + touch ~/.config/hypr/.initial_startup_done fi |
