From 2ec0ed3809171f08138be2020f97d500fff91667 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 15 May 2024 12:24:28 +0900 Subject: updated weather icons --- config/hypr/UserScripts/Weather.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'config/hypr/UserScripts/Weather.py') diff --git a/config/hypr/UserScripts/Weather.py b/config/hypr/UserScripts/Weather.py index 5cd11a66..b1b21fa3 100755 --- a/config/hypr/UserScripts/Weather.py +++ b/config/hypr/UserScripts/Weather.py @@ -8,12 +8,12 @@ import os # original code https://gist.github.com/Surendrajat/ff3876fd2166dd86fb71180f4e9342d7 # weather icons weather_icons = { - "sunnyDay": "", - "clearNight": "", - "cloudyFoggyDay": "", - "cloudyFoggyNight": "", - "rainyDay": "", - "rainyNight": "", + "sunnyDay": "󰖙", + "clearNight": "󰖔", + "cloudyFoggyDay": "", + "cloudyFoggyNight": "", + "rainyDay": "", + "rainyNight": "", "snowyIcyDay": "", "snowyIcyNight": "", "severe": "", -- cgit v1.2.3 From cf4e7e595c5b4660d73be38324d78a31c0d36cc1 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 15 May 2024 13:31:07 +0900 Subject: Fixed alignment of Weather.py for hyprlock - Man this is getting annoying already lmao --- config/hypr/UserScripts/Weather.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'config/hypr/UserScripts/Weather.py') diff --git a/config/hypr/UserScripts/Weather.py b/config/hypr/UserScripts/Weather.py index b1b21fa3..39f823af 100755 --- a/config/hypr/UserScripts/Weather.py +++ b/config/hypr/UserScripts/Weather.py @@ -123,7 +123,7 @@ out_data = { } print(json.dumps(out_data)) -simple_weather =f"{icon} {status}\n" + \ +simple_weather =f"{icon} {status}\n" + \ f" {temp} ({temp_feel_text})\n" + \ f"{wind_text} \n" + \ f"{humidity_text} \n" + \ -- cgit v1.2.3 From a5d4d4ee9550b820c8106881c69d85a73eaf5493 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 22 May 2024 10:55:21 +0900 Subject: reduced padding rofi on master config added a space on weather.py waybar data for better output --- config/hypr/UserScripts/Weather.py | 2 +- config/rofi/master-config.rasi | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'config/hypr/UserScripts/Weather.py') diff --git a/config/hypr/UserScripts/Weather.py b/config/hypr/UserScripts/Weather.py index 39f823af..1d2ea30b 100755 --- a/config/hypr/UserScripts/Weather.py +++ b/config/hypr/UserScripts/Weather.py @@ -116,7 +116,7 @@ tooltip_text = str.format( # print waybar module data out_data = { - "text": f"{icon} {temp}", + "text": f"{icon} {temp}", "alt": status, "tooltip": tooltip_text, "class": status_code, diff --git a/config/rofi/master-config.rasi b/config/rofi/master-config.rasi index 4ffa7ac8..fe24cd61 100644 --- a/config/rofi/master-config.rasi +++ b/config/rofi/master-config.rasi @@ -65,7 +65,7 @@ mainbox { /* ---- Inputbar ---- */ inputbar { enabled: true; - padding: 10px 10px 200px 10px; + padding: 10px 10px 100px 10px; margin: 10px; background-color: transparent; border-radius: 25px; -- cgit v1.2.3