diff options
| author | JaKooLit <jimmielovejay@gmail.com> | 2023-11-06 10:34:28 +0900 |
|---|---|---|
| committer | JaKooLit <jimmielovejay@gmail.com> | 2023-11-06 10:34:28 +0900 |
| commit | 8f2b0a6d7437e73f777cfad809fb950c0f2c9491 (patch) | |
| tree | f5db42a96637383f3a8116244387db290f44d6c5 /config/hypr/initial-boot.sh | |
| parent | efb6137d6a2e5f91b526341579a216b880286063 (diff) | |
initial boot script to for pywal & wallpaper set
Diffstat (limited to 'config/hypr/initial-boot.sh')
| -rw-r--r-- | config/hypr/initial-boot.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/config/hypr/initial-boot.sh b/config/hypr/initial-boot.sh new file mode 100644 index 00000000..a024ce63 --- /dev/null +++ b/config/hypr/initial-boot.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +# THIS SCRIPT CAN BE DELETED ONCE BOOTED!! + +# A bash script designed to ran it only once dotfiles installed +# Check if a marker file exists. +if [ ! -f ~/.hyprland_startup_done ]; then + + # Check if the ~/.cache/wal directory exists + if [ ! -d ~/.cache/wal ]; then + printf " Initializing pywal........\n\n" + # Check if the ~/Pictures/wallpapers directory exists + if [ -d ~/Pictures/wallpapers ]; then + # Run wal with random wallpapers from ~/Pictures/wallpapers + wal -i ~/Pictures/wallpapers/* + echo "Pywal initialized" + fi + fi + + # Initializing the initial wallpaper and wal + exec ~/.config/hypr/scripts/Wallpaper.sh + + # Create a marker file to indicate that the script has been executed. + touch ~/.hyprland_startup_done +fi + + |
