26 lines
929 B
Bash
26 lines
929 B
Bash
#!/bin/bash
|
|
|
|
# Get the directory of the current script
|
|
BASE_DIR=$(realpath "$(dirname "${BASH_SOURCE[0]}")/../../")
|
|
|
|
# Source helper file
|
|
source $BASE_DIR/scripts/installer/helper.sh
|
|
|
|
log_message "Final setup script started"
|
|
print_bold_blue "\nCongratulations! Your Simple Hyprland setup is complete!"
|
|
|
|
print_bold_blue "\nRepository Information:"
|
|
echo " - Gitea Repository: https://git.db123.ir/db123/simple-hyprland"
|
|
echo " - Original source: https://github.com/gaurav23b/simple-hyprland"
|
|
|
|
print_bold_blue "\nCustomizations for db123:"
|
|
echo " - Dual GPU: Intel UHD 730 + AMD Radeon RX 580"
|
|
echo " - Monitor: HDMI-A-3, 1920x1080@74.97"
|
|
echo " - Keyboard: us/ir layout"
|
|
echo " - Catppuccin Mocha theme throughout"
|
|
echo " - Wallpaper: awww daemon + mpvpaper for video wallpapers"
|
|
|
|
print_success "\nEnjoy your new Hyprland environment!"
|
|
|
|
echo "------------------------------------------------------------------------"
|