updated
8 files changed, 46 insertions(+), 32 deletions(-) | |||
---|---|---|---|
M | alacritty/alacritty.yml | +2 | -2 |
M | bspwm/bspwmrc | +13 | -10 |
M | dunst/dunstrc | +2 | -2 |
A | nvim/plugged/vim-airline | +1 | -0 |
A | nvim/plugged/vim-airline-themes | +1 | -0 |
M | picom/picom.conf | +26 | -17 |
M | polybar/config | +1 | -1 |
R | polybar/polybar.sh | +0 | -0 |
1@@ -12,8 +12,8 @@
2
3 window:
4 padding:
5- x: 20
6- y: 20
7+ x: 10
8+ y: 10
9
10 # Font configuration (changes require restart)
11 font:
M · bspwm/bspwmrc
+13, -10 1@@ -1,31 +1,34 @@
2 #! /bin/sh
3
4+# Workspaces
5 bspc monitor HDMI-0 -d 1 2 3 4 5
6-bspc monitor HDMI-1 -d 1 2 3 4 5
7+bspc monitor HDMI-1 -d 1 2 3
8
9-#Window settings
10+# Window settings
11 bspc config border_width 2
12 bspc config window_gap 10
13 bspc config split_ratio 0.50
14 bspc config borderless_monocle true
15 bspc config gapless_monocle true
16 bspc config focus_follows_pointer true
17-bspc config top_padding 35
18+bspc config top_padding 30
19 bspc config right_padding 0
20 bspc config bottom_padding 0
21 bspc config left_padding 0
22-#Switch the resize/move mod key which is mod1 in bspwm for some reason?
23-bspc config pointer_modifier mod1
24-#Border colors
25-bspc config normal_border_color "#212121"
26-bspc config active_border_color "#212121"
27-bspc config focused_border_color "#d3d3d3"
28+
29+# Border colors
30+bspc config normal_border_color "#616161"
31+bspc config active_border_color "#616161"
32+bspc config focused_border_color "#ffffff"
33 bspc config presel_feedback_color "#000000"
34 bspc config urgent_border_color "#000000"
35
36+# Switch the resize/move mod key which is mod1 in bspwm for some reason?
37+bspc config pointer_modifier mod1
38+
39 #Applications on bspwm session init
40 picom -b &
41 xset -dpms s off
42 nitrogen --restore &
43-~/.config/polybar/launch.sh &
44+~/.config/polybar/polybar.sh &
45 sxhkd &
M · dunst/dunstrc
+2, -2 1@@ -6,7 +6,7 @@
2 transparency = 0
3 notification_height = 1
4 separator_height = 2
5- padding = 7
6+ padding = 4
7 horizontal_padding = 5
8 text_icon_padding = 0
9 frame_width = 1
10@@ -14,7 +14,7 @@
11 separator_color = frame
12 sort = yes
13 idle_threshold = 120
14- font = Inter Medium 11
15+ font = Inter Medium 12
16 line_height = 0
17 markup = full
18 format = "%s %b"
A · nvim/plugged/vim-airline
+1, -01@@ -0,0 +1 @@
2+Subproject commit 09dbd09ed3b6318ca4c3cda8f61f02f1bc8ce783
A · nvim/plugged/vim-airline-themes
+1, -01@@ -0,0 +1 @@
2+Subproject commit fa808d74e0aacf131337b58f01ee45fd3d3588af
M · picom/picom.conf
+26, -17 1@@ -10,32 +10,41 @@ shadow-exclude = [
2 "_GTK_FRAME_EXTENTS@:c",
3 "!focused"
4 ];
5-shadow-ignore-shaped = false
6-fading = false
7-fade-in-step = 0.028;
8-fade-out-step = 0.03;
9+
10+shadow-ignore-shaped = false;
11+fading = true;
12+fade-in-step = 0.05;
13+fade-out-step = 0.05;
14 fade-delta = 5;
15-no-fading-openclose = false
16+no-fading-openclose = false;
17
18-#rounded corners
19-corner-radius = 8;
20+# rounded corners
21+corner-radius = 7;
22 rounded-corners-exclude = [
23- "window_type = 'toolbar'",
24- "window_type = 'menu'",
25- "window_type = 'dropdown_menu'",
26- "window_type = 'popup_menu'",
27- "window_type = 'Notification'",
28- "window_type = 'dock'",
29- "class_g = 'Dunst'",
30+ "window_type = 'dunst'",
31+ "window_type = 'dock'",
32+ "window_type = 'tooltip'",
33+ "window_type = 'toolbar'",
34+ "window_type = 'menu'",
35+ "window_type = 'dropdown_menu'",
36+ "window_type = 'popup_menu'",
37+ "window_type = 'notification'",
38 ];
39
40-#rounded borders
41+# rounded borders
42 round-borders = 1;
43 round-borders-rule = [
44 "2:window_type = 'normal'",
45 ];
46 round-borders-exclude = [
47- "window_type = 'dunst'"
48+ "window_type = 'dunst'",
49+ "window_type = 'dock'",
50+ "window_type = 'tooltip'",
51+ "window_type = 'toolbar'",
52+ "window_type = 'menu'",
53+ "window_type = 'dropdown_menu'",
54+ "window_type = 'popup_menu'",
55+ "window_type = 'notification'",
56 ];
57
58 frame-opacity = 1
59@@ -54,7 +63,7 @@ mark-wmwin-focused = false;
60 mark-ovredir-focused = false;
61 refresh-rate = 75
62 detect-transient = false;
63-detect-rounded-corners = false;
64+detect-rounded-corners = true;
65 detect-client-leader = false;
66 xrender-sync-fence = false;
67
M · polybar/config
+1, -11@@ -35,7 +35,7 @@ inherit = bar/Workspace
2
3 [bar/Workspace]
4 monitor = ${env:MONITOR:HDMI-0}
5-height = 35
6+height = 30
7 width = 150px
8 offset-x = 10px
9 offset-y = 5px
R polybar/launch.sh=>· polybar/polybar.sh
+0, -0