From 8fb8cd1101a77abfa7d01f28846cc09399741c56 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 23 Feb 2025 15:55:48 +0900 Subject: minor notify-send message correction --- config/hypr/UserScripts/Kool_Quick_Settings.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hypr/UserScripts/Kool_Quick_Settings.sh b/config/hypr/UserScripts/Kool_Quick_Settings.sh index 88e26089..3e70fee3 100755 --- a/config/hypr/UserScripts/Kool_Quick_Settings.sh +++ b/config/hypr/UserScripts/Kool_Quick_Settings.sh @@ -53,13 +53,13 @@ main() { "view/edit Default Keybinds") file="$configs/Keybinds.conf" ;; "Configure Monitors (nwg-displays)") if ! command -v nwg-displays &>/dev/null; then - notify-send -i "$iDIR/ja.png" "Missing nwg-displays" "Install nwg-displays first" + notify-send -i "$iDIR/ja.png" "E-R-R-O-R" "Install nwg-displays first" exit 1 fi nwg-displays ;; "Configure Workspace Rules (nwg-displays)") if ! command -v nwg-displays &>/dev/null; then - notify-send -i "$iDIR/ja.png" "Missing nwg-displays" "Install nwg-displays first" + notify-send -i "$iDIR/ja.png" "E-R-R-O-R" "Install nwg-displays first" exit 1 fi nwg-displays ;; -- cgit v1.2.3 From 22d468e8546f54abd401404d411b97145d4635b2 Mon Sep 17 00:00:00 2001 From: installer Date: Sun, 23 Feb 2025 16:48:35 +0900 Subject: nope.. these 2 does not like $HOME --- config/hypr/UserScripts/Weather.py | 2 +- config/hypr/UserScripts/Weather.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/hypr/UserScripts/Weather.py b/config/hypr/UserScripts/Weather.py index a2ad98b5..b9efe4e4 100755 --- a/config/hypr/UserScripts/Weather.py +++ b/config/hypr/UserScripts/Weather.py @@ -138,7 +138,7 @@ simple_weather = ( ) try: - with open(os.path.expanduser("$HOME/.cache/.weather_cache"), "w") as file: + with open(os.path.expanduser("~/.cache/.weather_cache"), "w") as file: file.write(simple_weather) except Exception as e: print(f"Error writing to cache: {e}") diff --git a/config/hypr/UserScripts/Weather.sh b/config/hypr/UserScripts/Weather.sh index 9bdaff4a..f5bf9fa9 100755 --- a/config/hypr/UserScripts/Weather.sh +++ b/config/hypr/UserScripts/Weather.sh @@ -4,7 +4,7 @@ # Remember to add city city= -cachedir="$HOME/.cache/rbn" +cachedir="~/.cache/rbn" cachefile=${0##*/}-$1 if [ ! -d $cachedir ]; then @@ -84,4 +84,4 @@ echo -e "{\"text\":\""$temperature $condition"\", \"alt\":\""${weather[0]}"\", \ cached_weather=" $temperature \n$condition ${weather[1]}" -echo -e $cached_weather > "$HOME/.cache/.weather_cache" \ No newline at end of file +echo -e $cached_weather > "~/.cache/.weather_cache" \ No newline at end of file -- cgit v1.2.3 From e3dc6fdd99fc84a9c4ce5f9ec9553228ed56ee63 Mon Sep 17 00:00:00 2001 From: installer Date: Sun, 23 Feb 2025 18:14:31 +0900 Subject: kool. waybar restore fixed :) --- copy.sh | 102 +++++++++++++++++++++++++++++++++++++++------------------------- 1 file changed, 63 insertions(+), 39 deletions(-) diff --git a/copy.sh b/copy.sh index 5d0013db..83377b8b 100755 --- a/copy.sh +++ b/copy.sh @@ -465,7 +465,7 @@ fi printf "${INFO} - copying dotfiles ${SKY_BLUE}first${RESET} part\n" # Config directories which will ask the user whether to replace or not -DIRS="ags fastfetch kitty rofi swaync waybar" +DIRS="ags fastfetch kitty rofi swaync" for DIR2 in $DIRS; do DIRPATH="$HOME/.config/$DIR2" @@ -477,18 +477,6 @@ for DIR2 in $DIRS; do case "$DIR1_CHOICE" in [Yy]* ) BACKUP_DIR=$(get_backup_dirname) - - # special handling for waybar since it contains symlinks - if [ "$DIR2" = "waybar" ]; then - for symlink in "$HOME/.config/waybar/config" "$HOME/.config/waybar/style.css"; do - if [ -L "$symlink" ]; then - symlink_target=$(readlink "$symlink") - temp_file="${symlink}_2" - cp -f "$symlink_target" "$temp_file" - fi - done - fi - # Backup the existing directory mv "$DIRPATH" "$DIRPATH-backup-$BACKUP_DIR" 2>&1 | tee -a "$LOG" echo -e "${NOTE} - Backed up $DIR2 to $DIRPATH-backup-$BACKUP_DIR." 2>&1 | tee -a "$LOG" @@ -496,31 +484,6 @@ for DIR2 in $DIRS; do # Copy the new config cp -r "config/$DIR2" "$HOME/.config/$DIR2" 2>&1 | tee -a "$LOG" echo -e "${OK} - Replaced $DIR2 with new configuration." 2>&1 | tee -a "$LOG" - - # Restoring waybar config and style automatically - if [ "$DIR2" = "waybar" ]; then - # Remove existing symlinks first before copying. - rm -rf "$HOME/.config/waybar/config" "$HOME/.config/waybar/style.css" - - # Copy the temp files (config_2 and style.css_2) from the backup and restore them - cp "$DIRPATH-backup-$BACKUP_DIR/config_2" "$HOME/.config/waybar/config" || true - cp "$DIRPATH-backup-$BACKUP_DIR/style.css_2" "$HOME/.config/waybar/style.css" || true - - echo -e "${OK} - previous waybar configs and styles restored automatically" 2>&1 | tee -a "$LOG" - - # Optionally restore other waybar configuration and style files if present - for file in "$DIRPATH-backup-$BACKUP_DIR/configs"/*; do - [ -e "$file" ] || continue # Skip if no files are found - echo "Copying $file to $HOME/.config/waybar/configs/" >> "$LOG" - cp -n "$file" "$HOME/.config/waybar/configs/" - done || true - - for file in "$DIRPATH-backup-$BACKUP_DIR/style"/*; do - [ -e "$file" ] || continue # Skip if no files are found - echo "Copying $file to $HOME/.config/waybar/style/" >> "$LOG" - cp -n "$file" "$HOME/.config/waybar/style/" - done || true - fi # Restoring rofi themes directory unique themes if [ "$DIR2" = "rofi" ]; then @@ -553,6 +516,67 @@ done printf "\n%.0s" {1..1} +# for waybar special part since it contains symlink +DIRW="waybar" +DIRPATHw="$HOME/.config/$DIRW" +if [ -d "$DIRPATHw" ]; then + while true; do + read -p "${CAT} Do you want to replace ${YELLOW}$DIRW${RESET} config? (y/n): " DIR1_CHOICE + case "$DIR1_CHOICE" in + [Yy]* ) + BACKUP_DIR=$(get_backup_dirname) + + # Backup the existing directory + cp -r "$DIRPATHw" "$DIRPATHw-backup-$BACKUP_DIR" 2>&1 | tee -a "$LOG" + echo -e "${NOTE} - Backed up $DIRW to $DIRPATHw-backup-$BACKUP_DIR." 2>&1 | tee -a "$LOG" + + rm -rf "$DIRPATHw" && cp -r "config/$DIRW" "$DIRPATHw" 2>&1 | tee -a "$LOG" + + for file in "config" "style.css"; do + symlink="$DIRPATHw-backup-$BACKUP_DIR/$file" + target_file="$DIRPATHw/$file" + + if [ -L "$symlink" ]; then + symlink_target=$(readlink "$symlink") + if [ -f "$symlink_target" ]; then + rm -f "$target_file" && cp -f "$symlink_target" "$target_file" + echo -e "${NOTE} - Copied $file as a regular file." + else + echo -e "${WARN} - Symlink target for $file does not exist." + fi + fi + done + + for file in "$DIRPATHw-backup-$BACKUP_DIR/configs"/*; do + [ -e "$file" ] || continue # Skip if no files are found + echo "Copying $file to $HOME/.config/waybar/configs/" >> "$LOG" + cp -n "$file" "$HOME/.config/waybar/configs/" + done || true + + for file in "$DIRPATHw-backup-$BACKUP_DIR/style"/*; do + [ -e "$file" ] || continue # Skip if no files are found + echo "Copying $file to $HOME/.config/waybar/style/" >> "$LOG" + cp -n "$file" "$HOME/.config/waybar/style/" + done || true + + break + ;; + [Nn]* ) + echo -e "${NOTE} - Skipping ${YELLOW}$DIRW${RESET} config replacement." 2>&1 | tee -a "$LOG" + break + ;; + * ) + echo -e "${WARN} - Invalid choice. Please enter Y or N." + ;; + esac + done +else + cp -r "config/$DIRW" "$DIRPATHw" 2>&1 | tee -a "$LOG" + echo -e "${OK} - Copy completed for ${YELLOW}$DIRW${RESET}" 2>&1 | tee -a "$LOG" +fi + +printf "\n%.0s" {1..1} + printf "${INFO} - Copying dotfiles ${SKY_BLUE}second${RESET} part\n" # Check if the config directory exists @@ -947,4 +971,4 @@ printf "\n%.0s" {1..1} printf "${INFO} However, it is ${MAGENTA}HIGHLY SUGGESTED${RESET} to logout and re-login or better reboot to avoid any issues" printf "\n%.0s" {1..1} printf "${SKY_BLUE}Thank you${RESET} for using ${MAGENTA}KooL's Hyprland Configuration${RESET}... ${YELLOW}ENJOY!!!${RESET}" -printf "\n%.0s" {1..3} +printf "\n%.0s" {1..3} \ No newline at end of file -- cgit v1.2.3 From cdc5e5646fb2f2cc85b483bbe6fcd89bdae9d1ec Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 23 Feb 2025 19:21:04 +0900 Subject: added listview cycles to all rofi --- config/rofi/config-Animations.rasi | 1 + config/rofi/config-Monitors.rasi | 1 + config/rofi/config-clipboard.rasi | 1 + config/rofi/config-edit.rasi | 1 + config/rofi/config-emoji.rasi | 1 + config/rofi/config-keybinds.rasi | 5 +++-- config/rofi/config-rofi-Beats-menu.rasi | 3 ++- config/rofi/config-rofi-Beats.rasi | 3 ++- config/rofi/config-rofi-theme.rasi | 1 + config/rofi/config-wallpaper-effect.rasi | 1 + config/rofi/config-wallpaper.rasi | 1 + config/rofi/config-waybar-layout.rasi | 1 + config/rofi/config-waybar-style.rasi | 1 + config/rofi/config-zsh-theme.rasi | 1 + 14 files changed, 18 insertions(+), 4 deletions(-) diff --git a/config/rofi/config-Animations.rasi b/config/rofi/config-Animations.rasi index f26eecd6..e1994b6a 100644 --- a/config/rofi/config-Animations.rasi +++ b/config/rofi/config-Animations.rasi @@ -29,6 +29,7 @@ listview { margin: 10px; scrollbar: true; spacing: 6px; + cycle: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-Monitors.rasi b/config/rofi/config-Monitors.rasi index dd5d762d..453d7110 100644 --- a/config/rofi/config-Monitors.rasi +++ b/config/rofi/config-Monitors.rasi @@ -29,6 +29,7 @@ listview { fixed-height: false; margin: 10px; scrollbar: true; + cycle: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-clipboard.rasi b/config/rofi/config-clipboard.rasi index d0d3d3ae..1109c3c0 100644 --- a/config/rofi/config-clipboard.rasi +++ b/config/rofi/config-clipboard.rasi @@ -27,6 +27,7 @@ listview { lines: 8; fixed-height: true; spacing: 6px; + cycle: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-edit.rasi b/config/rofi/config-edit.rasi index 4f5215ef..2ed85ed1 100644 --- a/config/rofi/config-edit.rasi +++ b/config/rofi/config-edit.rasi @@ -29,6 +29,7 @@ listview { fixed-height: false; scrollbar: true; spacing: 6px; + cycle: true; } /* ---- Entry input ---- */ diff --git a/config/rofi/config-emoji.rasi b/config/rofi/config-emoji.rasi index 3ab498e3..80aa5076 100644 --- a/config/rofi/config-emoji.rasi +++ b/config/rofi/config-emoji.rasi @@ -29,6 +29,7 @@ listview { fixed-height: false; scrollbar: true; spacing: 6px; + cycle: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-keybinds.rasi b/config/rofi/config-keybinds.rasi index 256c2e87..03c0c8c1 100644 --- a/config/rofi/config-keybinds.rasi +++ b/config/rofi/config-keybinds.rasi @@ -23,11 +23,12 @@ listview { fixed-height: false; scrollbar: true; spacing: 6px; + cycle: true; } window { - width: 90%; - height: inherit; + width: 90%; + height: inherit; } /* ---- Elements ---- */ diff --git a/config/rofi/config-rofi-Beats-menu.rasi b/config/rofi/config-rofi-Beats-menu.rasi index ea20a09c..aa3e8258 100644 --- a/config/rofi/config-rofi-Beats-menu.rasi +++ b/config/rofi/config-rofi-Beats-menu.rasi @@ -1,5 +1,5 @@ /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ -/* Main config Rofi Beats Config (compact) */ +/* Main config Rofi Beats Config menu */ @import "~/.config/rofi/config.rasi" @@ -32,6 +32,7 @@ listview { colums: 1; lines: 3; spacing: 6px; + cycle: true; } /* ---- Element ---- */ diff --git a/config/rofi/config-rofi-Beats.rasi b/config/rofi/config-rofi-Beats.rasi index 9c67f4e4..f2fb7838 100644 --- a/config/rofi/config-rofi-Beats.rasi +++ b/config/rofi/config-rofi-Beats.rasi @@ -1,5 +1,5 @@ /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ -/* Rofi Beats Config (compact) */ +/* Rofi Beats Config */ @import "~/.config/rofi/config.rasi" @@ -28,6 +28,7 @@ listview { margin: 10px; scrollbar: true; spacing: 6px; + cycle: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-rofi-theme.rasi b/config/rofi/config-rofi-theme.rasi index 83975f64..652cd94c 100644 --- a/config/rofi/config-rofi-theme.rasi +++ b/config/rofi/config-rofi-theme.rasi @@ -29,6 +29,7 @@ listview { margin: 10px; scrollbar: true; spacing: 6px; + cycle: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-wallpaper-effect.rasi b/config/rofi/config-wallpaper-effect.rasi index 61d68a76..1a61e29d 100644 --- a/config/rofi/config-wallpaper-effect.rasi +++ b/config/rofi/config-wallpaper-effect.rasi @@ -29,6 +29,7 @@ listview { fixed-height: false; scrollbar: true; spacing: 6px; + cycle: true; } /* ---- Inputbar ---- */ diff --git a/config/rofi/config-wallpaper.rasi b/config/rofi/config-wallpaper.rasi index 99f68098..1793f320 100644 --- a/config/rofi/config-wallpaper.rasi +++ b/config/rofi/config-wallpaper.rasi @@ -37,6 +37,7 @@ listview { flow: horizontal; fixed-width: true; fixed-height: true; + cycle: true; } /* ---- Element ---- */ diff --git a/config/rofi/config-waybar-layout.rasi b/config/rofi/config-waybar-layout.rasi index 97ebe96f..2b01b157 100644 --- a/config/rofi/config-waybar-layout.rasi +++ b/config/rofi/config-waybar-layout.rasi @@ -34,6 +34,7 @@ listview { margin: 10px; scrollbar: true; spacing: 6px; + cycle: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-waybar-style.rasi b/config/rofi/config-waybar-style.rasi index bf9b11f2..ce6a76a9 100644 --- a/config/rofi/config-waybar-style.rasi +++ b/config/rofi/config-waybar-style.rasi @@ -33,6 +33,7 @@ listview { margin: 10px; scrollbar: true; spacing: 6px; + cycle: true; } /* ---- Elements ---- */ diff --git a/config/rofi/config-zsh-theme.rasi b/config/rofi/config-zsh-theme.rasi index 77de89ea..75c44767 100644 --- a/config/rofi/config-zsh-theme.rasi +++ b/config/rofi/config-zsh-theme.rasi @@ -41,6 +41,7 @@ listview { lines: 3; spacing: 4px; border-radius: 10px; + cycle: true; } /* ---- Element ---- */ -- cgit v1.2.3 From b370efc06c339305d580e7ec43cd0bc0b75937e3 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 23 Feb 2025 23:28:03 +0900 Subject: disabled all Rofi DPI settings as it does not seem to work anyway --- config/rofi/themes/KooL_style-1.rasi | 1 - config/rofi/themes/KooL_style-10-Fancy.rasi | 1 - config/rofi/themes/KooL_style-11-Win11-list-dark.rasi | 9 ++++----- config/rofi/themes/KooL_style-11-Win11-list-light.rasi | 9 ++++----- config/rofi/themes/KooL_style-12-TOP-Docu.rasi | 1 - config/rofi/themes/KooL_style-13-Vertical.rasi | 1 - config/rofi/themes/KooL_style-2-Dark.rasi | 1 - config/rofi/themes/KooL_style-2-Light.rasi | 1 - config/rofi/themes/KooL_style-3-FullScreen-v1.rasi | 1 - config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi | 1 - config/rofi/themes/KooL_style-4.rasi | 1 - config/rofi/themes/KooL_style-5.rasi | 1 - config/rofi/themes/KooL_style-6.rasi | 1 - config/rofi/themes/KooL_style-7.rasi | 1 - config/rofi/themes/KooL_style-8.rasi | 1 - config/rofi/themes/KooL_style-9.rasi | 1 - 16 files changed, 8 insertions(+), 24 deletions(-) diff --git a/config/rofi/themes/KooL_style-1.rasi b/config/rofi/themes/KooL_style-1.rasi index 1bae71f3..f2e0977e 100644 --- a/config/rofi/themes/KooL_style-1.rasi +++ b/config/rofi/themes/KooL_style-1.rasi @@ -12,7 +12,6 @@ configuration { display-window: "  window"; drun-display-format: "{name}"; window-format: "{w} · {c} · {t}"; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; diff --git a/config/rofi/themes/KooL_style-10-Fancy.rasi b/config/rofi/themes/KooL_style-10-Fancy.rasi index 52c9363f..170a888e 100644 --- a/config/rofi/themes/KooL_style-10-Fancy.rasi +++ b/config/rofi/themes/KooL_style-10-Fancy.rasi @@ -9,7 +9,6 @@ configuration { show-icons: true; drun-display-format: "{name}"; window-format: "{w} · {c} · {t}"; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; diff --git a/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi b/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi index 44532d76..e65f174f 100644 --- a/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi +++ b/config/rofi/themes/KooL_style-11-Win11-list-dark.rasi @@ -6,11 +6,10 @@ /* ---- Configuration ---- */ configuration { - dpi: 1; - show-icons: true; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; + show-icons: true; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; } /*****----- Global Properties -----*****/ diff --git a/config/rofi/themes/KooL_style-11-Win11-list-light.rasi b/config/rofi/themes/KooL_style-11-Win11-list-light.rasi index fdcd4f1a..b3979f13 100644 --- a/config/rofi/themes/KooL_style-11-Win11-list-light.rasi +++ b/config/rofi/themes/KooL_style-11-Win11-list-light.rasi @@ -6,11 +6,10 @@ /* ---- Configuration ---- */ configuration { - dpi: 1; - show-icons: true; - hover-select: true; - me-select-entry: "MouseSecondary"; - me-accept-entry: "MousePrimary"; + show-icons: true; + hover-select: true; + me-select-entry: "MouseSecondary"; + me-accept-entry: "MousePrimary"; } /*****----- Global Properties -----*****/ diff --git a/config/rofi/themes/KooL_style-12-TOP-Docu.rasi b/config/rofi/themes/KooL_style-12-TOP-Docu.rasi index 824eb543..67c4a205 100644 --- a/config/rofi/themes/KooL_style-12-TOP-Docu.rasi +++ b/config/rofi/themes/KooL_style-12-TOP-Docu.rasi @@ -17,7 +17,6 @@ configuration { display-window: "  "; drun-display-format: "{name}"; window-format: "{w} · {c} · {t}"; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; diff --git a/config/rofi/themes/KooL_style-13-Vertical.rasi b/config/rofi/themes/KooL_style-13-Vertical.rasi index a7cb340a..b1dc9018 100644 --- a/config/rofi/themes/KooL_style-13-Vertical.rasi +++ b/config/rofi/themes/KooL_style-13-Vertical.rasi @@ -15,7 +15,6 @@ configuration { me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; window-format: "{w} · {c} · {t}"; - dpi: 1; } /* ---- Load wallust colors ---- */ diff --git a/config/rofi/themes/KooL_style-2-Dark.rasi b/config/rofi/themes/KooL_style-2-Dark.rasi index 957bf8a9..709a55f9 100644 --- a/config/rofi/themes/KooL_style-2-Dark.rasi +++ b/config/rofi/themes/KooL_style-2-Dark.rasi @@ -13,7 +13,6 @@ configuration { display-window: "  window"; drun-display-format: "{name}"; window-format: "{w} · {c} · {t}"; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; diff --git a/config/rofi/themes/KooL_style-2-Light.rasi b/config/rofi/themes/KooL_style-2-Light.rasi index 93f68908..f2032071 100644 --- a/config/rofi/themes/KooL_style-2-Light.rasi +++ b/config/rofi/themes/KooL_style-2-Light.rasi @@ -13,7 +13,6 @@ configuration { display-window: "  window"; drun-display-format: "{name}"; window-format: "{w} · {c} · {t}"; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; diff --git a/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi b/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi index 79b68c65..d4bc1b87 100644 --- a/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi +++ b/config/rofi/themes/KooL_style-3-FullScreen-v1.rasi @@ -12,7 +12,6 @@ configuration { display-window: "  window"; drun-display-format: "{name}"; window-format: "{w} · {c} · {t}"; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; diff --git a/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi b/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi index 807a57c3..902b6ccc 100644 --- a/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi +++ b/config/rofi/themes/KooL_style-3-Fullscreen-v2.rasi @@ -13,7 +13,6 @@ configuration { display-ssh: " SSH"; drun-display-format: "{name}"; window-format: "{w} · {c} · {t}"; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; diff --git a/config/rofi/themes/KooL_style-4.rasi b/config/rofi/themes/KooL_style-4.rasi index 8a7b8ed7..06c04e82 100644 --- a/config/rofi/themes/KooL_style-4.rasi +++ b/config/rofi/themes/KooL_style-4.rasi @@ -12,7 +12,6 @@ configuration { display-window: "  window"; drun-display-format: "{name}"; window-format: "{w} · {c} · {t}"; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; diff --git a/config/rofi/themes/KooL_style-5.rasi b/config/rofi/themes/KooL_style-5.rasi index 44f6da65..1f2aba4e 100644 --- a/config/rofi/themes/KooL_style-5.rasi +++ b/config/rofi/themes/KooL_style-5.rasi @@ -14,7 +14,6 @@ configuration { me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; window-format: "{w} · {c} · {t}"; - dpi: 1; } diff --git a/config/rofi/themes/KooL_style-6.rasi b/config/rofi/themes/KooL_style-6.rasi index 255554cf..ea4705c9 100644 --- a/config/rofi/themes/KooL_style-6.rasi +++ b/config/rofi/themes/KooL_style-6.rasi @@ -15,7 +15,6 @@ configuration { me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; window-format: "{w} · {c} · {t}"; - dpi: 1; } /* ---- Load wallust colors ---- */ diff --git a/config/rofi/themes/KooL_style-7.rasi b/config/rofi/themes/KooL_style-7.rasi index 89e9af48..c6d89aeb 100644 --- a/config/rofi/themes/KooL_style-7.rasi +++ b/config/rofi/themes/KooL_style-7.rasi @@ -12,7 +12,6 @@ configuration { display-filebrowser: "  "; display-window: "  "; drun-display-format: "{name}"; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; diff --git a/config/rofi/themes/KooL_style-8.rasi b/config/rofi/themes/KooL_style-8.rasi index ead645bb..1c4b18fa 100644 --- a/config/rofi/themes/KooL_style-8.rasi +++ b/config/rofi/themes/KooL_style-8.rasi @@ -12,7 +12,6 @@ configuration { display-window: "  window"; drun-display-format: "{name}"; window-format: "{w} · {c} · {t}"; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; diff --git a/config/rofi/themes/KooL_style-9.rasi b/config/rofi/themes/KooL_style-9.rasi index 95507ea8..23f3e367 100644 --- a/config/rofi/themes/KooL_style-9.rasi +++ b/config/rofi/themes/KooL_style-9.rasi @@ -12,7 +12,6 @@ configuration { disable-history: false; click-to-exit: true; location: 0; - dpi: 1; hover-select: true; me-select-entry: "MouseSecondary"; me-accept-entry: "MousePrimary"; -- cgit v1.2.3