15 lines
354 B
Text
15 lines
354 B
Text
|
|
#!/bin/relish
|
||
|
|
|
||
|
|
(def __mood 'current mood' ':3')
|
||
|
|
|
||
|
|
(def CFG_RELISH_L_PROMPT 'mood left prompt'
|
||
|
|
() (concat "(" __mood ")" ))
|
||
|
|
|
||
|
|
(def CFG_RELISH_R_PROMPT 'mood right prompt'
|
||
|
|
() 'call set-mood to change prompt')
|
||
|
|
|
||
|
|
(def CFG_RELISH_PROMPT_DELIMITER 'mood prompt delim'
|
||
|
|
() '>')
|
||
|
|
|
||
|
|
(def set-mood 'set the little ascii face in your prompt'
|
||
|
|
(mood) (set (q __mood) mood))
|