#!/usr/bin/env bash

# Nomarchy Refresh Hyprland Script
# Reloads the Hyprland configuration.

set -e

if command -v hyprctl &>/dev/null; then
    hyprctl reload
    notify-send -u low "    Hyprland configuration reloaded"
else
    echo "Error: hyprctl not found."
    exit 1
fi
