Move to st as default terminal again
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-04-29 23:27:33 +0200 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-04-29 23:27:33 +0200 |
| Commit | f896f87de95cf305fa5f931088d2f8e4eb159096 (patch) |
|
-rw-r--r-- |
.alacritty.toml | 38 | |
-rw-r--r-- |
.config/i3/config | 2 | |
-rwxr-xr-x |
.shenanigans.sh | 2 |
3 files changed, 2 insertions, 40 deletions
| diff --git a/.alacritty.toml b/.alacritty.toml | |||
| 1 | [general] |
||
| 2 | live_config_reload = true |
||
| 3 | |||
| 4 | [window] |
||
| 5 | dynamic_title = true |
||
| 6 | dimensions = { columns = 140, lines = 50 } |
||
| 7 | |||
| 8 | [font] |
||
| 9 | normal = { family = "Berkeley Mono", style = "Bold" } |
||
| 10 | size = 9 |
||
| 11 | |||
| 12 | [colors.primary] |
||
| 13 | background = '#000000' |
||
| 14 | foreground = '#ffffff' |
||
| 15 | |||
| 16 | [colors.cursor] |
||
| 17 | text = '#000000' |
||
| 18 | cursor = '#ffffff' |
||
| 19 | |||
| 20 | [colors.normal] |
||
| 21 | black = '#0e1415' |
||
| 22 | red = '#e25d56' |
||
| 23 | green = '#73ca50' |
||
| 24 | yellow = '#e9bf57' |
||
| 25 | blue = '#4a88e4' |
||
| 26 | magenta = '#915caf' |
||
| 27 | cyan = '#23acdd' |
||
| 28 | white = '#f0f0f0' |
||
| 29 | |||
| 30 | [colors.bright] |
||
| 31 | black = '#777777' |
||
| 32 | red = '#f36868' |
||
| 33 | green = '#88db3f' |
||
| 34 | yellow = '#f0bf7a' |
||
| 35 | blue = '#6f8fdb' |
||
| 36 | magenta = '#e987e9' |
||
| 37 | cyan = '#4ac9e2' |
||
| 38 | white = '#ffffff' |
||
| diff --git a/.config/i3/config b/.config/i3/config | |||
| ... | |||
| 24 | tiling_drag modifier titlebar |
24 | tiling_drag modifier titlebar |
| 25 | 25 | ||
| 26 | # start a terminal |
26 | # start a terminal |
| 27 | bindsym $mod+Return exec alacritty |
27 | bindsym $mod+Return exec st -f "Berkeley Mono:style=Bold:size=9" -g 110x60 |
| 28 | 28 | ||
| 29 | # kill focused window |
29 | # kill focused window |
| 30 | bindsym $mod+Shift+q kill |
30 | bindsym $mod+Shift+q kill |
| ... | |||
| diff --git a/.shenanigans.sh b/.shenanigans.sh | |||
| 1 | # Software list: |
1 | # Software list: |
| 2 | # file-roller xfce4-plugins thunar-archive-plugin |
2 | # file-roller xfce4-plugins thunar-archive-plugin |
| 3 | # vim git tmux maim xclip xsel mc htop entr cifs-utils rsync jq rofi picom |
3 | # vim git tmux maim xclip xsel mc htop entr cifs-utils rsync jq rofi picom |
| 4 | # rsync curl hstr tree make gdb nvtop ctags stow newsboat mpv lazygit fd |
4 | # st rsync curl hstr tree make gdb nvtop ctags stow newsboat mpv lazygit fd |
| 5 | # Additonal stuff: |
5 | # Additonal stuff: |
| 6 | # go install golang.org/x/tools/gopls@latest |
6 | # go install golang.org/x/tools/gopls@latest |
| 7 | 7 | ||
| ... | |||