diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2025-02-10 01:16:17 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2025-02-10 01:16:17 +0900 |
| commit | d404c8b6b94d973334a1136223fbf5c412083bdb (patch) | |
| tree | e7394ffef88af10c76c34e1a3df7481ead33cb49 /copy.sh | |
| parent | 752232f326fd82d28dac4107e5bf81818a657903 (diff) | |
Initial upload of various rofi themes
Diffstat (limited to 'copy.sh')
| -rwxr-xr-x | copy.sh | 24 |
1 files changed, 21 insertions, 3 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,7 +284,7 @@ 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 @@ -292,7 +292,7 @@ if [ "$resolution" == "< 1440p" ]; then mv config/hypr/hyprlock-1080p.conf config/hypr/hyprlock.conf elif [ "$resolution" == "≥ 1440p" ]; then - cp -r config/rofi/resolution/1440p/* config/rofi/ + #cp -r config/rofi/resolution/1440p/* config/rofi/ 10-Feb-2025 fi printf "\n" @@ -617,6 +617,24 @@ fi printf "\n%.0s" {1..} +## Rofi Additional themes +source_DIR="$HOME/assets/rofi/themes" +rofi_DIR="$HOME/.local/share/rofi/themes" + +echo -e "${NOTE} copying additional rofi themes into ${YELOW}$rofi_DIR${RESET}... " + +if [ ! -d "$rofi_DIR" ]; then + echo "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 "rofi themes from $source_DIR have been copied to $rofi_DIR" | tee -a "$LOG" + +printf "\n%.0s" {1..} + # wallpaper stuff mkdir -p ~/Pictures/wallpapers if cp -r wallpapers ~/Pictures/; then |
