From 0ba5021b989ba1a4dc3763c0aad6c45dbcfd97c5 Mon Sep 17 00:00:00 2001 From: Donald Williams <129223418+dwilliam62@users.noreply.github.com> Date: Tue, 10 Dec 2024 22:41:35 -0500 Subject: Update copy.sh It should not be needed but I clarified the lanquage on setting the scaling for <2K and more than 2K monitors --- copy.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/copy.sh b/copy.sh index 6c3fbf12..bd4a7ca6 100755 --- a/copy.sh +++ b/copy.sh @@ -235,10 +235,10 @@ 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. 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 + echo "$ORANGE Select monitor resolution to properly configure appearance and fonts:" + echo "$YELLOW -- Enter 1. for monitor res 1440p or less (< 1440p)" + echo "$YELLOW -- Enter 2. for monitors res higher than 1440p (≥ 1440p)" + read -p "$CAT Enter the number of your choice (1 or 2): " res_choice case $res_choice in 1) -- cgit v1.2.3 From d0d7aaf920e83ad14ad2329825c607d3b4c9379d Mon Sep 17 00:00:00 2001 From: Tobias Backer Dirks Date: Thu, 12 Dec 2024 10:21:35 +0200 Subject: feat: force reload of kitty.conf for existing open instances on dark/light toggle --- config/hypr/scripts/DarkLight.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config/hypr/scripts/DarkLight.sh b/config/hypr/scripts/DarkLight.sh index 77426902..2e2d614e 100755 --- a/config/hypr/scripts/DarkLight.sh +++ b/config/hypr/scripts/DarkLight.sh @@ -109,8 +109,9 @@ else sed -i '/^background /s/^background .*/background #dddddd/' "${kitty_conf}" sed -i '/^cursor /s/^cursor .*/cursor #000000/' "${kitty_conf}" fi - - +for pid in $(pidof kitty); do + kill -SIGUSR1 "$pid" +done # Set Dynamic Wallpaper for Dark or Light Mode -- cgit v1.2.3