mirror of
https://github.com/ChrisTitusTech/linutil.git
synced 2024-11-22 05:12:27 +00:00
more tildas
This commit is contained in:
parent
858d1194fb
commit
9618128ff8
|
@ -136,10 +136,10 @@ clone_config_folders() {
|
||||||
# Extract the directory name
|
# Extract the directory name
|
||||||
dir_name=$(basename "$dir")
|
dir_name=$(basename "$dir")
|
||||||
|
|
||||||
# Clone the directory to ~/.config/
|
# Clone the directory to $HOME/.config/
|
||||||
if [ -d "$dir" ]; then
|
if [ -d "$dir" ]; then
|
||||||
cp -r "$dir" "$HOME/.config/"
|
cp -r "$dir" "$HOME/.config/"
|
||||||
printf "%b\n" "${GREEN}Cloned $dir_name to ~/.config/${RC}"
|
printf "%b\n" "${GREEN}Cloned $dir_name to $HOME/.config/${RC}"
|
||||||
else
|
else
|
||||||
printf "%b\n" "${RED}Directory $dir_name does not exist, skipping${RC}"
|
printf "%b\n" "${RED}Directory $dir_name does not exist, skipping${RC}"
|
||||||
fi
|
fi
|
||||||
|
@ -153,7 +153,7 @@ configure_backgrounds() {
|
||||||
# Set the variable BG_DIR to the path where backgrounds will be stored
|
# Set the variable BG_DIR to the path where backgrounds will be stored
|
||||||
BG_DIR="$PIC_DIR/backgrounds"
|
BG_DIR="$PIC_DIR/backgrounds"
|
||||||
|
|
||||||
# Check if the ~/Pictures directory exists
|
# Check if the $HOME/Pictures directory exists
|
||||||
if [ ! -d "$PIC_DIR" ]; then
|
if [ ! -d "$PIC_DIR" ]; then
|
||||||
# If it doesn't exist, print an error message and return with a status of 1 (indicating failure)
|
# If it doesn't exist, print an error message and return with a status of 1 (indicating failure)
|
||||||
printf "%b\n" "${RED}Pictures directory does not exist${RC}"
|
printf "%b\n" "${RED}Pictures directory does not exist${RC}"
|
||||||
|
|
|
@ -2,13 +2,13 @@
|
||||||
|
|
||||||
. ../common-script.sh
|
. ../common-script.sh
|
||||||
|
|
||||||
# Check if ~/.ssh/config exists, if not, create it
|
# Check if $HOME/.ssh/config exists, if not, create it
|
||||||
if [ ! -f "$HOME/.ssh/config" ]; then
|
if [ ! -f "$HOME/.ssh/config" ]; then
|
||||||
touch "$HOME/.ssh/config"
|
touch "$HOME/.ssh/config"
|
||||||
chmod 600 "$HOME/.ssh/config"
|
chmod 600 "$HOME/.ssh/config"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Function to show available hosts from ~/.ssh/config
|
# Function to show available hosts from $HOME/.ssh/config
|
||||||
show_available_hosts() {
|
show_available_hosts() {
|
||||||
printf "%b\n" "Available Systems:"
|
printf "%b\n" "Available Systems:"
|
||||||
grep -E "^Host " "$HOME/.ssh/config" | awk '{print $2}'
|
grep -E "^Host " "$HOME/.ssh/config" | awk '{print $2}'
|
||||||
|
|
Loading…
Reference in New Issue
Block a user