mirror of
https://github.com/end-4/dots-hyprland.git
synced 2026-06-05 14:59:27 -05:00
2014a030d6
Still decide to deprecate install.sh cuz TAB completion can not be done without intrusive and automatic method, so just use ./setup instead.
11 lines
325 B
Bash
Executable File
11 lines
325 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Remove this script (install.sh) after 2025.12.01
|
|
|
|
STY_RED='\e[31m'
|
|
STY_RST='\e[00m'
|
|
printf "${STY_RED}You are using \"./install.sh\" which is kept for compatibility and will be removed in future.\n"
|
|
printf "Please use \"./setup install\" instead.${STY_RST}\n"
|
|
|
|
cd "$(dirname "$0")"
|
|
./setup install "$@"
|