initial commit

This commit is contained in:
2026-02-14 21:23:19 +01:00
commit 05316253fa
29 changed files with 1156 additions and 0 deletions

13
docs/applications.md Normal file
View File

@@ -0,0 +1,13 @@
## My applications
|Application|Description|
|---|---|
|rofi|Application launcher and window switcher|
|i3blocks|i3 status bar|
|dunst|Notification for i3|
|picom|Compositor (transparency, shadows)|
|gnome-terminal|Terminal|
|ranger|command line file manager|
|mousepad|Editor|
|flameshot|Screenshot utility|
|scrot|Screenshot for lock screen|

37
docs/i3-shortcuts.md Normal file
View File

@@ -0,0 +1,37 @@
## My Custom i3 shortcuts
|Shortcut|Description|
|---|---|
|mod+q|Close/Kill window|
|mod+space|Open Rofi application launcher|
|mod+f|Fullscreen a window/container|
|mod+s|Change layout to stack mode|
|mod+d|Change layout to split mode|
|mod+PrintScr|Open Flameshot screenshot application|
|mod+shift+enter|Open Terminal|
|mod+shift+f|Open Ranger command line file manager|
|mod+shift+e|Open Mousepad editor|
|mod+left|Switch focus to container on the left|
|mod+righ|Switch focus to container on the right|
|mod+up|Switch focus to container at the top|
|mod+down|Switch focus to container at the bottom|
|mod+shift+left|Move current container to left|
|mod+shift+right|Move current container to right|
|mod+shift+up|Move current container to top|
|mod+shift+down|Move current container to bottom|
|mod+shift+space|Toggle floating mode of container/window|
|mod+shift+minus|Move current window to scratchpad|
|mod+minus|Bring windows from scratchpad|
|mod+ctl+left|Move to worksapce left|
|mod+ctl+right|Move to worksapce right|
|mod+1|Move to workspace 1|
|mod+2|Move to workspace 2|
|mod+3|Move to workspace 3|
|mod+4|Move to workspace 4|
|mod+shift+1|Move the current window to workspace 1|
|mod+shift+2|Move the current window to workspace 2|
|mod+shift+3|Move the current window to workspace 3|
|mod+shift+4|Move the current window to workspace 4|
|mod+r|(up,down,left,right) Resize current window|
|mod+ctl+r|Restart i3|
|mod+ctl+del|Show (e)xit, (h)ibernate, (r)eboot, (s)hutdown (o)ption|

7
docs/ubuntu-specific.md Normal file
View File

@@ -0,0 +1,7 @@
## Ubuntu specific tweaks
#### Install pre-requisites
```
sudo apt install -y git ansible python3 curl i3
```
Note: Since i3 version 4.22, gaps support is included in the standard i3 package. A separate i3-gaps installation is no longer needed.

11
docs/zsh.md Normal file
View File

@@ -0,0 +1,11 @@
## oh-my-zsh with zsh-autosuggestions
```
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
cp $HOME/myi3/files/configs/robbyrussell.zsh-theme $HOME/.oh-my-zsh/themes/robbyrussell.zsh-theme
git clone https://github.com/zsh-users/zsh-autosuggestions ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/zsh-autosuggestions
```
Update $HOME/.zshrc
```
plugins=(zsh-autosuggestions)
```