My Linux workflow

Windows 98 was my first OS, followed by ME, 2000, XP, 7 and now 10. However in May 2008, a friend of my dad introduced me to Mandriva Linux which was my first Linux distro. After a while, I found out about Ubuntu version 9.10, which I used then until the version 11.04. At this point, I started making music and the hardware was pretty much not widely supported under Linux, henceforth I went seperate ways. However I am back for some years now and it became my go-to for daily work. Only in 2021, I finally found a way to continue my current music workflow and style in Linux using Renoise!

Setup update in July 2023

As I said, a general linux power user does not keep one setup for a while. 😄 I am going to keep the old pictures online as a history. Here is my current setup in short:


My Linux setup in general (December 2022)

Since this setup changes regularly, this probably will be different in a few months. However there are plenty of things, I use to increase speed and workflow on its peak!

Let's start with my favourite tool, which is the Terminal. In every Linux distribution, you will find a terminal, because it is probably the common tool to manage everything. Over time, I find more and more terminal apps that are simple tags and tasks, that a GUI application is capable of but in more steps or clicks.

Terminator as Terminal-Emulator

Terminator is my terminal-emulator of choice. Why? Well, it was the first one I found when googling for a terminal with multiple window splits. This is, what was the most important feature for me. Other things that I need are:

Something I miss is the quickly creation of new splits. I used kitty for a short time and it is pretty cool to have there a quick way to open new splits in a common order and change the layout to common orders as well. The reason I don't use kitty is the lack for espanso support - at least I did not find any solution for that yet.

i3 as window tiling manager

When there is something more customizable, then there are window tiling manager. They stack up your windows exactly in a grid tile and you never have to worry about the position yourself. The reason, why I prefer them, are the easy way to store your complete setting in one file. Also I am and was never fan of a fancy looking desktop. I prefer to have a quick ones and tiling window manager are no exceptions. i3 was also the first one I found and it is completely enough for me. Setup is simpe, straightforward and it is probably the most well known wm out there, so you mostly find a solution on Reddit for your problems.

If I want to use a desktop environment, my favourite ones are MATE and Cinnamon. MATE would be my way to go all the time but it sadly has a ground-breaking bug with the app "Barrier", that I also use daily (KVM app) - sometimes in random time gaps, the mouse is freezing and you can't do nothing except resetting or disconnect.

Another cool thing in i3 are that you can setup your shortcuts as you wish. The standard keyboard shortcuts are a small run application called dmenu, open the terminal, split and move your windows, change workspaces etc. The keyboard shortcuts I added are open my favourite applications. Win+ALT are only about opening apps on my PC, for example Win+ALT+G for Gimp, D for Discord and the numbers from 1 to 9 are configured with my most used apps, for example 1 = Browser, 2 = File Manager, 5 - 8 are music applications and so on.

Win+Ctrl are for certain websites I visit on a daily base. 1 is for Youtube, 2 for twitter, g for github, 9 for my website, w for whatsapp and so on. If there is a subsite, I added the Shift key, for example Win+Ctrl+Shift+1 opens YouTube Studio.

espanso as text expander and for notes

Espanso is probably my favourite tool of all time. You have a config file with an abbreviation of your choice and while typing, this expands to a text you put in. For example you can set up something like ":mail" and it automatically inserts you a headline with "Dear ..." and ends with "Yours sincerely, ..." .

This is way more useful than you might think. Meanwhile I have over 1000 lines of codes and I just know this app for some months. I use it for plenty for stuff. Let me name you some examples:

For me, espanso is not only an expander anymore. It is also my app for quick "good to remember" notes. Like I still use text files to store notes for bigger projects. But there are situations where small snippets of notes are super useful and they just need to be there as quick as possible. If you come back to Minecraft and you forget the leaderbord setup? Note it here! If you have a process at work or on your PC in a certain order? Note it here!

The possibilities are endless and I would definitely give it a try, as it is Cross Platform and works well! If you need more inspiration, I recommend looking up Alicia's Notes for more stuff. Otherwise check out the official documentation!

Vim as text and code editor

Vim is the OG when it comes to an amazing, flexible and fast text editor. Vim gives you basically a lot more possibilities on your keyboard than Ctrl, Shift and Alt do. In Vim, you have the normal mode as default, where you can navigate around and execute commands. In Insert, you type your text as usual. In Visual mode, you select text, what you would normally do with your mouse. And therefore, vim likes to be used traditionally without a mouse. This is what makes it fast, once you have learned the techniques.

If you have learned the basics, you can even customize it to your needs and how you need it! Each is different there. It is just important to learn the basic movements, otherwise it would make no sense to remap every basic key combinations. Important are definitely the moving keys hjkl as well as d = delete, c = chance, v = visual mode, i/a = inserting text etc. I say this, because there are many other great command line apps that uses vim motion keys. You will directly feel at home!

My favourite things in vim are:

And there are many more benefits. Vim runs in the terminal and therefore is very minimalistic. I call myself a minimalist person so I went from Java and C# to Python and Vanilla JS. Without the need of a bloated DE and big runtime setups and setting up frameworks like Angular etc. I feel more productive and it is not my cup of tea in general. For me, the less, the better counts.

My colorscheme you see in the screenshot for vim is called Iceberg. Get it here!
Other cool terminal apps

Here are more of my favourite CLI tools:

Tool name Functionality
ffmpeg Quickly convert video files to other formats, audio, change resolution, bitrate and more!
mp3gain Normalize your MP3, useful if you have an oldschool MP3 collection!
ranger A great file ranger, that uses vim motion, so you will feel right at home, if you know vim!
git Useful for backupping your code online, tells you what lines of code you changed and multiuser friendly
fish fish is an alternative shell to the standard bash one. It offers better code completion, colours and a good history for previous commands
bc simple terminal calculator. Easy but good
translate-shell Have all your favourite translator in the shell and switch easily to various engines in favourites languages
imagemagick Let's you modify pictures in an easy quick way, for example convert images
mpv A great and super fast video and audio player. Let's you also watch streams or listen radio by passing the URL

More is coming!