Everything you need to know about keys

Everything you need to know about keys

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...
Add your personal aliases to fish the smart way

Add your personal aliases to fish the smart way

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...
Add your personal aliases to zsh the smart way

Add your personal aliases to zsh the smart way

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...
Add your personal aliases to bashrc the smart way

Add your personal aliases to bashrc the smart way

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...
Changing your shell from bash to zsh and back – any desktop

Changing your shell from bash to zsh and back – any desktop

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...
EVERYTHING YOU NEED TO KNOW ABOUT TMUX – Reconstructing Tmux Sessions After Restarts

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...
EVERYTHING YOU NEED TO KNOW ABOUT TMUX – Reconstructing Tmux Sessions After Restarts

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 – Reconstructing Tmux Sessions After Restarts

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 – Reconstructing Tmux Sessions After Restarts

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 – Reconstructing Tmux Sessions After Restarts

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 – Reconstructing Tmux Sessions After Restarts

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...
EVERYTHING YOU NEED TO KNOW ABOUT TMUX – Reconstructing Tmux Sessions After Restarts

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 install zsh on ArcoLinux(D) tips tricks and theming

How to install zsh on ArcoLinux(D) tips tricks and theming

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...
How to get the logo of ArcoLinux back in neofetch/termite

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...
Explore the new alias rip in our bashrc

Explore the new alias rip in our bashrc

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...
Use bupskel to compare the ArcoLinux updates coming in

Use bupskel to compare the ArcoLinux updates coming in

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...
Checking out the aliases on your system can be quite interesting

Checking out the aliases on your system can be quite interesting

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...
Update your system using the terminal and upall or pksyua

Update your system using the terminal and upall or pksyua

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...
The terminal is going to be our best friend

The terminal is going to be our best friend

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...
How to install software on ArcoLinux in the terminal

How to install software on ArcoLinux in the terminal

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...