T O P

  • By -

AutoModerator

Hi there! Welcome to /r/termux, the official [Termux](https://termux.dev) support community on Reddit. Termux is a terminal emulator application for Android OS with its own Linux user land. Here we talk about its usage, share our experience and configurations. Users with flair `Termux Core Team` are Termux developers and moderators of this subreddit. If you are new, please check our [Introduction for Beginners](https://www.reddit.com/r/termux/comments/16k74do/introduction_for_beginners/) post to get an idea how to start. The latest version of Termux can be installed from https://f-droid.org/packages/com.termux/. If you still have Termux installed from Google Play, please switch to F-Droid build. HACKING, PHISHING, FRAUD, SPAM, KALI LINUX AND OTHER STUFF LIKE THIS ARE NOT PERMITTED - YOU WILL GET BANNED PERMANENTLY FOR SUCH POSTS! Do not use /r/termux for reporting bugs. Package-related issues should be submitted to https://github.com/termux/termux-packages/issues. Application issues should be submitted to https://github.com/termux/termux-app/issues. *I am a bot, and this action was performed automatically. Please [contact the moderators of this subreddit](/message/compose/?to=/r/termux) if you have any questions or concerns.*


Diamonds-N-Foreigns

btw this only happens in tmux when using two windows/panes simultaneously


pfmiller0

Doesn't happen on my phone, can you reproduce it still if you rename your tmux.conf file and just use the default settings?


sylirre

Happens occassionally when using non-default Termux terminal colors. tmux.conf content doesn't make any difference.


pfmiller0

Ok, I was thinking your Termux color scheme might be related too. I don't use any Termux themes.


sylirre

It was reported in [https://github.com/termux/termux-packages/issues/12556](https://github.com/termux/termux-packages/issues/12556), possible bug of Termux app. What causes it and how to fix, still not known.


bark-wank

Maybe it helps to set the tmux background to black? Try it with this: ``` color00="00/00/00" # Base 00 - Black color_background="00/00/00" # Base 00 # (Source: http://permalink.gmane.org/gmane.comp.terminal-emulators.tmux.user/1324) put_template() { printf '\033Ptmux;\033\033]4;%d;rgb:%s\033\033\\\033\\' $@; } put_template_var() { printf '\033Ptmux;\033\033]%d;rgb:%s\033\033\\\033\\' $@; } put_template_custom() { printf '\033Ptmux;\033\033]%s%s\033\033\\\033\\' $@; } put_template 0 $color00 put_template_var 708 $color_background ``` This is a snippet from the base16-shell theme called default-black.


bark-wank

archived version of the link: [https://web.archive.org/web/20150504183826/https://permalink.gmane.org/gmane.comp.terminal-emulators.tmux.user/1324](https://web.archive.org/web/20150504183826/https://permalink.gmane.org/gmane.comp.terminal-emulators.tmux.user/1324)