mirror of
https://github.com/gaitas13/dotfiles.git
synced 2025-12-06 07:15:37 +01:00
58 lines
2.3 KiB
Bash
Executable file
58 lines
2.3 KiB
Bash
Executable file
#!/bin/bash
|
|
# A bash script designed to run only once dotfiles installed
|
|
|
|
# THIS SCRIPT CAN BE DELETED ONCE SUCCESSFULLY BOOTED!! And also, edit ~/.config/hypr/configs/Settings.conf
|
|
# not necessary to do since this script is only designed to run only once as long as the marker exists
|
|
# However, I do highly suggest not to touch it since again, as long as the marker exist, script wont run
|
|
|
|
# Variables
|
|
scriptsDir=$HOME/.config/hypr/scripts
|
|
wallpaper=$HOME/Pictures/wallpapers/xenia_grub_edit_1080.png
|
|
waybar_style="$HOME/.config/waybar/style/Catppuccin-Macchiato Custom.css"
|
|
kvantum_theme="Catppuccin-Macchiato-Flamingo"
|
|
|
|
swww="swww img"
|
|
effect="--transition-bezier .43,1.19,1,.4 --transition-fps 30 --transition-type grow --transition-pos 0.925,0.977 --transition-duration 2"
|
|
|
|
# Check if a marker file exists.
|
|
if [ ! -f ~/.config/hypr/.initial_startup_done ]; then
|
|
|
|
# Initialize pywal and wallpaper
|
|
if [ -f "$wallpaper" ]; then
|
|
wal -i $wallpaper -s -t > /dev/null
|
|
swww init && $swww $wallpaper $effect
|
|
#swaybg -o "*" -i $wallpaper -m fill
|
|
"$scriptsDir/PywalSwww.sh" > /dev/null 2>&1 &
|
|
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" > /dev/null 2>&1 &
|
|
|
|
|
|
# initiate GTK dark mode and apply icon and cursor theme
|
|
#gsettings set org.gnome.desktop.interface color-scheme prefer-dark > /dev/null 2>&1 &
|
|
#gsettings set org.gnome.desktop.interface gtk-theme Tokyonight-Dark-BL-LB > /dev/null 2>&1 &
|
|
#gsettings set org.gnome.desktop.interface icon-theme Tokyonight-Dark > /dev/null 2>&1 &
|
|
#gsettings set org.gnome.desktop.interface cursor-theme Bibata-Modern-Ice > /dev/null 2>&1 &
|
|
gsettings set org.gnome.desktop.interface cursor-size 24 > /dev/null 2>&1 &
|
|
|
|
# initiate kvantum theme
|
|
kvantummanager --set "$kvantum_theme" > /dev/null 2>&1 &
|
|
|
|
# initiate the kb_layout (for some reason) waybar cant launch it
|
|
"$scriptsDir/SwitchKeyboardLayout.sh" > /dev/null 2>&1 &
|
|
|
|
# Initial waybar style
|
|
if [ -f "$waybar_style" ]; then
|
|
ln -sf "$waybar_style" "$HOME/.config/waybar/style.css"
|
|
|
|
# Refreshing waybar, swaync, rofi etc.
|
|
"$scriptsDir/Refresh.sh" > /dev/null 2>&1 &
|
|
fi
|
|
|
|
# Create a marker file to indicate that the script has been executed.
|
|
touch ~/.config/hypr/.initial_startup_done
|
|
|
|
exit
|
|
fi
|