diff options
| author | Ja.KooLit <jimmielovejay@gmail.com> | 2023-11-07 13:49:12 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-07 13:49:12 +0900 |
| commit | fd4c2c3f7566b46eb22c693ea97f25baadf292e2 (patch) | |
| tree | 13f6698c9430bf4ea3ad9ba8d33e09f7f9c7512c /config/hypr/initial-boot.sh | |
| parent | 3fa5c6a5973d0cec5801f5b46da87e8ff2b7ee90 (diff) | |
| parent | 56f61f9d90095eb5464bd6f38f606e03f8fd9c33 (diff) | |
Merge pull request #10 from JaKooLit/Beta-v0.4
Hyprland-Dots V2
Diffstat (limited to 'config/hypr/initial-boot.sh')
| -rw-r--r-- | config/hypr/initial-boot.sh | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/config/hypr/initial-boot.sh b/config/hypr/initial-boot.sh new file mode 100644 index 00000000..d5ce3233 --- /dev/null +++ b/config/hypr/initial-boot.sh @@ -0,0 +1,30 @@ +#!/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 ~/.config/hypr/.initial_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/mecha-nostalgia.png + echo "Pywal initialized" + fi + fi + + #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" + + # Initial scripts to load inorder to have a proper wallpaper waybar and pywal themes + exec $HOME/.config/hypr/scripts/Wallpaper.sh & + + # Create a marker file to indicate that the script has been executed. + touch ~/.config/hypr/.initial_startup_done +fi + + |
