: Available on Spotify , Apple Music , and SoundCloud .
The song is a revolutionary anthem within Kurdish culture, particularly associated with the struggle for freedom. Delîla, the original composer and lyricist, was a partisan fighter and musician who became a symbolic figure after her death in 2008. Arges Г› Delila Ha Gerilla
: The lyrics describe the life and sacrifice of a guerrilla fighter, focusing on themes of hope and perseverance despite hardship. : Available on Spotify , Apple Music , and SoundCloud
: The central refrain, "Ha gerilla gerilla gerilla / Halkının umudu gerilla," translates to "Oh guerrilla... the hope of your people," positioning the fighter as a symbol of regional aspiration. Artist Background: Delîla Meyaser : The lyrics describe the life and sacrifice
: The collaborative version featuring Argeş is hosted on platforms like Dailymotion and YouTube . Gerilla – Song by Delila - Apple Music
Delîla was born in 1981 in Amed (Diyarbakır) and was known for her talent as a singer and drum player before joining the Kurdish movement. Her music, including the album Jinên Azad released in 2008, continues to be widely played as a tribute to her life and the causes she supported. Where to Listen You can find the track on several major platforms:
: It speaks of fighters moving from "position to position" ( mevziden mevziye ) and facing hunger, thirst, and exhaustion without giving up.
Now that you've completed the installation, type tmux to start the first session:
tmux
Split your pane horizontally by typing:
Ctrl+b then %
Note: Ctrl+b is the default prefix key. You can customize this in ~/.tmux.conf file.
Swhich pane by typing:
Ctrl+b then
Ctrl+b then
Detach/Exit session:
Ctrl+b then d
Attach to last session:
tmux a
To change prefix key to Ctrl+a, add the below lines to ~/.tmux.conf:
# change prefix from 'Ctrl-b' to 'Ctrl-a'
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefixTo change prefix key to Ctrl+Space:
# change prefix from 'Ctrl-b' to 'Ctrl-Space'
unbind C-b
set-option -g prefix C-Space
bind-key C-Space send-prefixTmux config changes require reload to be applied, run tmux source-file ~/.tmux.conf from the terminal, or run source-file ~/.tmux.conf from Tmux’s command-line mode to reload.
To configure shortcut for quick reload, add the line:
bind r source-file ~/.tmux.conf\; display "Reloaded!"Now feel free to experiment with the cheat sheet in home page. If you find any missing shortcut, please let me know :D