1
0
Prechádzať zdrojové kódy

Standalone fish installation

Jovian (Netbook) 6 rokov pred
rodič
commit
bf2540af72
2 zmenil súbory, kde vykonal 35 pridanie a 0 odobranie
  1. 26 0
      Install/Templates/fish_prompt.fish
  2. 9 0
      Install/fish-install

+ 26 - 0
Install/Templates/fish_prompt.fish

@@ -0,0 +1,26 @@
+function fish_prompt
+	if not set -q VIRTUAL_ENV_DISABLE_PROMPT
+        set -g VIRTUAL_ENV_DISABLE_PROMPT true
+    end
+    set_color yellow
+    printf '%s' (whoami)
+    set_color normal
+    printf '@'
+
+    set_color red
+    echo -n jupyter-raspberry-pi3
+    set_color normal
+    printf ':'
+
+    set_color $fish_color_cwd
+    printf '%s' (prompt_pwd)
+    set_color normal
+
+    # Line 2
+    echo
+    if test $VIRTUAL_ENV
+        printf "(%s) " (set_color blue)(basename $VIRTUAL_ENV)(set_color normal)
+    end
+    printf '> '
+    set_color normal
+end

+ 9 - 0
Install/fish-install

@@ -0,0 +1,9 @@
+#!/bin/bash
+
+# Install customized fish
+
+sudo apt install fish
+mkdir -p /home/jovian/.config/fish/functions
+cp ./Templates/fish_prompt.fish /home/jovian/.config/fish/functions/
+sudo chsh -s /usr/bin/fish
+