From ed839182960fa4adf8cd63a8441601fc4af3ceb9 Mon Sep 17 00:00:00 2001 From: flpflan Date: Thu, 24 Jul 2025 16:01:14 +0800 Subject: [PATCH] hyprland: fix script shebang (#48) --- hypr/scripts/get-overrides.fish | 2 +- hypr/scripts/monitor-config.fish | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/hypr/scripts/get-overrides.fish b/hypr/scripts/get-overrides.fish index 0000532..e7cce70 100755 --- a/hypr/scripts/get-overrides.fish +++ b/hypr/scripts/get-overrides.fish @@ -1,4 +1,4 @@ -#!/bin/fish +#!/usr/bin/env fish set -l src (dirname (status filename)) set -q XDG_CONFIG_HOME && set -l config $XDG_CONFIG_HOME/caelestia || set -l config $HOME/.config/caelestia diff --git a/hypr/scripts/monitor-config.fish b/hypr/scripts/monitor-config.fish index f7ef9fc..b32d3c0 100755 --- a/hypr/scripts/monitor-config.fish +++ b/hypr/scripts/monitor-config.fish @@ -1,4 +1,4 @@ -#!/bin/fish +#!/usr/bin/env fish set -q XDG_CONFIG_HOME && set -l config $XDG_CONFIG_HOME || set -l config $HOME/.config set -l config_path $config/caelestia/hypr.json