The package manager from Arch Linux aka pacman works with signed packages. To sign a package you need key. To be able to install a package you need a key. There is the “archlinux-keyring” package that will need an update from time to time and there is the...
Since we always use skel to copy/paste the files from /etc/skel to your home directory, the config.fish is overwritten every time. We have included the following lines to the config.fish. There are more possibilities. # Aliasesif [ -f $HOME/.config/fish/alias.fish...
Since we always use skel to copy/paste the files from /etc/skel to your home directory, the .zshrc is overwritten every time. We have included the following lines to the .bashrc. [[ -f ~/.zshrc-personal ]] && . ~/.zshrc-personal If you create a file on your...
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...
Our systems have Bash as our standard shell. We could change to Zsh as shell. You can find the Zsh website here, the github here and the themes here. What do you install to have zsh? It all depends on the iso you start with Arch Linux, ArcoLinux, ArcoLinuxD or...
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...
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...
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...
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...
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...
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...
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...
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...
SHORT VIDEO update skel cb You are done LONG TECHNICAL VIDEO We explain how to update.arcolinux-root-git contains your .bashrc and it is often that one that gets changed.https://wiki.archlinux.org/index.php/Bash#Configuration_filesWe start by talking about the...
.bashrc is a very important file in your linux system. The point at the start means it is hidden. You need to press CTRL + H on many filemanagers to show the hidden files/folders. If you want to know much more about bash, you definitely need to read up on the Arch...
Zsh is an alternative to bash. Check out the Arch wiki first. We have a script to install zsh. But not only zsh also other features that are need to have like zsh-completions oh-my-zsh zsh-syntax-hightlighting Command not found has been abandoned in Feb 2018. You will...
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...
Thanks to a tip on discord on the suggestions channel we have a new alias.One to see what packages have been installed recently R I P equals Recent Installed PackagesMake sure expac is installed on your...
When navigating the internet you find aliases, configs, .dot files you might like to try. Before you do try to know as much as possible about the code. We are going to study this line of code from Nick Petrov. alias cleanup=’sudo pacman -Rns $(pacman...
We have created a new alias – bupskel. In ArcoLinux we put our configurations inside /etc/skel. Everything we put in this folder will be added to your home directory when we create a new iso. Bupskel will copy the content of /etc/skel to a hidden folder in your...
This is a command that just works on any Linux system. Type in the terminal the command alias and you will get the list of all possible aliases on that system. Making a new one is super easy. For example when you type inxi you get just 3 lines of information. If you...
This applies to all desktop environments. Pamac is our graphical updater in ArcoLinux. You can find more info about updating via pamac in this article. But you can also update in the terminal. Personally I start the day with a command in the terminal and read what...
This applies to all desktop environments. ArchMerge chooses Termite as the standard terminal. You can change that preference via Preferred Applications in the menu or looking for the application : exo-preferred-applications. Our terminal is going to be our best...
Our terminal is going to be our best friend. In that article we saw that there are many more themes already available for termite on ArcoLinux. There are also many other terminals to choose from. The terminal is the most important part in Linux. You need to learn...