diff options
Diffstat (limited to 'copy.sh')
| -rwxr-xr-x | copy.sh | 28 |
1 files changed, 23 insertions, 5 deletions
@@ -257,7 +257,7 @@ fi printf "\n" -# Action to do for better rofi and kitty appearance +# Action to do for better kitty appearance while true; do echo "$MAGENTA Select monitor resolution to properly configure appearance and fonts:" echo "$YELLOW -- Enter 1. for monitor res 1440p or less (< 1440p)" @@ -284,15 +284,15 @@ echo "${OK} You have chosen $resolution resolution." 2>&1 | tee -a "$LOG" # Add your commands based on the resolution choice if [ "$resolution" == "< 1440p" ]; then - cp -r config/rofi/resolution/1080p/* config/rofi/ + #cp -r config/rofi/resolution/1080p/* config/rofi/ 10-Feb-2025 sed -i 's/font_size 16.0/font_size 12.0/' config/kitty/kitty.conf # hyprlock matters mv config/hypr/hyprlock.conf config/hypr/hyprlock-2k.conf && mv config/hypr/hyprlock-1080p.conf config/hypr/hyprlock.conf -elif [ "$resolution" == "≥ 1440p" ]; then - cp -r config/rofi/resolution/1440p/* config/rofi/ + #elif [ "$resolution" == "≥ 1440p" ]; then + #cp -r config/rofi/resolution/1440p/* config/rofi/ 10-Feb-2025 fi printf "\n" @@ -615,7 +615,25 @@ if [ -d "$BACKUP_DIR_PATH" ]; then done fi -printf "\n%.0s" {1..} +printf "\n%.0s" {1..1} + +## Rofi Additional themes +source_DIR="assets/rofi/themes" +rofi_DIR="$HOME/.local/share/rofi/themes" + +echo -e "${NOTE} copying additional rofi themes into ${YELLOW}$rofi_DIR${RESET}... " + +if [ ! -d "$rofi_DIR" ]; then + echo "${INFO}Directory $rofi_DIR does not exist. Creating it now..." | tee -a "$LOG" + mkdir -p "$rofi_DIR" +fi + +# Copy the rofi themes from assets +cp -r "$source_DIR"/* "$rofi_DIR" + +echo "${OK}rofi themes from ${YELLOW}$source_DIR${RESET} have been copied to ${MAGENTA}$rofi_DIR${RESET}" | tee -a "$LOG" + +printf "\n%.0s" {1..1} # wallpaper stuff mkdir -p ~/Pictures/wallpapers |
