From 5c589088e912fb7b5bb515e0dad9f2e2bdf105a3 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Wed, 18 Feb 2026 01:03:55 +0100 Subject: Update --- .alacritty.toml | 38 ++++++++++++++++++++++++++++++++++++++ .conkyrc | 2 +- .cwmrc | 2 +- .tmux.conf | 2 +- 4 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 .alacritty.toml diff --git a/.alacritty.toml b/.alacritty.toml new file mode 100644 index 0000000..2fabff4 --- /dev/null +++ b/.alacritty.toml @@ -0,0 +1,38 @@ +[general] +live_config_reload = true + +[window] +dynamic_title = true +dimensions = { columns = 140, lines = 70 } + +[font] +normal = { family = "Berkeley Mono", style = "Bold" } +size = 10 + +[colors.primary] +background = '#000000' +foreground = '#ffffff' + +[colors.cursor] +text = '#000000' +cursor = '#ffffff' + +[colors.normal] +black = '#0e1415' +red = '#e25d56' +green = '#73ca50' +yellow = '#e9bf57' +blue = '#4a88e4' +magenta = '#915caf' +cyan = '#23acdd' +white = '#f0f0f0' + +[colors.bright] +black = '#777777' +red = '#f36868' +green = '#88db3f' +yellow = '#f0bf7a' +blue = '#6f8fdb' +magenta = '#e987e9' +cyan = '#4ac9e2' +white = '#ffffff' diff --git a/.conkyrc b/.conkyrc index ca17eeb..a87a8de 100644 --- a/.conkyrc +++ b/.conkyrc @@ -27,7 +27,7 @@ CPU Temp${alignr} ${exec sensors | grep 'Package id 0:' | awk '{print $4}' | sed GPU Temp${alignr} ${exec nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader}°C Audio Sink${alignr}${exec pats -l} Volume${alignr}${exec amixer get Master | awk -F'[][]' '/Left:/ { print $2; exit }'} -Microphone${alignr}${if_match ${execi 5 bash -c 'source ~/.shenanigans.sh; mic_status'} == 1}${color}active${else}${color orange}muted${endif}${color} +Microphone${alignr}${if_match ${execi 5 bash -c 'source ~/.shenanigans.sh; micstatus'} == 1}${color}active${else}${color orange}muted${endif}${color} CPU Usage${alignr} $cpu% ${cpugraph} diff --git a/.cwmrc b/.cwmrc index 7e30a45..14b0193 100644 --- a/.cwmrc +++ b/.cwmrc @@ -6,7 +6,7 @@ moveamount 200 unbind-key all unbind-mouse all -bind-key 4-Return 'st -f "Berkeley Mono:style=Bold:size=10" -g 110x60' +bind-key 4-Return 'alacritty' bind-key Print "sh -c 'maim -s | xclip -selection clipboard -t image/png'" bind-key C-Escape "sh -c 'maim -s | xclip -selection clipboard -t image/png'" bind-key 4-w /home/m/Applications/brave --new-window diff --git a/.tmux.conf b/.tmux.conf index a4996f0..96c417a 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -15,7 +15,7 @@ set -g renumber-windows on set -g status-bg '#222222' set -g status-fg '#ffffff' -set -g window-status-current-format "#[fg=#ffffff]#[bg=#000000]#[fg=#ffffff]#[bg=#000000] #I:#W #[fg=#ffffff]#[bg=#000000]" +set -g window-status-current-format "#[fg=#000000]#[bg=#cccccc]#[fg=#000000]#[bg=#cccccc] #I:#W #[fg=#000000]#[bg=#cccccc]" bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i --clipboard" -- cgit v1.2.3