mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-02 02:19:06 +01:00
18 lines
337 B
Bash
18 lines
337 B
Bash
#
|
|
# theme for drag copying the terminal screen
|
|
|
|
# these functions may be declared in "ZSH/custom" directory
|
|
function switch-to-screencopy {
|
|
ZSH_THEME=screencopy source $ZSH/oh-my-zsh.sh
|
|
}
|
|
function switch-to-normal {
|
|
source $ZSH/oh-my-zsh.sh
|
|
}
|
|
|
|
# set non-intrusive prompt for copying
|
|
PS1=' > '
|
|
PS2=' '
|
|
PS3=''
|
|
PS4=''
|
|
RPS1=''
|
|
RPS2=''
|