فهرست منبع

nixpkgs/elvish: show hostname if SSH-ed

Thomas Dy 1 سال پیش
والد
کامیت
b466528539
1فایلهای تغییر یافته به همراه10 افزوده شده و 0 حذف شده
  1. 10 0
      .config/nixpkgs/elvish/lib/prompt.elv

+ 10 - 0
.config/nixpkgs/elvish/lib/prompt.elv

@@ -1,5 +1,9 @@
 use str
 use re
+use platform
+
+var in-ssh = (has-env SSH_CONNECTION)
+var hostname = (platform:hostname)
 
 fn nix-shell-prompt-string {
   put '['
@@ -175,6 +179,12 @@ set edit:prompt = {
   put "\n"
   styled '['(date +%H:%M)']' bold bright-cyan
   put ' '
+  if $in-ssh {
+    put '('
+    styled $hostname bright-blue
+    put ')'
+    put ' '
+  }
   styled (tilde-abbr $pwd) yellow
   put ' '
   git-prompt-string