#!/bin/sh showdoppler() { hyprctl dispatch exec "[float; size 800 800;]" 'curl -s https://meteoinfo.ru/hmc-output/rmap/phenomena.gif | imv - -H 1200 -W 1200' } if [ ! -n "$1" ]; then echo πŸŒ… else if [ "$1" -eq 1 ]; then showdoppler elif [ "$1" -eq 3 ]; then notify-send "πŸ—ΊοΈ Doppler RADAR module" "\- Left click for local Doppler RADAR. - You need to manually edit the url in the script to change location." fi fi