From 5c6c0f3fed199a9bd2f293466b050563a905e4c8 Mon Sep 17 00:00:00 2001 From: Pepe44DEV Date: Wed, 27 May 2026 22:50:40 +0200 Subject: [PATCH] fix: hostname -> uname -n (fehlt auf minimalem Arch) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit hostname ist in inetutils, das bei einer minimalen Arch-Installation nicht installiert ist. uname -n ist in coreutils und immer verfügbar. --- dotfiles/hypr/Scripts/theme-menu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/hypr/Scripts/theme-menu.sh b/dotfiles/hypr/Scripts/theme-menu.sh index b1fa5e3..0e0c240 100755 --- a/dotfiles/hypr/Scripts/theme-menu.sh +++ b/dotfiles/hypr/Scripts/theme-menu.sh @@ -894,7 +894,7 @@ input-field { label { monitor = - text = cmd[update:1000] echo " $(whoami)@$(hostname)" + text = cmd[update:1000] echo " $(whoami)@$(uname -n)" color = rgba($muted_rgb, 0.70) font_size = 16 font_family = JetBrainsMono Nerd Font