浏览代码

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