diff options
-rw-r--r-- | alacritty/.config/alacritty/alacritty.yml | 44 | ||||
-rwxr-xr-x | bin/.local/bin/shut | 2 | ||||
-rw-r--r-- | picom/.config/picom.conf | 4 | ||||
-rw-r--r-- | spectrwm/.config/spectrwm/spectrwm.conf | 6 | ||||
-rw-r--r-- | x/.xinitrc | 2 |
5 files changed, 33 insertions, 25 deletions
diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index 85e940b..38cc4c6 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml | |||
@@ -1,30 +1,30 @@ | |||
1 | colors: | 1 | colors: |
2 | # Default colors | 2 | # Default colors |
3 | primary: | 3 | primary: |
4 | background: "#000000" | 4 | background: '0x000000' |
5 | foreground: "#D8DEE9" | 5 | foreground: '0xc0c5ce' |
6 | 6 | ||
7 | # Normal colors | 7 | # Normal colors |
8 | normal: | 8 | normal: |
9 | black: "#3B4252" | 9 | black: '0x2b303b' |
10 | red: "#BF616A" | 10 | red: '0xbf616a' |
11 | green: "#A3BE8C" | 11 | green: '0xa3be8c' |
12 | yellow: "#EBCB8B" | 12 | yellow: '0xebcb8b' |
13 | blue: "#81A1C1" | 13 | blue: '0x8fa1b3' |
14 | magenta: "#B48EAD" | 14 | magenta: '0xb48ead' |
15 | cyan: "#88C0D0" | 15 | cyan: '0x96b5b4' |
16 | white: "#abb2bf" | 16 | white: '0xc0c5ce' |
17 | 17 | ||
18 | # Bright colors | 18 | # Bright colors |
19 | bright: | 19 | bright: |
20 | black: "#5c6370" | 20 | black: '0x65737e' |
21 | red: "#e06c75" | 21 | red: '0xbf616a' |
22 | green: "#98c379" | 22 | green: '0xa3be8c' |
23 | yellow: "#d19a66" | 23 | yellow: '0xebcb8b' |
24 | blue: "#61afef" | 24 | blue: '0x8fa1b3' |
25 | magenta: "#c678dd" | 25 | magenta: '0xb48ead' |
26 | cyan: "#56b6c2" | 26 | cyan: '0x96b5b4' |
27 | white: "#ECEFF4" | 27 | white: '0xeff1f5' |
28 | 28 | ||
29 | background_opacity: 1.0 | 29 | background_opacity: 1.0 |
30 | 30 | ||
@@ -46,6 +46,8 @@ font: | |||
46 | size: 9.0 | 46 | size: 9.0 |
47 | antialias: true | 47 | antialias: true |
48 | autohint: true | 48 | autohint: true |
49 | lcdfiler: lcddefault | ||
50 | rgba: rgb | ||
49 | 51 | ||
50 | offset: | 52 | offset: |
51 | x: 0 | 53 | x: 0 |
@@ -59,6 +61,12 @@ window: | |||
59 | x: 8 | 61 | x: 8 |
60 | y: 8 | 62 | y: 8 |
61 | 63 | ||
64 | cursor: | ||
65 | # - ▇ Block | ||
66 | # - _ Underline | ||
67 | # - | Beam | ||
68 | style: Underline | ||
69 | |||
62 | scrolling: | 70 | scrolling: |
63 | # Maximum number of lines in the scrollback buffer. | 71 | # Maximum number of lines in the scrollback buffer. |
64 | # Specifying '0' will disable scrolling. | 72 | # Specifying '0' will disable scrolling. |
diff --git a/bin/.local/bin/shut b/bin/.local/bin/shut index 2ed1951..53fdf03 100755 --- a/bin/.local/bin/shut +++ b/bin/.local/bin/shut | |||
@@ -1,6 +1,6 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | 2 | ||
3 | RET=$(echo -e "shutdown\nreboot\nsleep\nlock\ncancel" | dmenu -l 5 -p "Sayonara" -nb "#000000" -nf "#bfbfbf" -sb "#84a0c6" -sf "#000000" -fn "ASM\-Bold:style=☞:size=10") | 3 | RET=$(echo -e "shutdown\nreboot\nsleep\nlock\ncancel" | dmenu -l 5 -p "Sayonara" -nb "#000000" -nf "#bfbfbf" -sb "#84a0c6" -sf "#000000" -fn "ASM\-Regular:style=☞:size=10:antialias=true:autohint=true") |
4 | 4 | ||
5 | case $RET in | 5 | case $RET in |
6 | shutdown) sudo poweroff ;; | 6 | shutdown) sudo poweroff ;; |
diff --git a/picom/.config/picom.conf b/picom/.config/picom.conf index bc22261..858d87e 100644 --- a/picom/.config/picom.conf +++ b/picom/.config/picom.conf | |||
@@ -37,8 +37,8 @@ blur-background-exclude = [ | |||
37 | ]; | 37 | ]; |
38 | opacity-rule = [ | 38 | opacity-rule = [ |
39 | "40:class_g = 'Bspwm' && class_i = 'presel_feedback'", | 39 | "40:class_g = 'Bspwm' && class_i = 'presel_feedback'", |
40 | "100:class_g = 'alacritty' && focused", | 40 | "100:class_g = 'Alacritty' && focused", |
41 | "95:class_g = 'alacritty' && !focused" | 41 | "95:class_g = 'Alacritty' && !focused" |
42 | ]; | 42 | ]; |
43 | 43 | ||
44 | ## FADING | 44 | ## FADING |
diff --git a/spectrwm/.config/spectrwm/spectrwm.conf b/spectrwm/.config/spectrwm/spectrwm.conf index 8cc43e5..79252db 100644 --- a/spectrwm/.config/spectrwm/spectrwm.conf +++ b/spectrwm/.config/spectrwm/spectrwm.conf | |||
@@ -38,7 +38,7 @@ bar_color[1] = black | |||
38 | bar_color_selected[1] = rgb:00/80/80 | 38 | bar_color_selected[1] = rgb:00/80/80 |
39 | bar_font_color[1] = rgb:b5/b5/b5, rgb:73/73/73 | 39 | bar_font_color[1] = rgb:b5/b5/b5, rgb:73/73/73 |
40 | bar_font_color_selected = black | 40 | bar_font_color_selected = black |
41 | bar_font = ASM\-Bold:style=☞:size=9.5 | 41 | bar_font = ASM\-Bold:style=☞:size=9.5:antialias=true:autohint=true |
42 | bar_action = ~/.config/spectrwm/statusbar | 42 | bar_action = ~/.config/spectrwm/statusbar |
43 | bar_action_expand = 1 | 43 | bar_action_expand = 1 |
44 | bar_justify = left | 44 | bar_justify = left |
@@ -129,8 +129,8 @@ bind[pprev] = XF86AudioPrev | |||
129 | bind[pplay] = XF86AudioPlay | 129 | bind[pplay] = XF86AudioPlay |
130 | 130 | ||
131 | # Optional default programs that will only be validated if you override: | 131 | # Optional default programs that will only be validated if you override: |
132 | program[screenshot_all] = screenshot full # optional | 132 | program[screenshot_all] = ~/.local/bin/screenshot full # optional |
133 | program[screenshot_wind] = screenshot window # optional | 133 | program[screenshot_wind] = ~/.local/bin/screenshot window # optional |
134 | # program[initscr] = initscreen.sh # optional | 134 | # program[initscr] = initscreen.sh # optional |
135 | 135 | ||
136 | # EXAMPLE: Define 'firefox' action and bind to key. | 136 | # EXAMPLE: Define 'firefox' action and bind to key. |
@@ -7,4 +7,4 @@ xset s 600 & | |||
7 | # picom 2>/dev/null & | 7 | # picom 2>/dev/null & |
8 | # dwmbar & | 8 | # dwmbar & |
9 | 9 | ||
10 | exec dbus-launch --exit-with-session spectrwm 2>/dev/null | 10 | exec dbus-launch --exit-with-session spectrwm |