Update
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-02-18 01:03:55 +0100 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2026-02-18 01:03:55 +0100 |
| Commit | 5c589088e912fb7b5bb515e0dad9f2e2bdf105a3 (patch) |
|
-rw-r--r-- |
.alacritty.toml | 38 | |
-rw-r--r-- |
.conkyrc | 2 | |
-rw-r--r-- |
.cwmrc | 2 | |
-rw-r--r-- |
.tmux.conf | 2 |
4 files changed, 41 insertions, 3 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 = 70 } |
||
| 7 | |||
| 8 | [font] |
||
| 9 | normal = { family = "Berkeley Mono", style = "Bold" } |
||
| 10 | size = 10 |
||
| 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/.conkyrc b/.conkyrc | |||
| ... | |||
| 27 | GPU Temp${alignr} ${exec nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader}°C |
27 | GPU Temp${alignr} ${exec nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader}°C |
| 28 | Audio Sink${alignr}${exec pats -l} |
28 | Audio Sink${alignr}${exec pats -l} |
| 29 | Volume${alignr}${exec amixer get Master | awk -F'[][]' '/Left:/ { print $2; exit }'} |
29 | Volume${alignr}${exec amixer get Master | awk -F'[][]' '/Left:/ { print $2; exit }'} |
| 30 | Microphone${alignr}${if_match ${execi 5 bash -c 'source ~/.shenanigans.sh; mic_status'} == 1}${color}active${else}${color orange}muted${endif}${color} |
30 | Microphone${alignr}${if_match ${execi 5 bash -c 'source ~/.shenanigans.sh; micstatus'} == 1}${color}active${else}${color orange}muted${endif}${color} |
| 31 | 31 | ||
| 32 | CPU Usage${alignr} $cpu% |
32 | CPU Usage${alignr} $cpu% |
| 33 | ${cpugraph} |
33 | ${cpugraph} |
| ... | |||
| diff --git a/.cwmrc b/.cwmrc | |||
| ... | |||
| 6 | unbind-key all |
6 | unbind-key all |
| 7 | unbind-mouse all |
7 | unbind-mouse all |
| 8 | 8 | ||
| 9 | bind-key 4-Return 'st -f "Berkeley Mono:style=Bold:size=10" -g 110x60' |
9 | bind-key 4-Return 'alacritty' |
| 10 | bind-key Print "sh -c 'maim -s | xclip -selection clipboard -t image/png'" |
10 | bind-key Print "sh -c 'maim -s | xclip -selection clipboard -t image/png'" |
| 11 | bind-key C-Escape "sh -c 'maim -s | xclip -selection clipboard -t image/png'" |
11 | bind-key C-Escape "sh -c 'maim -s | xclip -selection clipboard -t image/png'" |
| 12 | bind-key 4-w /home/m/Applications/brave --new-window |
12 | bind-key 4-w /home/m/Applications/brave --new-window |
| ... | |||
| diff --git a/.tmux.conf b/.tmux.conf | |||
| ... | |||
| 15 | 15 | ||
| 16 | set -g status-bg '#222222' |
16 | set -g status-bg '#222222' |
| 17 | set -g status-fg '#ffffff' |
17 | set -g status-fg '#ffffff' |
| 18 | set -g window-status-current-format "#[fg=#ffffff]#[bg=#000000]#[fg=#ffffff]#[bg=#000000] #I:#W #[fg=#ffffff]#[bg=#000000]" |
18 | set -g window-status-current-format "#[fg=#000000]#[bg=#cccccc]#[fg=#000000]#[bg=#cccccc] #I:#W #[fg=#000000]#[bg=#cccccc]" |
| 19 | 19 | ||
| 20 | bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i --clipboard" |
20 | bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i --clipboard" |
| 21 | 21 | ||
| ... | |||