diff options
| author | JaKooLit <ejhay.games@gmail.com> | 2025-03-02 15:46:17 +0900 |
|---|---|---|
| committer | JaKooLit <ejhay.games@gmail.com> | 2025-03-02 15:46:17 +0900 |
| commit | 8ead68af4e161693f82e5dcd37118d7a2dac24d5 (patch) | |
| tree | 3b194666e64d0f369e784f7290163f014b655188 /config | |
| parent | 0d34373a2e0dbf739d6243362c6c850efb420397 (diff) | |
this should fix the rofi issue
Diffstat (limited to 'config')
| -rwxr-xr-x | config/hypr/scripts/DarkLight.sh | 6 |
1 files 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 |
