diff --git a/.config/sway/config b/.config/sway/config index 3bb3b02..d05f43b 100644 --- a/.config/sway/config +++ b/.config/sway/config @@ -245,7 +245,7 @@ bindswitch --reload --locked lid:off output $laptop enable # Monitors # You can get the names of your outputs by running: swaymsg -t get_outputs output HDMI-A-1 scale 2.0 -output * bg /home/opal/.config/wallpapers/tropical-mountains.jpg fill +output * bg ~/.config/wallpapers/exterminator.png fill bindsym $mod+Shift+m output "HDMI-A-1" enable bindsym $mod+Shift+n output "HDMI-A-1" disable diff --git a/.config/swaylock/config b/.config/swaylock/config index 72b97d3..319a479 100644 --- a/.config/swaylock/config +++ b/.config/swaylock/config @@ -1,5 +1,5 @@ # Image -image=~/.config/wallpapers/tropical-mountains.jpg +image=~/.config/wallpapers/exterminator.png scaling=fill # Indicator diff --git a/.config/wallpapers/blasfemia.png b/.config/wallpapers/blasfemia.png new file mode 100644 index 0000000..a3bccba Binary files /dev/null and b/.config/wallpapers/blasfemia.png differ diff --git a/.config/wallpapers/dante-bite.jpg b/.config/wallpapers/dante-bite.jpg deleted file mode 100644 index 3ff6bb5..0000000 Binary files a/.config/wallpapers/dante-bite.jpg and /dev/null differ diff --git a/.config/wallpapers/exterminator.png b/.config/wallpapers/exterminator.png new file mode 100644 index 0000000..309ada3 Binary files /dev/null and b/.config/wallpapers/exterminator.png differ diff --git a/.config/waybar/scripts/weather.py b/.config/waybar/scripts/weather.py index 3a2a8ae..197ba5f 100755 --- a/.config/waybar/scripts/weather.py +++ b/.config/waybar/scripts/weather.py @@ -26,6 +26,7 @@ def get_weather_icon(description): "thunderstorm": "", "snow": "", "mist": "󰖑", + "haze": "󰖑" } return icons.get(description, "❓") @@ -38,7 +39,7 @@ try: weather_data = response.json() weather_desc = weather_data["weather"][0]["description"] - # print(weather_desc) + #print(weather_desc) temp_c = round(weather_data["main"]["temp"]) temp_f = round(celsius_to_fahrenheit(temp_c)) weather_icon = get_weather_icon(weather_desc)