Skip to content

Commit b195ce4

Browse files
committed
tmp
1 parent 23962e7 commit b195ce4

18 files changed

+166
-146
lines changed

config/alacritty/alacritty.yml

Lines changed: 129 additions & 61 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,83 @@ env:
88

99
window:
1010
dimensions:
11-
columns: 90
12-
lines: 25
11+
columns: 90
12+
lines: 25
1313

1414
padding:
15-
x: 0
16-
y: 0
15+
x: 0
16+
y: 0
1717

1818
dynamic_padding: true
1919

20+
scrolling:
21+
# Maximum number of lines in the scrollback buffer.
22+
# Specifying '0' will disable scrolling.
23+
history: 10000
24+
25+
key_bindings:
26+
- { key: Return, mods: Shift, chars: "\x1b[13;2u" }
27+
28+
font:
29+
normal:
30+
family: SauceCodePro Nerd Font Mono
31+
style: Regular
32+
33+
bold:
34+
family: SauceCodePro Nerd Font Mono
35+
style: Bold
36+
37+
italic:
38+
family: SauceCodePro Nerd Font Mono
39+
style: Italic
40+
41+
bold_italic:
42+
family: SauceCodePro Nerd Font Mono
43+
style: Bold Italic
44+
45+
size: 11.0
46+
47+
colors:
48+
# Default colors
49+
primary:
50+
background: '0x181818'
51+
foreground: '0xd8d8d8'
52+
53+
# Colors the cursor will use if `custom_cursor_colors` is true
54+
cursor:
55+
text: '0x181818'
56+
cursor: '0xd8d8d8'
57+
58+
# Normal colors
59+
normal:
60+
black: '0x181818'
61+
red: '0xab4642'
62+
green: '0xa1b56c'
63+
yellow: '0xf7ca88'
64+
blue: '0x7cafc2'
65+
magenta: '0xba8baf'
66+
cyan: '0x86c1b9'
67+
white: '0xd8d8d8'
68+
69+
# Bright colors
70+
bright:
71+
black: '0x585858'
72+
red: '0xab4642'
73+
green: '0xa1b56c'
74+
yellow: '0xf7ca88'
75+
blue: '0x7cafc2'
76+
magenta: '0xba8baf'
77+
cyan: '0x86c1b9'
78+
white: '0xf8f8f8'
79+
80+
indexed_colors:
81+
- { index: 16, color: '0xdc9656' }
82+
- { index: 17, color: '0xa16946' }
83+
- { index: 18, color: '0x282828' }
84+
- { index: 19, color: '0x383838' }
85+
- { index: 20, color: '0xb8b8b8' }
86+
- { index: 21, color: '0xe8e8e8' }
87+
2088
# Window position (changes require restart)
2189
#
2290
# Specified in number of pixels.
@@ -64,10 +132,10 @@ window:
64132
# Set this to `None` to use the default theme variant.
65133
#gtk_theme_variant: None
66134

67-
scrolling:
135+
# scrolling:
68136
# Maximum number of lines in the scrollback buffer.
69137
# Specifying '0' will disable scrolling.
70-
history: 10000
138+
# history: 10000
71139

72140
# Number of lines the viewport will move for every line scrolled when
73141
# scrollback is enabled (history > 0).
@@ -86,24 +154,24 @@ scrolling:
86154
#tabspaces: 8
87155

88156
# Font configuration
89-
font:
90-
normal:
91-
family: SauceCodePro Nerd Font Mono
92-
style: Regular
157+
# font:
158+
# normal:
159+
# family: SauceCodePro Nerd Font Mono
160+
# style: Regular
93161

94-
bold:
95-
family: SauceCodePro Nerd Font Mono
96-
style: Bold
162+
# bold:
163+
# family: SauceCodePro Nerd Font Mono
164+
# style: Bold
97165

98-
italic:
99-
family: SauceCodePro Nerd Font Mono
100-
style: Italic
166+
# italic:
167+
# family: SauceCodePro Nerd Font Mono
168+
# style: Italic
101169

102-
bold_italic:
103-
family: SauceCodePro Nerd Font Mono
104-
style: Bold Italic
170+
# bold_italic:
171+
# family: SauceCodePro Nerd Font Mono
172+
# style: Bold Italic
105173

106-
size: 11.0
174+
# size: 11.0
107175

108176
# Offset is the extra space around each character. `offset.y` can be thought of
109177
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
@@ -217,46 +285,46 @@ font:
217285

218286
# Base16 Default Dark 256 - alacritty color config
219287
# Chris Kempson (http://chriskempson.com)
220-
colors:
221-
# Default colors
222-
primary:
223-
background: '0x181818'
224-
foreground: '0xd8d8d8'
225-
226-
# Colors the cursor will use if `custom_cursor_colors` is true
227-
cursor:
228-
text: '0x181818'
229-
cursor: '0xd8d8d8'
230-
231-
# Normal colors
232-
normal:
233-
black: '0x181818'
234-
red: '0xab4642'
235-
green: '0xa1b56c'
236-
yellow: '0xf7ca88'
237-
blue: '0x7cafc2'
238-
magenta: '0xba8baf'
239-
cyan: '0x86c1b9'
240-
white: '0xd8d8d8'
241-
242-
# Bright colors
243-
bright:
244-
black: '0x585858'
245-
red: '0xab4642'
246-
green: '0xa1b56c'
247-
yellow: '0xf7ca88'
248-
blue: '0x7cafc2'
249-
magenta: '0xba8baf'
250-
cyan: '0x86c1b9'
251-
white: '0xf8f8f8'
252-
253-
indexed_colors:
254-
- { index: 16, color: '0xdc9656' }
255-
- { index: 17, color: '0xa16946' }
256-
- { index: 18, color: '0x282828' }
257-
- { index: 19, color: '0x383838' }
258-
- { index: 20, color: '0xb8b8b8' }
259-
- { index: 21, color: '0xe8e8e8' }
288+
# colors:
289+
# # Default colors
290+
# primary:
291+
# background: '0x181818'
292+
# foreground: '0xd8d8d8'
293+
294+
# # Colors the cursor will use if `custom_cursor_colors` is true
295+
# cursor:
296+
# text: '0x181818'
297+
# cursor: '0xd8d8d8'
298+
299+
# # Normal colors
300+
# normal:
301+
# black: '0x181818'
302+
# red: '0xab4642'
303+
# green: '0xa1b56c'
304+
# yellow: '0xf7ca88'
305+
# blue: '0x7cafc2'
306+
# magenta: '0xba8baf'
307+
# cyan: '0x86c1b9'
308+
# white: '0xd8d8d8'
309+
310+
# # Bright colors
311+
# bright:
312+
# black: '0x585858'
313+
# red: '0xab4642'
314+
# green: '0xa1b56c'
315+
# yellow: '0xf7ca88'
316+
# blue: '0x7cafc2'
317+
# magenta: '0xba8baf'
318+
# cyan: '0x86c1b9'
319+
# white: '0xf8f8f8'
320+
321+
# indexed_colors:
322+
# - { index: 16, color: '0xdc9656' }
323+
# - { index: 17, color: '0xa16946' }
324+
# - { index: 18, color: '0x282828' }
325+
# - { index: 19, color: '0x383838' }
326+
# - { index: 20, color: '0xb8b8b8' }
327+
# - { index: 21, color: '0xe8e8e8' }
260328

261329
# Visual Bell
262330
#
@@ -531,7 +599,7 @@ colors:
531599
# binding with the same triggers is defined. To unset a default binding, it can
532600
# be mapped to the `ReceiveChar` action. Alternatively, you can use `None` for
533601
# a no-op if you do not wish to receive input characters for that binding.
534-
#key_bindings:
602+
# key_bindings:
535603
# (Windows, Linux, and BSD only)
536604
#- { key: V, mods: Control|Shift, action: Paste }
537605
#- { key: C, mods: Control|Shift, action: Copy }

config/bspwm/bspwmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,4 @@ mpd &
3535
setxkbmap -option caps:super &
3636
feh --bg-center ~/dotfiles/images/jon-snow-1920x1080.jpg &
3737
$HOME/.config/polybar/launch.sh &
38+
$HOME/dotfiles/scripts/setup-xinput.sh &

config/polybar/config

Lines changed: 12 additions & 76 deletions
Original file line numberDiff line numberDiff line change
@@ -166,30 +166,20 @@ type = internal/network
166166
interface = wlo1
167167
interval = 3.0
168168

169-
format-connected = <ramp-signal> <label-connected>
170-
; format-connected-underline = #9f78e1
169+
format-connected = <label-connected>
171170
label-connected = %essid%
171+
format-connected-prefix = "WIFI: "
172+
format-connected-prefix-foreground = ${colors.yellow}
172173

173-
format-disconnected =
174-
;format-disconnected = <label-disconnected>
175-
;format-disconnected-underline = ${self.format-connected-underline}
176-
;label-disconnected = %ifname% disconnected
177-
;label-disconnected-foreground = ${colors.foreground-alt}
178-
179-
ramp-signal-0 = 睊
180-
ramp-signal-1 = 
181-
ramp-signal-2 = 直
182-
ramp-signal-3 = 直
183-
ramp-signal-4 = 直
184-
ramp-signal-foreground = ${colors.green}
174+
format-disconnected = disconnected
185175

186176
[module/eth]
187177
type = internal/network
188178
interface = enp2s0
189179
interval = 3.0
190180

191181
format-connected-prefix = "ETH: "
192-
format-connected-prefix-foreground = ${colors.green}
182+
format-connected-prefix-foreground = ${colors.yellow}
193183
label-connected = Connected
194184

195185
format-disconnected =
@@ -228,67 +218,13 @@ battery = BAT0
228218
adapter = AC
229219
full-at = 98
230220

231-
format-charging = <animation-charging> <label-charging>
232-
format-charging-underline = #ffb52a
233-
234-
format-discharging = <animation-discharging> <label-discharging>
235-
format-discharging-underline = ${self.format-charging-underline}
236-
237-
format-full-prefix = "BAT: "
238-
format-full-prefix-foreground = ${colors.blue}
239-
240-
ramp-capacity-0 = 
241-
ramp-capacity-1 = 
242-
ramp-capacity-2 = 
243-
ramp-capacity-foreground = ${colors.foreground-alt}
244-
245-
animation-charging-0 = 
246-
animation-charging-1 = 
247-
animation-charging-2 = 
248-
animation-charging-foreground = ${colors.foreground-alt}
249-
animation-charging-framerate = 750
250-
251-
animation-discharging-0 = 
252-
animation-discharging-1 = 
253-
animation-discharging-2 = 
254-
animation-discharging-foreground = ${colors.foreground-alt}
255-
animation-discharging-framerate = 750
256-
257-
[module/powermenu]
258-
type = custom/menu
259-
260-
expand-right = true
261-
262-
format-spacing = 1
263-
264-
label-open = POWER
265-
label-open-foreground = ${colors.secondary}
266-
label-close =  cancel
267-
label-close-foreground = ${colors.secondary}
268-
label-separator = |
269-
label-separator-foreground = ${colors.foreground-alt}
270-
271-
menu-0-0 = reboot
272-
menu-0-0-exec = menu-open-1
273-
menu-0-1 = power off
274-
menu-0-1-exec = menu-open-2
275-
menu-0-2 = suspend
276-
menu-0-2-exec = menu-open-3
277-
278-
menu-1-0 = cancel
279-
menu-1-0-exec = menu-open-0
280-
menu-1-1 = reboot
281-
menu-1-1-exec = reboot
282-
283-
menu-2-0 = power off
284-
menu-2-0-exec = poweroff
285-
menu-2-1 = cancel
286-
menu-2-1-exec = menu-open-0
287-
288-
menu-3-0 = suspend
289-
menu-3-0-exec = i3lock && systemctl suspend
290-
menu-3-1 = cancel
291-
menu-3-1-exec = menu-open-0
221+
format-charging = <label-charging>
222+
format-charging-prefix = "BAT: "
223+
format-charging-prefix-foreground = ${colors.green}
224+
225+
format-discharging = <label-discharging>
226+
format-discharging-prefix = "BAT: "
227+
format-discharging-prefix-foreground = ${colors.red}
292228

293229
[settings]
294230
screenchange-reload = true

fonts/Hack/.uuid

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
4aa158ee-6311-4668-8233-e418734ffc1c
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

fonts/Iosevka/.uuid

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
d574f48d-ac6c-4a21-8d41-eff9d201a62b

0 commit comments

Comments
 (0)