jimeh / tmux-themepack

A pack of various Tmux themes.
1.67k stars 203 forks source link

problem with macOS: no such option: q #36

Open JamesZBL opened 4 years ago

JamesZBL commented 4 years ago
$ source .tmux-themepack/powerline/default/cyan.tmuxtheme
.tmux-themepack/powerline/default/cyan.tmuxtheme:set:12: no such option: q
jimeh commented 4 years ago

This looks like your Tmux version is too old. The themes require version 2.6 or later.

jimeh commented 4 years ago

Actually, it looks like you’re trying to load the theme directly in your shell with the source command.

The themes need to be loaded via Tmux’s source-file, which can be done from within your ~/.tmux.conf with:

source-file “path/to/theme.tmuxtheme”

Or if you want to do it from your bash/zsh/etc shell, you’ll need to run it through tmux while inside a Tmux session:

tmux source-file “path/to/theme.tmuxtheme”
ghost commented 4 years ago

@jimeh perfect!!!

clarabez commented 3 years ago

also worked here!