chezmoi init
This commit is contained in:
commit
530d6d7195
1176 changed files with 111325 additions and 0 deletions
10
dot_oh-my-zsh/plugins/fbterm/README.md
Normal file
10
dot_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)
|
||||
```
|
7
dot_oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh
Normal file
7
dot_oh-my-zsh/plugins/fbterm/fbterm.plugin.zsh
Normal file
|
@ -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