gpakosz / .tmux

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

not working on void linux? (tpm isn't working) #618

Closed lime-desu closed 1 year ago

lime-desu commented 1 year ago

I have a custom function that installs oh-my-tmux on a certain directory if it doesn't exist and symlink the .tmux.conf file on the home directory now upon installation,

This is what it looks like when using omt on void linux: Screenshot_2023-01-23_21-37-19

The configuration looks like a vanilla tmux though the keybinding are working fine (C-a) prefix are working and also prefix+I to install tpm plugins isn't working

I have tried following this installation process and met all the following requirement, still no luck, same problem.

gpakosz commented 1 year ago

Hello @lime-desu 👋

I'm sorry I don't know Void Linux. After having launched tmux, can you please paste the output of

$ cut -c3- ~/.tmux.conf | sh -sx _apply_configuration

?

lime-desu commented 1 year ago

Hello @lime-desu 👋

I'm sorry I don't know Void Linux. After having launched tmux, can you please paste the output of

$ cut -c3- ~/.tmux.conf | sh -sx _apply_configuration

?

+ :
+ set -e
+ unset GREP_OPTIONS
+ export LC_NUMERIC=C
+ set +H
+ true
+ printf 
+ sed -E s///
+ uname -s
+ _uname_s=Linux
+ tmux -V
+ awk {gsub(/[^0-9.]/, "", $2); print ($2+0) * 100}
+ _tmux_version=330
+ command -v pkill
+ _apply_configuration
+ tmux display -p #{window_active}
+ window_active=1
+ [ -z 1 ]
+ command -v reattach-to-user-namespace
+ _apply_tmux_256color
+ command infocmp -x tmux-256color
gpakosz commented 1 year ago

What's the output of command -v infocmp please?

lime-desu commented 1 year ago

What's the output of command -v infocmp please?

It does exist /bin/infocmp

gpakosz commented 1 year ago

But I suspect infocmp -x tmux-256color returns a non 0 exit status right?

$ infocmp -x tmux-256color
$ echo $?
gpakosz commented 1 year ago

Can you please try the gh-618 branch?

lime-desu commented 1 year ago

But I suspect infocmp -x tmux-256color returns a non 0 exit status right?

$ infocmp -x tmux-256color
$ echo $?

infocmp: couldn't open terminfo file /usr/share/terminfo/t/tmux-256color.

exit status code of 1

lime-desu commented 1 year ago

Can you please try the gh-618 branch?

Yes, It is working now thank you very much!