From 7c3c66d98df73bf005b88b8c4b2e26e29c110883 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sat, 1 Mar 2025 11:02:35 +0900 Subject: updated rofi-wallpaper config since the star of the config are the wallpapers itself and not the name of the wallpaper --- config/rofi/config-wallpaper.rasi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/rofi/config-wallpaper.rasi b/config/rofi/config-wallpaper.rasi index 1793f320..3cd320aa 100644 --- a/config/rofi/config-wallpaper.rasi +++ b/config/rofi/config-wallpaper.rasi @@ -64,6 +64,6 @@ element-icon { element-text { vertical-align: 0.5; horizontal-align: 0.5; - padding: 10px; - margin: 0px; -} + padding: 6px; + margin: 6px; +} \ No newline at end of file -- cgit v1.2.3 From 0d34373a2e0dbf739d6243362c6c850efb420397 Mon Sep 17 00:00:00 2001 From: "Ja.KooLit" <85185940+JaKooLit@users.noreply.github.com> Date: Sun, 2 Mar 2025 15:11:26 +0900 Subject: Update DarkLight.sh - disabling theme switcher for now. I dont have time to fix. I will find the fix on next release --- config/hypr/scripts/DarkLight.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index 6ce1526e..e3af90c6 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -1,4 +1,4 @@ -#!/bin/bash + ## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # For Dark and Light switching # Note: Scripts are looking for keywords Light or Dark except for wallpapers as the are in a separate folders -- cgit v1.2.3 From 8ead68af4e161693f82e5dcd37118d7a2dac24d5 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Sun, 2 Mar 2025 15:46:17 +0900 Subject: this should fix the rofi issue --- config/hypr/scripts/DarkLight.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index e3af90c6..d34554fa 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -1,4 +1,4 @@ - +#!/bin/bash ## /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## # For Dark and Light switching # Note: Scripts are looking for keywords Light or Dark except for wallpapers as the are in a separate folders @@ -144,9 +144,9 @@ kvantummanager --set "$kvantum_theme" # set the rofi color for background if [ "$next_mode" = "Dark" ]; then - sed -i '24s/.*/background: rgba(0,0,0,0.7);/' $wallust_rofi + sed -i '/^background:/s/.*/background: rgba(0,0,0,0.7);/' $wallust_rofi else - sed -i '24s/.*/background: rgba(255,255,255,0.9);/' $wallust_rofi + sed -i '/^background:/s/.*/background: rgba(255,255,255,0.9);/' $wallust_rofi fi -- cgit v1.2.3