to my shame i did not know how to customize the nmtui
default colors (for the sake of my own health and mental stability). after reading a bit, i found out it uses the so-called newt
backend with the whiptail
app.
long story short… turns out it reads some of the env variables for that backend to setup the colors (if you’re interested, here’s where this happens in the code).
so you can simply set these env variables before calling nmtui
. here’s a combination i came up with:
NEWT_COLORS='root=black,black;window=black,black;border=white,black;listbox=white,black;label=blue,black;checkbox=red,black;title=green,black;button=white,red;actsellistbox=white,red;actlistbox=white,gray;compactbutton=white,gray;actcheckbox=white,blue;entry=lightgray,black;textbox=blue,black' nmtui
enjoy and keep your eyes healthy!
for comparison, here’s the default
Another option is to change your terminal color profile. Here’s what the default looks like on Kitty’s Misterioso theme:
imo more tolerable than the default colors, and it applies to other terminal apps too.
To preview themes:
kitty +kitten themes
Please don’t use “rape” as a casual negative verb, there are better, more accurate words to use that don’t needlessly reference SA.
i really apologize if the use of that word was perceived as offensive, that was obviously not my intent. i’m usually quite straightforward in picking words (i come from a completely different culture, where sexual assaults are extremely uncommon).
PS. for the context of others reading this comment, the original title of this post was: “nmtui that does not rape your eyes.”
Thank you, OP.
Thanks!
(i come from a completely different culture, where sexual assaults are extremely uncommon)
What culture is that? I wasn’t aware such a thing existed.
Probably a Scandinavian country if I had to guess.
(i come from a completely different culture, where sexual assaults are extremely uncommon).
It is more likely that you are just not aware of it.
deleted by creator
Removed by mod
Because it normalizes a word and desensitizes it, making it less likely for victims to stand up. It can also bring up horrifying memories in SA survivors.
There exist negative words that do not share the same mass systemic connotations. It’s generally better to use words that don’t bring with them the same issues.
Removed by mod
What do you mean “free?” I don’t control him, but the fact is that using words that bring up topics of SA despite that being an extremely sensitive subject is a bad thing.
There is nothing to be gained at best, and at worst you’ve resurfaced horrifying memories for others.
Basic human decency, which is why OP quickly changed it and everyone is on the same page.
Removed by mod
None of that actually addresses my points, you’re just finger-wagging at me for being “woke.”
If you could make a coherent point we could have a discussion.
Additionally, referencing likes/dislikes is pointless, I could just as easily point to how your comments have worse ratios than mine.
Removed by mod
Guys, guys… You’re over-ideologizing a very simple humane request. I was asked nicely and respectfully – I tried to respond in the same way. Simple as that. I’m usually not regulating my personal communications with others in terms of laws and amendments.
Removed by mod
Maybe. In any case I try to never infer someone’s tone from text interactions since it’s always faulty and lacks human dimension. By default I just assume people actually mean what they write. I think we get (on average) more aggressive, and tend to show less empathy when not talking face to face.
Also… The term “American left-wing” is offensive for a Marxist like myself. :D
This is great, bookmarking for later. My polybar config opens nmtui in a floating kitty terminal when you click the networking icons. It’d be awesome to theme it accordingly.
same here (except it’s waybar in my case) ( :
I’m not sure where this software comes from, but you should try to get a merge to fix this to default. I’d give it a thumbs up after some testing for sure.
Thanks. I’ll use it my config. you’re an eye saver.
Thank you! I was just suffering from this an hour ago…
Wow thanks, I’m definitely going to alias that :)
Luckily I don’t have to use nmtui all that much but this look nice, I might try it
It’s very useful for people who don’t use a desktop environment, such as TWM (tiling window manager) users. I use nmtui all the time.
Agreed. But for such a simple tool I find it so ugly and unintuitive that I ended up rolling my own 3-line script using
nmcli
andfzf
that does exactly the same thing more logically and in less keystrokes.I would be interested in seeing the script. I really need to learn fzf now.
Sure.
wn=$(nmcli dev wifi list | fzf) ssid="$(echo $wn | awk '{print $2}')" read -e -p "Password: " pw nmcli dev wifi connect "$ssid" password $pw
Me too!
That’s the kind of innovation I expect from the Linux community