gpakosz / .tmux

🇫🇷 Oh my tmux! My self-contained, pretty & versatile tmux configuration made with ❤️
MIT License
21.73k stars 3.34k forks source link

when I install this configuration, my tmux looks different than the one in the videos #655

Closed maneater2 closed 7 months ago

maneater2 commented 1 year ago

my tmux only has blue, but in the video there is red, yellow and white and other colors. Is there something I should enable or is it not meant to be like that on default?

gpakosz commented 1 year ago

Hello @allthelightwe

Also please share a screenshot

maneater2 commented 1 year ago

My OS is OpenBSD 7.3-Release tmux tells me the version is "tmux openbsd-7.3" the TERM value is xterm-256color here's a screenshot: image

maneater2 commented 1 year ago

although when I try it on Arch Linux it works...

gpakosz commented 1 year ago

tmux reads configuration files in the following order

It doesn't stop at the first one it finds. Please have a look if you don't have configuration files laying around that would set status-left and status-right.

maneater2 commented 1 year ago

I only have a configuration in ~/

gpakosz commented 1 year ago

What's the output of the following command please?

$ env | grep TMUX
gpakosz commented 1 year ago

I didn't reproduce with an OpenBSD 7.3 Vagrant box

$ vagrant init fnichol/openbsd-7.3
$ vagrant ssh
$ su -
$ pkg_add git
$ exit
$ git clone https://github.com/gpakosz/.tmux
$ ln -s .tmux/.tmux.conf
$ cp .tmux/.tmux.conf.local .
$ tmux
maneater2 commented 1 year ago

What's the output of the following command please?

$ env | grep TMUX

sorry for the late reply, the output of the command is: TMUX_CONF=/home/light/.tmux.conf TMUX=/tmp/tmux-1000/default,9689,0 TMUX_SOCKET=/tmp/tmux-1000/default TMUX_PROGRAM=tmux TMUX_PANE=%1 TMUX_CONF_LOCAL=/home/USER/.tmux.conf.local

gpakosz commented 1 year ago

Is tmux in your path?

gpakosz commented 1 year ago

@allthelightwe

Can you please clone and install again? There was an issue with GitHub picking the wrong branch as the default branch

gpakosz commented 9 months ago

Hello @maneater2 👋

Are you still facing this issue?

maneater2 commented 8 months ago

yes

maneater2 commented 8 months ago

could it be a issue with tmux not associating .tmux.local.conf with itself?

gpakosz commented 8 months ago

could it be a issue with tmux not associating .tmux.local.conf with itself?

I don't think so

As I said I didn't reproduce in an OpenBSD 7.3 Vagrant box. Are you still using this version of OpenBSD?

maneater2 commented 8 months ago

no, I'm using 7.4-current

mayersj1 commented 7 months ago

I'm seeing the same thing here on NixOS 23.11.

If I include a theme plugin, it sets up the status bar just fine.

Just using the default settings in the .tmux.conf.localc file, I get the same behavior as shown in the screenshot above

Just another note. If I set 'tmux_conf_theme' to 'disabled' I get the standard default green tmux status bar, so the theming is making an effect somewhere in the loading of everything.

The same .tmux.conf.local works just fine on my other three machines that are running MacOS in iTerm.

gpakosz commented 7 months ago

Hello @maneater2,

As I said, I couldn't reproduce with

$ vagrant init generic-x64/openbsd7
$ vagrant ssh
$ uname -a
OpenBSD openbsd7.localdomain 7.4 GENERIC.MP#1397 amd64
$ sudo -i
$ pkg_add git
$ exit
$ git clone https://github.com/gpakosz/.tmux
$ ln -s .tmux/.tmux.conf
$ cp .tmux/.tmux.conf.local .
$ export LC_CTYPE=en_US.UTF-8
$ tmux
image

@mayersj1 I believe you're hitting #712 which I just fixed.

mayersj1 commented 7 months ago

@gpakosz You are correct. I just pulled the latest and the status bar is working again now.