#!/bin/sh QUIT=$(printf "No\nYes" | rofi -dmenu -i -p "Are you sure u want to kill Hyprland?") if test "$QUIT" == "Yes" ; then pkill Hyprland fi