Since we always use skel to copy/paste the files from /etc/skel to your home directory, the bashrc is overwritten every time. We have now included the following lines to the .bashrc. [[ -f ~/.bashrc-personal ]] && . ~/.bashrc-personal If you create a file on...
Tag Page
EVERYTHING YOU NEED TO KNOW ABOUT TMUX – Reconstructing Tmux Sessions After Restarts
By default, if the tmux server is terminated (gracefully or not), all the pane layouts, running programs, working directories are lost. This can cause frustration and loss of productivity for users who happen to be running multiple sessions, windows, panes, and...
Everything you need to know about tmux – Plugins Manager
Like vi, emacs, and other mature Linux programs, tmux is extensible and allows third-party code (or plugins) to extend its features and capabilities. The plugins can be installed manually, or managed through a "plugin manager." Tmux Plugin Manger (also known as "tpm")...
Everything you need to know about tmux – Status Bar
The tmux status bar (or status line) is the rectangular box that appears at the bottom of the screen (by default) when tmux starts. It displays helpful information related to the current tmux session, as well as general system information. By default, the status line...
Everything you need to know about tmux – Configuration
One of the beauties of tmux is its simplicity, in terms of configuration, right out-of-the-box. By default, tmux is fully functional and requires zero-configuration. However, most users eventually break away from the default settings and will begin to adjust and tweak...
Everything you need to know about tmux – Panes
What are tmux Panes?A tmux pane is the entity that we actually use to run commands, scripts, and processes, such as ssh, backup, vim, htop, and what have you. Technically, they are pseudoterminals encapsulating shells, like Zsh or Bash. In other words, they are...
Everything you need to know about tmux – Windows
What are tmux Windows? tmux window is the entity that holds panes and resides within the tmux session. Think of a window in tmux as a tab in your notebook. Tabs (windows) help organize your work and group your individual pages (panes) based on some topic of your...
Everything you need to know about tmux – Servers and Sessions
How Does tmux Work?tmux is a clien-server implementation. When we start tmux, we are essentially connected to a server instance via a socket connection. What is presented in the terminal in our screen is a client connection to the tmux server. tmux server manages all...
Everything you need to know about tmux – Introduction
Why use tmux?tmux is a productivity tool for the terminal. It is a powerful utility that empowers terminal users to strike a fine-balance between multitasking and organization. While some gui terminals attempt to addess this challenge with splitting, tabs, and what...
How to get the logo of ArcoLinux back in neofetch/termite
Update of 27 December 2018 Neofetch is an application to have an overview of the most important settings. You can either have an ASCII look or an IMAGE look.After the update and the skel to copy/paste the new configs to your home directory, there should be only two...