mirror of
https://github.com/danbulant/dots-hyprland
synced 2026-05-24 12:22:09 +00:00
13 lines
505 B
Bash
Executable file
13 lines
505 B
Bash
Executable file
#!/usr/bin/env bash
|
|
# This script showed one reason about why it's good to split functions and installers in another file.
|
|
#
|
|
# This script is for install/update ags itself, NOT the config for it.
|
|
# The install.sh will install ags for you, why you still need this?
|
|
# Because you may run this script to ONLY update ags, since ags is a very active project currently and updates frequently.
|
|
#
|
|
cd "$(dirname "$0")"
|
|
export base="$(pwd)"
|
|
source ./scriptdata/functions
|
|
source ./scriptdata/installers
|
|
|
|
install-ags
|