From 7ea9e62ef8779a015c7b9d236360883431e70466 Mon Sep 17 00:00:00 2001 From: SuJin353 <131243461+SuJin353@users.noreply.github.com> Date: Tue, 24 Sep 2024 21:17:33 +0700 Subject: feat: change dark light wallpaper to its opposite wallpaper --- config/hypr/scripts/DarkLight.sh | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index 77426902..b63a3ba2 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -110,14 +110,20 @@ else sed -i '/^cursor /s/^cursor .*/cursor #000000/' "${kitty_conf}" fi - - +#Get current wallpaper name +current_wallpaper=$(swww query | awk -F'/' '{print $NF}' | awk '{print $1}') # Set Dynamic Wallpaper for Dark or Light Mode -if [ "$next_mode" = "Dark" ]; then - next_wallpaper="$(find "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" +if [ "$next_mode" = "Dark" ] && [ -f "$light_wallpapers/$current_wallpaper" ]; then + next_wallpaper="$dark_wallpapers/$current_wallpaper" +elif [ "$next_mode" = "Light" ] && [ -f "$dark_wallpapers/$current_wallpaper" ]; then + next_wallpaper="$light_wallpapers/$current_wallpaper" else - next_wallpaper="$(find "${light_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" + if [ "$next_mode" = "Dark" ]; then + next_wallpaper="$(find "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -pri> + else + next_wallpaper="$(find "${light_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -pr> + fi fi # Update wallpaper using swww command -- cgit v1.2.3 From 65a6dddd7641cf7fb2aca7f3c8ebe657a631621d Mon Sep 17 00:00:00 2001 From: SuJin353 <131243461+SuJin353@users.noreply.github.com> Date: Wed, 25 Sep 2024 14:11:58 +0700 Subject: Update DarkLight.sh change dark light wallpaper to its opposite wallpaper(need picture in light and dark folder have the same name) --- config/hypr/scripts/DarkLight.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index b63a3ba2..66c8549d 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -120,9 +120,9 @@ elif [ "$next_mode" = "Light" ] && [ -f "$dark_wallpapers/$current_wallpaper" ]; next_wallpaper="$light_wallpapers/$current_wallpaper" else if [ "$next_mode" = "Dark" ]; then - next_wallpaper="$(find "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -pri> + next_wallpaper="$(find "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" else - next_wallpaper="$(find "${light_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -pr> + next_wallpaper="$(find "${light_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" fi fi -- cgit v1.2.3 From ccba7a1ef604b509e8a371d2f91f54edc4dc8397 Mon Sep 17 00:00:00 2001 From: SuJin353 <131243461+SuJin353@users.noreply.github.com> Date: Wed, 25 Sep 2024 15:38:55 +0700 Subject: Update DarkLight.sh --- config/hypr/scripts/DarkLight.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index 66c8549d..d34f5cfc 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -115,9 +115,9 @@ current_wallpaper=$(swww query | awk -F'/' '{print $NF}' | awk '{print $1}') # Set Dynamic Wallpaper for Dark or Light Mode if [ "$next_mode" = "Dark" ] && [ -f "$light_wallpapers/$current_wallpaper" ]; then - next_wallpaper="$dark_wallpapers/$current_wallpaper" + next_wallpaper="$dark_wallpapers/${current_wallpaper/Light/Dark" elif [ "$next_mode" = "Light" ] && [ -f "$dark_wallpapers/$current_wallpaper" ]; then - next_wallpaper="$light_wallpapers/$current_wallpaper" + next_wallpaper="$light_wallpapers/$current_wallpaper/Dark/Light" else if [ "$next_mode" = "Dark" ]; then next_wallpaper="$(find "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" -- cgit v1.2.3 From 10566db5346f0a9a59a7fb3b717289cceb903e60 Mon Sep 17 00:00:00 2001 From: SuJin353 <131243461+SuJin353@users.noreply.github.com> Date: Fri, 27 Sep 2024 11:28:10 +0700 Subject: Update DarkLight.sh --- config/hypr/scripts/DarkLight.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index d34f5cfc..3b9afabb 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -115,9 +115,9 @@ current_wallpaper=$(swww query | awk -F'/' '{print $NF}' | awk '{print $1}') # Set Dynamic Wallpaper for Dark or Light Mode if [ "$next_mode" = "Dark" ] && [ -f "$light_wallpapers/$current_wallpaper" ]; then - next_wallpaper="$dark_wallpapers/${current_wallpaper/Light/Dark" + next_wallpaper="$dark_wallpapers/${current_wallpaper/Light/Dark}" elif [ "$next_mode" = "Light" ] && [ -f "$dark_wallpapers/$current_wallpaper" ]; then - next_wallpaper="$light_wallpapers/$current_wallpaper/Dark/Light" + next_wallpaper="$light_wallpapers/${current_wallpaper/Dark/Light}" else if [ "$next_mode" = "Dark" ]; then next_wallpaper="$(find "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" -- cgit v1.2.3 From 14b07b43fc7b4f1e04816a59ea209f20de9b7d62 Mon Sep 17 00:00:00 2001 From: "Ja.KooLit" <85185940+JaKooLit@users.noreply.github.com> Date: Thu, 3 Oct 2024 23:37:08 +0900 Subject: Revert "feat: change dark light wallpaper to its opposite wallpaper" --- config/hypr/scripts/DarkLight.sh | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index 3b9afabb..77426902 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -110,20 +110,14 @@ else sed -i '/^cursor /s/^cursor .*/cursor #000000/' "${kitty_conf}" fi -#Get current wallpaper name -current_wallpaper=$(swww query | awk -F'/' '{print $NF}' | awk '{print $1}') + + # Set Dynamic Wallpaper for Dark or Light Mode -if [ "$next_mode" = "Dark" ] && [ -f "$light_wallpapers/$current_wallpaper" ]; then - next_wallpaper="$dark_wallpapers/${current_wallpaper/Light/Dark}" -elif [ "$next_mode" = "Light" ] && [ -f "$dark_wallpapers/$current_wallpaper" ]; then - next_wallpaper="$light_wallpapers/${current_wallpaper/Dark/Light}" +if [ "$next_mode" = "Dark" ]; then + next_wallpaper="$(find "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" else - if [ "$next_mode" = "Dark" ]; then - next_wallpaper="$(find "${dark_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" - else - next_wallpaper="$(find "${light_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" - fi + next_wallpaper="$(find "${light_wallpapers}" -type f \( -iname "*.jpg" -o -iname "*.png" \) -print0 | shuf -n1 -z | xargs -0)" fi # Update wallpaper using swww command -- cgit v1.2.3 From 72c9e6e9b3b2d6e3eaa23744fbb8723dce14ea7f Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 27 Oct 2024 23:37:31 +0900 Subject: added new waybar style. Minor adjustment on swaync waybar --- config/waybar/ModulesCustom | 2 +- config/waybar/style/[Colorful] Oglo Chicklets.css | 400 ++++++++++++++++++++++ 2 files changed, 401 insertions(+), 1 deletion(-) create mode 100644 config/waybar/style/[Colorful] Oglo Chicklets.css diff --git a/config/waybar/ModulesCustom b/config/waybar/ModulesCustom index d0c8e506..fa989061 100644 --- a/config/waybar/ModulesCustom +++ b/config/waybar/ModulesCustom @@ -136,7 +136,7 @@ "custom/swaync": { "tooltip": true, "tooltip-format": "Left Click: Launch Notification Center\nRight Click: Do not Disturb", - "format": "{} {icon}", + "format": "{} {icon} ", "format-icons": { "notification": "", "none": "", diff --git a/config/waybar/style/[Colorful] Oglo Chicklets.css b/config/waybar/style/[Colorful] Oglo Chicklets.css new file mode 100644 index 00000000..e8044bbe --- /dev/null +++ b/config/waybar/style/[Colorful] Oglo Chicklets.css @@ -0,0 +1,400 @@ +* { + font-family: JetBrainsMono Nerd Font, FontAwesome, Roboto, Helvetica, Arial, sans-serif; + font-size: 97%; + font-weight: bold; +} + +window#waybar { + background-color: #232a2e; + border-bottom: 8px solid #1d2327; + color: #d3c6aa; + transition-property: background-color; + transition-duration: .5s; +} + +window#waybar.hidden { + opacity: 0.2; +} + +/* +window#waybar.empty { + background-color: transparent; +} +window#waybar.solo { + background-color: #FFFFFF; +} +*/ + +button { + all: unset; + background-color: #778f52; + color: #2d353b; + border: none; + border-bottom: 8px solid #5d743e; + border-radius: 5px; + padding-left: 15px; + padding-right: 15px; + transition: transform 0.1s ease-in-out; +} + +button:hover { + background: inherit; + background-color: #92ab6c; + border-bottom: 8px solid #788f57; +} + +button.active { + background: inherit; + background-color: #a5be7e; + border-bottom: 8px solid #8aa168; +} + +#mode { + background-color: #64727D; + border-bottom: 3px solid #ffffff; +} + +#backlight, +#backlight-slider, +#battery, +#bluetooth, +#clock, +#cpu, +#disk, +#idle_inhibitor, +#keyboard-state, +#memory, +#mode, +#mpris, +#network, +#power-profiles-daemon, +#pulseaudio, +#pulseaudio-slider, +#taskbar, +#temperature, +#tray, +#window, +#wireplumber, +#workspaces, +#custom-backlight, +#custom-browser, +#custom-cava_mviz, +#custom-cycle_wall, +#custom-file_manager, +#custom-keybinds, +#custom-keyboard, +#custom-light_dark, +#custom-lock, +#custom-hint, +#custom-hypridle, +#custom-menu, +#custom-power_vertical, +#custom-power, +#custom-settings, +#custom-spotify, +#custom-swaync, +#custom-tty, +#custom-updater, +#custom-weather, +#custom-weather.clearNight, +#custom-weather.cloudyFoggyDay, +#custom-weather.cloudyFoggyNight, +#custom-weather.default, +#custom-weather.rainyDay, +#custom-weather.rainyNight, +#custom-weather.severe, +#custom-weather.showyIcyDay, +#custom-weather.snowyIcyNight, +#custom-weather.sunnyDay{ + color: #ffffff; + border-radius: 5px; + padding-left: 5px; + padding-right: 5px; +} + +#window, +#workspaces { + margin: 0 4px; +} + +/* If workspaces is the leftmost module, omit left margin */ +.modules-left > widget:first-child > #workspaces { + margin-left: 0; +} + +/* If workspaces is the rightmost module, omit right margin */ +.modules-right > widget:last-child > #workspaces { + margin-right: 0; +} + +#window { + background-color: #343f44; + color: #d3c6aa; + border-bottom: 8px solid #2b3539; +} + +#custom-swaync { + background-color: #778f52; + color: #2d353b; + border-bottom: 8px solid #5d743e; +} + +#custom-menu { + background-color: #778f52; + color: #2d353b; + border-bottom: 8px solid #5d743e; +} + +#custom-power { + background-color: #ee606a; + color: #2d353b; + border-bottom: 8px solid #ca4853; + padding-left: 10px; +} + +#custom-power_vertical{ + background-color: #ee606a; + color: #2d353b; + border-bottom: 8px solid #ca4853; +} + +#clock { + background-color: #96a84c; + color: #2d353b; + border-bottom: 8px solid #7a8c37; +} + +#battery { + background-color: #3a998f; + color: #2d353b; + border-bottom: 8px solid #227d74; +} + +@keyframes blink { + to { + background-color: #ffffff; + color: #000000; + } +} + +#battery.critical:not(.charging) { + background-color: #ee606a; + color: #2d353b; + border-bottom: 8px solid #ca4853; +} + +label:focus { + background-color: #000000; +} + +#cpu { + background-color: #778f52; + color: #2d353b; + border-bottom: 8px solid #5d743e; +} + +#memory { + background-color: #d980ad; + color: #2d353b; + border-bottom: 8px solid #b86790; +} + +#disk { + background-color: #964B00; + border-bottom: 8px solid #793300; +} + +#custom-lock, +#custom-light_dark, +#backlight { + background-color: #64b6ac; + color: #2d353b; + border-bottom: 8px solid #4f9990; + padding-left: 10px; +} + +#network { + background-color: #2980b9; +} + +#network.disconnected { + background-color: #f53c3c; +} + +#pulseaudio { + background-color: #d8ac47; + color: #2d353b; + border-bottom: 8px solid #b78f30; +} + +#pulseaudio.muted { + background-color: #90b1b1; + color: #2a5c45; +} + +#wireplumber { + background-color: #fff0f5; + color: #000000; +} + +#wireplumber.muted { + background-color: #f53c3c; +} + +#custom-media { + background-color: #66cc99; + color: #2a5c45; + min-width: 100px; +} + +#custom-media.custom-spotify { + background-color: #66cc99; +} + +#custom-media.custom-vlc { + background-color: #ffa000; +} + +#temperature { + background-color: #f0932b; + border-bottom: 8px solid #b78f30; +} + +#temperature.critical { + background-color: #eb4d4b; +} + +#tray { + background-color: #e67f51; + color: #2d353b;; + border-bottom: 8px solid #c3653b; +} + +#tray > .passive { + -gtk-icon-effect: dim; +} + +#tray > .needs-attention { + -gtk-icon-effect: highlight; + background-color: #eb4d4b; +} + +#idle_inhibitor { + background-color: #2d3436; +} + +#idle_inhibitor.activated { + background-color: #ecf0f1; + color: #2d3436; +} + +#mpd { + background-color: #66cc99; + color: #2a5c45; +} + +#mpd.disconnected { + background-color: #f53c3c; +} + +#mpd.stopped { + background-color: #90b1b1; +} + +#mpd.paused { + background-color: #51a37a; +} + +#language { + background: #00b093; + color: #740864; + min-width: 16px; +} + +#keyboard-state { + background: #97e1ad; + color: #000000; + min-width: 16px; + border-bottom: 8px solid #78b48a; +} + +#keyboard-state > label { + padding: 0 5px; +} + +#keyboard-state > label.locked { + background: rgba(0, 0, 0, 0.2); +} + +#scratchpad { + background: rgba(0, 0, 0, 0.2); +} + +#scratchpad.empty { + background-color: transparent; +} + +tooltip { + background-color: #232a2e; + border: none; + border-bottom: 8px solid #1d2327; +} + +tooltip decoration { + box-shadow: none; +} + +tooltip decoration:backdrop { + box-shadow: none; +} + +tooltip label { + color: #d3c6aa; + padding-left: 5px; + padding-right: 5px; + padding-top: 0px; + padding-bottom: 5px; +} + + +#pulseaudio-slider slider { + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} + +#pulseaudio-slider trough { + background-color: #7f849c; + min-width: 80px; + min-height: 5px; + border-radius: 5px; +} + +#pulseaudio-slider highlight { + min-height: 10px; + border-radius: 5px; +} + +#backlight-slider slider { + min-width: 0px; + min-height: 0px; + opacity: 0; + background-image: none; + border: none; + box-shadow: none; +} + +#backlight-slider trough { + background-color: #7f849c; + min-width: 80px; + min-height: 10px; + border-radius: 5px; +} + +#backlight-slider highlight { + min-width: 10px; + border-radius: 5px; +} -- cgit v1.2.3 From db7c37aa2a9b9ebff96562556014b585528e3bb4 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 3 Nov 2024 09:37:01 +0900 Subject: added windowrule for hyprgui --- config/hypr/UserConfigs/WindowRules.conf | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/config/hypr/UserConfigs/WindowRules.conf b/config/hypr/UserConfigs/WindowRules.conf index 50ff065e..b3209475 100644 --- a/config/hypr/UserConfigs/WindowRules.conf +++ b/config/hypr/UserConfigs/WindowRules.conf @@ -72,6 +72,7 @@ windowrulev2 = float, class:^([Ff]erdium)$ windowrulev2 = float, title:^(Picture-in-Picture)$ windowrulev2 = float, title:^(ROG Control)$ #windowrulev2 = float, title:^(Firefox)$ +windowrulev2 = float, title:^(hyprgui)$ # windowrule v2 - opacity #enable as desired windowrulev2 = opacity 0.9 0.6, class:^([Rr]ofi)$ @@ -117,8 +118,9 @@ windowrulev2 = size 60% 70%, class:^(file-roller|org.gnome.FileRoller)$ windowrulev2 = size 60% 70%, class:^([Ww]hatsapp-for-linux)$ windowrulev2 = size 60% 70%, class:^([Ff]erdium)$ windowrulev2 = size 60% 70%, title:^(ROG Control)$ -#windowrulev2 = size 25% 25%, title:^(Picture-in-Picture)$ +#windowrulev2 = size 25% 25%, title:^(Picture-in-Picture)$ #windowrulev2 = size 25% 25%, title:^(Firefox)$ +windowrulev2 = size 60% 70%, title:^(hyprgui)$ # windowrule v2 - pinning windowrulev2 = pin,title:^(Picture-in-Picture)$ -- cgit v1.2.3 From 7cd0e0c83bc391af22719daf26f33d10b8194507 Mon Sep 17 00:00:00 2001 From: "Ja.KooLit" <85185940+JaKooLit@users.noreply.github.com> Date: Mon, 4 Nov 2024 05:44:06 +0900 Subject: Update UserSettings.conf added xwayland enabled = true --- config/hypr/UserConfigs/UserSettings.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index 7d3645bc..b4673bba 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -116,6 +116,7 @@ binds { #Could help when scaling and not pixelating xwayland { + enabled = true force_zero_scaling = true } -- cgit v1.2.3 From 93eabed4b7405ac83dfc97497e126aec1f2cc2bf Mon Sep 17 00:00:00 2001 From: Björn Thiel <7595965+ThaSiouL@users.noreply.github.com> Date: Wed, 6 Nov 2024 08:33:37 +0100 Subject: move shadow options to decoration:shadow --- config/hypr/UserConfigs/UserDecorAnimations.conf | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/config/hypr/UserConfigs/UserDecorAnimations.conf b/config/hypr/UserConfigs/UserDecorAnimations.conf index ef43fd6e..3701c146 100644 --- a/config/hypr/UserConfigs/UserDecorAnimations.conf +++ b/config/hypr/UserConfigs/UserDecorAnimations.conf @@ -19,12 +19,15 @@ decoration { dim_strength = 0.1 dim_special = 0.8 - drop_shadow = true - shadow_range = 6 - shadow_render_power = 1 - - col.shadow = $color12 - col.shadow_inactive = 0x50000000 + shadow { + enabled = true + range = 6 + render_power = 1 + + color = $color2 + color_inactive = 0x50000000 + } + blur { enabled = true -- cgit v1.2.3 From cef78da1defe6163b1af5ee5cd03cdf914dbaab5 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 17 Nov 2024 18:51:25 +0900 Subject: fix WallustSwww.sh in which swww-git added Lanczos3 on the cache file --- config/hypr/scripts/WallustSwww.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/hypr/scripts/WallustSwww.sh b/config/hypr/scripts/WallustSwww.sh index dbf5c32f..62dde375 100755 --- a/config/hypr/scripts/WallustSwww.sh +++ b/config/hypr/scripts/WallustSwww.sh @@ -20,7 +20,7 @@ echo $cache_file # Check if the cache file exists for the current monitor output if [ -f "$cache_file" ]; then # Get the wallpaper path from the cache file - wallpaper_path=$(cat "$cache_file") + wallpaper_path=$(grep -v 'Lanczos3' "$cache_file" | head -n 1) echo $wallpaper_path # symlink the wallpaper to the location Rofi can access if ln -sf "$wallpaper_path" "$HOME/.config/rofi/.current_wallpaper"; then -- cgit v1.2.3 From 5c75e5645bebce461488659d2fa50fff55773687 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 21 Nov 2024 02:52:27 +0900 Subject: Change default shadow border colors --- config/hypr/UserConfigs/UserDecorAnimations.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hypr/UserConfigs/UserDecorAnimations.conf b/config/hypr/UserConfigs/UserDecorAnimations.conf index 3701c146..954a1d40 100644 --- a/config/hypr/UserConfigs/UserDecorAnimations.conf +++ b/config/hypr/UserConfigs/UserDecorAnimations.conf @@ -24,8 +24,8 @@ decoration { range = 6 render_power = 1 - color = $color2 - color_inactive = 0x50000000 + color = $color12 + color_inactive = $color2 } -- cgit v1.2.3 From c3900285bcb30a5af49c638eb3c16bd43e2c2527 Mon Sep 17 00:00:00 2001 From: "Ja.KooLit" <85185940+JaKooLit@users.noreply.github.com> Date: Fri, 22 Nov 2024 07:13:57 +0000 Subject: Update config-wallpaper.rasi - added horizontal flow. thanks to @m0r4a https://github.com/JaKooLit/Hyprland-Dots/pull/489 --- config/rofi/config-wallpaper.rasi | 1 + 1 file changed, 1 insertion(+) diff --git a/config/rofi/config-wallpaper.rasi b/config/rofi/config-wallpaper.rasi index fd00948e..2cfaa0e4 100644 --- a/config/rofi/config-wallpaper.rasi +++ b/config/rofi/config-wallpaper.rasi @@ -29,6 +29,7 @@ entry { listview { columns: 4; lines: 3; + flow: horizontal; } /* ---- Element ---- */ -- cgit v1.2.3 From 09297b0a5d2341a5e32007609f6dc4813eeed567 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Mon, 25 Nov 2024 06:13:31 +0900 Subject: adjusted some settings and script for hyprland-git and swww-git --- config/hypr/UserConfigs/UserSettings.conf | 2 +- config/hypr/UserScripts/WallpaperEffects.sh | 6 +++--- config/hypr/UserScripts/WallpaperRandom.sh | 4 ++-- config/hypr/UserScripts/WallpaperSelect.sh | 10 +++++----- 4 files changed, 11 insertions(+), 11 deletions(-) diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index b4673bba..ae0ab4b2 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -28,7 +28,7 @@ general { resize_on_border = true col.active_border = $color12 - col.inactive_border = $backgroundCol + col.inactive_border = $background layout = dwindle } diff --git a/config/hypr/UserScripts/WallpaperEffects.sh b/config/hypr/UserScripts/WallpaperEffects.sh index cc6a5781..4edb6b8d 100755 --- a/config/hypr/UserScripts/WallpaperEffects.sh +++ b/config/hypr/UserScripts/WallpaperEffects.sh @@ -15,7 +15,7 @@ iDIR="$HOME/.config/swaync/images" # swww transition config FPS=60 TYPE="wipe" -DURATION=2 +DURATION=1.5 BEZIER=".43,1.19,1,.4" SWWW_PARAMS="--transition-fps $FPS --transition-type $TYPE --transition-duration $DURATION" @@ -78,11 +78,11 @@ main() { # Execute swww command after image conversion swww img -o "$focused_monitor" "$wallpaper_output" $SWWW_PARAMS & # Wait for swww command to complete - wait $! + sleep 1.5 # Wait for other commands to finish wallust run "$wallpaper_output" -s & # Wait for other commands to finish - wait $! + sleep 0.5 # Refresh rofi, waybar, wallust palettes "${SCRIPTSDIR}/Refresh.sh" notify-send -u low -i "$iDIR/bell.png" "$choice effects applied" diff --git a/config/hypr/UserScripts/WallpaperRandom.sh b/config/hypr/UserScripts/WallpaperRandom.sh index 050c10c3..c3926906 100755 --- a/config/hypr/UserScripts/WallpaperRandom.sh +++ b/config/hypr/UserScripts/WallpaperRandom.sh @@ -21,8 +21,8 @@ SWWW_PARAMS="--transition-fps $FPS --transition-type $TYPE --transition-duration swww query || swww-daemon --format xrgb && swww img -o $focused_monitor ${RANDOMPICS} $SWWW_PARAMS - -${scriptsDir}/WallustSwww.sh sleep 1 +${scriptsDir}/WallustSwww.sh +sleep 0.5 ${scriptsDir}/Refresh.sh diff --git a/config/hypr/UserScripts/WallpaperSelect.sh b/config/hypr/UserScripts/WallpaperSelect.sh index 25ef30e9..23640995 100755 --- a/config/hypr/UserScripts/WallpaperSelect.sh +++ b/config/hypr/UserScripts/WallpaperSelect.sh @@ -11,7 +11,7 @@ focused_monitor=$(hyprctl monitors | awk '/^Monitor/{name=$2} /focused: yes/{pri # swww transition config FPS=60 TYPE="any" -DURATION=2 +DURATION=1.5 BEZIER=".43,1.19,1,.4" SWWW_PARAMS="--transition-fps $FPS --transition-type $TYPE --transition-duration $DURATION" @@ -69,9 +69,9 @@ main() { # Random choice case if [[ "$choice" == "$RANDOM_PIC_NAME" ]]; then swww img -o "$focused_monitor" "$RANDOM_PIC" $SWWW_PARAMS; - sleep 0.5 + sleep 1.5 "$SCRIPTSDIR/WallustSwww.sh" - sleep 0.2 + sleep 0.5 "$SCRIPTSDIR/Refresh.sh" exit 0 fi @@ -102,9 +102,9 @@ fi main -sleep 0.5 +sleep 1.5 "$SCRIPTSDIR/WallustSwww.sh" -sleep 0.2 +sleep 0.5 "$SCRIPTSDIR/Refresh.sh" -- cgit v1.2.3 From 9d4252297ba68017be3fdd3a9838cbf89f81f86c Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Thu, 28 Nov 2024 09:50:50 +0900 Subject: bump to v2..3.8 and updated copy.sh to cover less than 1440p monitor resolutions --- config/hypr/v2.3.7 | 5 ----- config/hypr/v2.3.8 | 5 +++++ copy.sh | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 config/hypr/v2.3.7 create mode 100644 config/hypr/v2.3.8 diff --git a/config/hypr/v2.3.7 b/config/hypr/v2.3.7 deleted file mode 100644 index 31b3414d..00000000 --- a/config/hypr/v2.3.7 +++ /dev/null @@ -1,5 +0,0 @@ -### https://github.com/JaKooLit ### -## https://github.com/JaKooLit/Hyprland-Dots -## This is to have a reference of which version would be - -## note that this will always be higher than the released versions \ No newline at end of file diff --git a/config/hypr/v2.3.8 b/config/hypr/v2.3.8 new file mode 100644 index 00000000..31b3414d --- /dev/null +++ b/config/hypr/v2.3.8 @@ -0,0 +1,5 @@ +### https://github.com/JaKooLit ### +## https://github.com/JaKooLit/Hyprland-Dots +## This is to have a reference of which version would be + +## note that this will always be higher than the released versions \ No newline at end of file diff --git a/copy.sh b/copy.sh index 85aacb5e..ce0f2825 100755 --- a/copy.sh +++ b/copy.sh @@ -236,13 +236,13 @@ printf "\n" # Action to do for better rofi and kitty appearance while true; do echo "$ORANGE Select monitor resolution for better config appearance and fonts:" - echo "$YELLOW 1. Equal to or less than 1080p (≤ 1080p)" + echo "$YELLOW 1. less than 1440p (< 1440p)" echo "$YELLOW 2. Equal to or higher than 1440p (≥ 1440p)" read -p "$CAT Enter the number of your choice: " res_choice case $res_choice in 1) - resolution="≤ 1080p" + resolution="< 1440p" break ;; 2) @@ -250,7 +250,7 @@ while true; do break ;; *) - echo "${ERROR} Invalid choice. Please enter 1 for ≤ 1080p or 2 for ≥ 1440p." + echo "${ERROR} Invalid choice. Please enter 1 for < 1440p or 2 for ≥ 1440p." ;; esac done @@ -259,7 +259,7 @@ done echo "${OK} You have chosen $resolution resolution." 2>&1 | tee -a "$LOG" # Add your commands based on the resolution choice -if [ "$resolution" == "≤ 1080p" ]; then +if [ "$resolution" == "< 1440p" ]; then cp -r config/rofi/resolution/1080p/* config/rofi/ sed -i 's/font_size 16.0/font_size 12.0/' config/kitty/kitty.conf -- cgit v1.2.3