fix omz being in wrong directory
This commit is contained in:
parent
36265bd61c
commit
87dad1b7e9
1034 changed files with 0 additions and 1232 deletions
10
zsh/.local/share/oh-my-zsh/plugins/fbterm/README.md
Normal file
10
zsh/.local/share/oh-my-zsh/plugins/fbterm/README.md
Normal file
|
@ -0,0 +1,10 @@
|
|||
# fbterm
|
||||
|
||||
This plugin automatically starts [fbterm](https://github.com/zhangyuanwei/fbterm)
|
||||
if on a real TTY (`/dev/tty*`).
|
||||
|
||||
To use it, add `fbterm` to the plugins array of your zshrc file:
|
||||
|
||||
```zsh
|
||||
plugins=(... fbterm)
|
||||
```
|
|
@ -0,0 +1,7 @@
|
|||
# start fbterm automatically in /dev/tty*
|
||||
|
||||
if (( ${+commands[fbterm]} )); then
|
||||
if [[ "$TTY" = /dev/tty* ]] ; then
|
||||
fbterm && exit
|
||||
fi
|
||||
fi
|
Loading…
Add table
Add a link
Reference in a new issue