this post was submitted on 09 Mar 2024
169 points (96.7% liked)

Linux

46819 readers
1079 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

I'm looking for a new terminal. What's your favorite one and why? Which one is popular?

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 10 points 5 months ago (1 children)

Alacritty, launching tmux with fish shell. The latter shell could easily have been zsh. But a good and fast terminal w/tmux is such a nice thing to have.

Any time to wish you had bothered with tmux, is when it's already too late. If you go for this, you'll never look back.

[–] [email protected] 3 points 5 months ago (1 children)
[–] [email protected] 5 points 5 months ago* (last edited 5 months ago) (1 children)

Don't know why you were downvoted. In any case, all terminals can be configured to start with a specific command and arguments. So, depending on your terminal, you might need to read the documentation, and/or search the web.

In alacritty config, this is:

shell:
  program: <CMD>
  args:
    - <ARGS>

Then one of these:

  1. <CMD> is the path to tmux, and you have configured tmux to run the shell of your choice. Search the web for how.
  2. <CMD> is the path to your shell, and it supports launching in tmux. Search the web for how.

For me, it's the second one. I use fish, and I launch it with fish --command=tmux. So the above config looks like this:

shell:
  program: /usr/bin/fish
  args:
    - --command=tmux
[–] [email protected] 1 points 5 months ago

Awesome. Thanks. I'll set that up later.