-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.sh
executable file
·159 lines (132 loc) · 5.38 KB
/
setup.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#!/bin/sh
NoColor="\033[0m"
Red='\033[0;31m' # Red
Black='\033[0;30m' # Black
Green='\033[0;32m' # Green
Yellow='\033[0;33m' # Yellow
Blue='\033[0;34m' # Blue
Purple='\033[0;35m' # Purple
Cyan='\033[0;36m' # Cyan
White='\033[0;37m' # White
#
# TARGET="$HOME/.config/"
# printf "${Green}What would you like your username to be? ${NoColor}"
# read username
# script_dir="$(dirname "$(readlink -f "$0")")"
# find "$script_dir/nixos/" -type f -exec sed -i "s/USER_NAME/$username/g" {} +
#
# exit 1
#
# [[ -d "$TARGET" ]] && printf "${Green}[+]${Blue} Configs folder exists. Propigating...${NoColor}\n" || mkdir $TARGET
# sleep 1
# printf "${Green}[+] ${Blue}Copying program config files to ${Yellow}~/.config${NoColor}\n"
# rsync -rahi --exclude ".git/" --exclude "nixos/" --exclude ".mozilla" --exclude rtorrent --exclude "bin" --exclude "setup.sh" --exclude "update_conf.sh" $script_dir/ $TARGET >/dev/null
# rsync -rahi "$script_dir/.mozilla ~/"
# printf "${Green}[+] ${Blue}Copying NixOS files to ${Purple}/etc/nixos${NoColor}\n"
# sleep 1
# TARGET="/etc/nixos/"
# rsync -rahi "$script_dir/nixos/" $TARGET >/dev/null
# printf "${Green}[+] ${Blue}Copying Mozilla files to ${Purple}~/.mozilla${NoColor}\n"
# sleep 1
# TARGET="$HOME/.mozilla"
# rsync -rahi "$script_dir/mozilla/" "$TARGET"
# printf "${Green}[+] ${Blue}Copying .rtorrent.rc to ${Purple}~/${NoColor}\n"
# sleep 1
# TARGET="$HOME/"
# rsync -rahi "$script_dir/rtorrent/.rtorrent.rc" "$TARGET"
#
# results=""
#
# # Search for "ELDEN RING" in ~/.local/share and append the results
# results+="$(find ~/.local/share -type d -name 'ELDEN RING')"
#
# # Search for "ELDEN RING" in /mnt and append the results
# results+="$(find /mnt/storage/ -type d -name 'ELDEN RING')"
# rsync ./er-patcher "$results/"
# while true; do
# printf "${Green}[+]${Blue} Please choose upstream:\n${Green}NixOS Stable: 1${NoColor} \n${Yellow}NixOS Unstable:2${NoColor}"
# read user_input
# if [ "$user_input" == "1" ]; then
# echo "Applying NixOS Stable"
# printf "${Green}[+] ${Blue}Allow Home-Manager${NoColor}\n"
# sudo nix-channel --add https://github.com/nix-community/home-manager/archive/release-23.05.tar.gz home-manager
# sudo nix-channel --update
# # Place your code for option 1 here
# break
# elif [ "$user_input" == "2" ]; then
# printf "${Green}[+] ${Blue}Enabling NixOS Unstable${NoColor}\n"
# sudo nix-channel --add https://nixos.org/channels/nixos-unstable
# printf "${Green}[+] ${Blue}Allow Home-Manager${NoColor}\n"
# sudo nix-channel --add https://github.com/nix-community/home-manager/archive/master.tar.gz home-manager
# sudo nix-channel --update
# break
# else
# echo "Invalid input. Please enter 1 or 2."
# fi
# done
printf "${Green}Complete!${NoColor}\n"
set -eu
readonly FIRST_FONT_VERSION='10.3.1'
readonly FIRST_FONT_NAME='iosevka-term-ss04'
readonly USER_FONT_DIR="${HOME}/.local/share/fonts"
readonly FIRST_DL_URL=$(printf '%s' \
"https://github.com/be5invis/Iosevka/releases/download/" \
"v${FIRST_FONT_VERSION}/ttf-${FIRST_FONT_NAME}-${FIRST_FONT_VERSION}.zip")
readonly NC='\033[0m'
readonly IT='\033[3m'
readonly RED='\033[1;31m'
readonly BLUE='\033[1;34m'
readonly DIM='\033[2m'
readonly GREEN='\033[1;32m'
first_main() {
if ! command -v unzip >/dev/null 2>&1; then
printf '%b' \
"${RED}error:${NC} ${IT}unzip${NC} is required " \
"for archive extraction but not installed.\n" >&2
exit 1
fi
readonly temp_dir=$(mktemp -d)
printf "${BLUE}::${NC} Downloading ${IT}%s${NC} font...\n" "${FIRST_FONT_NAME}"
curl -fLsS -o "${temp_dir}/${FIRST_FONT_NAME}.zip" "${FIRST_DL_URL}"
printf "${BLUE}::${NC} Extracting to ${IT}~/.local/share/fonts${NC}...\n"
mkdir -p "${USER_FONT_DIR}"
unzip -qo "${temp_dir}/${FIRST_FONT_NAME}.zip" -d "${USER_FONT_DIR}/${FIRST_FONT_NAME}"
rm -r "${temp_dir}"
readonly temp_dir2=$(mktemp -d)
curl -fLsS -o "${temp_dir2}/JetBrainsMono.zip" "https://github.com/ryanoasis/nerd-fonts/releases/download/v3.1.1/JetBrainsMono.zip"
unzip -qo "${temp_dir2}/JetBrainsMono.zip" -d "${USER_FONT_DIR}/JetBrainsMonoNerdFonts"
}
readonly FONT_VERSION='2.0.0'
readonly FONT_NAME='M+ 1m'
readonly FONT_STYLES='Bold Light Medium Regular Thin'
readonly DL_URL=$(printf '%s' \
"https://github.com/ryanoasis/nerd-fonts/raw/" \
"${FONT_VERSION}/patched-fonts/MPlus/%s/complete/%s")
readonly FILENAME_FORMAT="${FONT_NAME}%s Nerd Font Complete.ttf"
download_font() {
font_style=$1
if [ "${font_style}" != 'Regular' ]; then
style_in_filename=$(printf " ${font_style}" | awk '{print tolower($0)}')
else
style_in_filename=''
fi
filename=$(printf "${FILENAME_FORMAT}" "${style_in_filename}")
encoded_filename=$(printf "${filename}" | sed 's/ /%20/g')
url=$(printf "${DL_URL}" "${font_style}" "${encoded_filename}")
printf " ${DIM}[${NC} ${DIM}]${NC} %s " "${filename}"
curl -fLsS -o "${filename}" "${url}"
printf "\r ${DIM}[${NC}%b${DIM}]${NC} %s\n" "${GREEN}✓${NC}" "${filename}"
}
second_main() {
mkdir -p "${USER_FONT_DIR}/${FONT_NAME}"
cd "${USER_FONT_DIR}/${FONT_NAME}"
printf "${BLUE}::${NC} Downloading ${IT}%s${NC} fonts...\n" "${FONT_NAME}"
for style in ${FONT_STYLES}; do
download_font "${style}"
done
printf "${BLUE}::${NC} Rebuilding font cache...\n"
fc-cache -f "${USER_FONT_DIR}"
}
first_main
second_main
# kak:filetype=sh