summaryrefslogtreecommitdiff
path: root/share
diff options
context:
space:
mode:
authorAlex Leferry 2 <alexherbo2@gmail.com>2020-09-16 20:39:14 +0200
committerAlex Leferry 2 <alexherbo2@gmail.com>2020-09-16 20:39:14 +0200
commitb5dd869fb11873217c752b382ff0f7a2e0cb4dee (patch)
tree034a0f4a8ffc4a2ee1a1f32fa32a5523df34f95c /share
parentda129e8dc705eb2fc71aba1f976f27fb66429160 (diff)
Remove the prompt script
Diffstat (limited to 'share')
-rwxr-xr-xshare/kak/connect/prompt14
1 files changed, 0 insertions, 14 deletions
diff --git a/share/kak/connect/prompt b/share/kak/connect/prompt
deleted file mode 100755
index 86b7b2f..0000000
--- a/share/kak/connect/prompt
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-
-# Faces
-none='\033[0m'
-yellow='\033[33m'
-magenta='\033[35m'
-
-if [ -n "$KAKOUNE_SESSION" ] && [ -n "$KAKOUNE_CLIENT" ]; then
- printf "${magenta}${KAKOUNE_CLIENT}${none} at ${yellow}${KAKOUNE_SESSION}${none}"
-
-elif [ -n "$KAKOUNE_SESSION" ]; then
- printf "(${yellow}${KAKOUNE_SESSION}${none})"
-
-fi