aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.alacritty.toml38
-rw-r--r--.conkyrc2
-rw-r--r--.cwmrc2
-rw-r--r--.tmux.conf2
4 files changed, 41 insertions, 3 deletions
diff --git a/.alacritty.toml b/.alacritty.toml
new file mode 100644
index 0000000..2fabff4
--- /dev/null
+++ b/.alacritty.toml
@@ -0,0 +1,38 @@
1[general]
2live_config_reload = true
3
4[window]
5dynamic_title = true
6dimensions = { columns = 140, lines = 70 }
7
8[font]
9normal = { family = "Berkeley Mono", style = "Bold" }
10size = 10
11
12[colors.primary]
13background = '#000000'
14foreground = '#ffffff'
15
16[colors.cursor]
17text = '#000000'
18cursor = '#ffffff'
19
20[colors.normal]
21black = '#0e1415'
22red = '#e25d56'
23green = '#73ca50'
24yellow = '#e9bf57'
25blue = '#4a88e4'
26magenta = '#915caf'
27cyan = '#23acdd'
28white = '#f0f0f0'
29
30[colors.bright]
31black = '#777777'
32red = '#f36868'
33green = '#88db3f'
34yellow = '#f0bf7a'
35blue = '#6f8fdb'
36magenta = '#e987e9'
37cyan = '#4ac9e2'
38white = '#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
27GPU Temp${alignr} ${exec nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader}°C 27GPU Temp${alignr} ${exec nvidia-smi --query-gpu=temperature.gpu --format=csv,noheader}°C
28Audio Sink${alignr}${exec pats -l} 28Audio Sink${alignr}${exec pats -l}
29Volume${alignr}${exec amixer get Master | awk -F'[][]' '/Left:/ { print $2; exit }'} 29Volume${alignr}${exec amixer get Master | awk -F'[][]' '/Left:/ { print $2; exit }'}
30Microphone${alignr}${if_match ${execi 5 bash -c 'source ~/.shenanigans.sh; mic_status'} == 1}${color}active${else}${color orange}muted${endif}${color} 30Microphone${alignr}${if_match ${execi 5 bash -c 'source ~/.shenanigans.sh; micstatus'} == 1}${color}active${else}${color orange}muted${endif}${color}
31 31
32CPU Usage${alignr} $cpu% 32CPU Usage${alignr} $cpu%
33${cpugraph} 33${cpugraph}
diff --git a/.cwmrc b/.cwmrc
index 7e30a45..14b0193 100644
--- a/.cwmrc
+++ b/.cwmrc
@@ -6,7 +6,7 @@ moveamount 200
6unbind-key all 6unbind-key all
7unbind-mouse all 7unbind-mouse all
8 8
9bind-key 4-Return 'st -f "Berkeley Mono:style=Bold:size=10" -g 110x60' 9bind-key 4-Return 'alacritty'
10bind-key Print "sh -c 'maim -s | xclip -selection clipboard -t image/png'" 10bind-key Print "sh -c 'maim -s | xclip -selection clipboard -t image/png'"
11bind-key C-Escape "sh -c 'maim -s | xclip -selection clipboard -t image/png'" 11bind-key C-Escape "sh -c 'maim -s | xclip -selection clipboard -t image/png'"
12bind-key 4-w /home/m/Applications/brave --new-window 12bind-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
15 15
16set -g status-bg '#222222' 16set -g status-bg '#222222'
17set -g status-fg '#ffffff' 17set -g status-fg '#ffffff'
18set -g window-status-current-format "#[fg=#ffffff]#[bg=#000000]#[fg=#ffffff]#[bg=#000000] #I:#W #[fg=#ffffff]#[bg=#000000]" 18set -g window-status-current-format "#[fg=#000000]#[bg=#cccccc]#[fg=#000000]#[bg=#cccccc] #I:#W #[fg=#000000]#[bg=#cccccc]"
19 19
20bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i --clipboard" 20bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xsel -i --clipboard"
21 21