Easy Config Reloads

Posted on Thu 16 April 2026 in Shorts • Tagged with tmux, knowledge

Since I’m experimenting quite often with my tmux.conf I want to reload the config easily. This is why I have a command to reload my config on r:

# reload config file (change file location to your the tmux.conf you want to use)
bind r source-file ~/.tmux.conf

Intuitive Split Commands

Posted on Thu 16 April 2026 in Shorts • Tagged with tmux, knowledge

Another thing I personally find quite difficult to remember is the pane splitting commands." to split vertically and % to split horizontally just doesn’t work for my brain. I find it helpful to have use characters that resemble a visual representation of the split, so I chose | and - for splitting panes horizontally and vertically:

# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %

Upgrade Raspbian Jessie to Stretch

Posted on Thu 06 June 2019 in RaspberryPi • Tagged with raspberry pi, rpi, raspbian, knowledge, linux, how-to

How to upgrade Raspbian Jessie to Stretch for the patient.


Continue reading

Changing preferences in Pantheon Files (Elementary OS)

Posted on Sat 20 April 2019 in Linux • Tagged with linux, knowledge, notes

Haw to change the preferences in Elementary OS file manager "Files" and specificaly how to enable or disable the single-click feature.


Continue reading

Install Python 3.7 on Raspberry Pi (Raspbian)

Posted on Sat 30 March 2019 in Python • Tagged with python, raspberry pi, rpi, raspbian, knowledge

How to install Python 3.7 on Rasberry Pi running Rasbpian


Continue reading