From 38738e55045585eea20674f766ad199e235cd433 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Sat, 22 Oct 2022 16:52:14 -0400 Subject: [PATCH] feat(shell): improve myip alias --- modules/global/shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/global/shell.nix b/modules/global/shell.nix index e47785a..ac3234a 100644 --- a/modules/global/shell.nix +++ b/modules/global/shell.nix @@ -24,7 +24,7 @@ in psag = "ps ax | gi -e 'PID\\s+TTY\\s+STAT\\s+TIME\\s+COMMAND' -e "; # internet ip - myip = "curl ipecho.net/plain"; + myip = "echo $(curl -s ipecho.net/plain)"; # sudo s = ifSudo "sudo -E ";