Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
80 changes: 80 additions & 0 deletions _test/brewing-conflict/configs/alacritty/alacritty.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
# palette:
# background = #05070A
# background2 = #191A25
# foreground = #F6E9C8
# foreground2 = #D9C49E
# color0 = #0C1018
# color1 = #C47A55
# color2 = #A87A8F
# color3 = #E1B56A
# color4 = #9C8CC1
# color5 = #6E6077
# color6 = #F29A7A
# color7 = #FFF2D6
# color8 = #06080D
# color9 = #8A563C
# color10 = #735464
# color11 = #A8844F
# color12 = #6D6288
# color13 = #4B4252
# color14 = #B56C53
# color15 = #CDBFA7

[window]
opacity = 0.92
decorations = "None"

[window.padding]
x = 12
y = 10

[window.class]
instance = "Alacritty"
general = "Alacritty"

[font]
size = 12

[font.normal]
family = "JetBrainsMono Nerd Font"
style = "Regular"

[font.bold]
family = "JetBrainsMono Nerd Font"
style = "Bold"

[font.italic]
family = "JetBrainsMono Nerd Font"
style = "Italic"

[cursor]
style = { shape = "Block", blinking = "On" }

[scrolling]
history = 5000

[terminal]

[colors.primary]
background = "#05070A"
foreground = "#F6E9C8"

[colors.normal]
black = "#0C1018"
red = "#C47A55"
green = "#A87A8F"
yellow = "#E1B56A"
blue = "#9C8CC1"
magenta = "#6E6077"
cyan = "#F29A7A"
white = "#FFF2D6"

[colors.bright]
black = "#06080D"
red = "#8A563C"
green = "#735464"
yellow = "#A8844F"
blue = "#6D6288"
magenta = "#4B4252"
cyan = "#B56C53"
white = "#CDBFA7"
51 changes: 51 additions & 0 deletions _test/brewing-conflict/configs/bspwm/bspwmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
#!/bin/sh
# palette:
# background = #05070A
# background2 = #191A25
# foreground = #F6E9C8
# foreground2 = #D9C49E
# color0 = #0C1018
# color1 = #C47A55
# color2 = #A87A8F
# color3 = #E1B56A
# color4 = #9C8CC1
# color5 = #6E6077
# color6 = #F29A7A
# color7 = #FFF2D6
# color8 = #06080D
# color9 = #8A563C
# color10 = #735464
# color11 = #A8844F
# color12 = #6D6288
# color13 = #4B4252
# color14 = #B56C53
# color15 = #CDBFA7

pgrep -x sxhkd >/dev/null || sxhkd &
pkill -x polybar >/dev/null 2>&1
polybar main >/dev/null 2>&1 &
pkill -x picom >/dev/null 2>&1
picom --config "$HOME/.config/picom/picom.conf" >/dev/null 2>&1 &
feh --bg-fill "$HOME/.config/rixi/walls/wall.png" >/dev/null 2>&1 || true

bspc config border_width 2
bspc config window_gap 6
bspc config top_padding 12
bspc config bottom_padding 12
bspc config left_padding 12
bspc config right_padding 12
bspc config split_ratio 0.52
bspc config single_monocle true
bspc config click_to_focus true
bspc config borderless_monocle true
bspc config gapless_monocle false

bspc config focused_border_color "#C47A55"
bspc config normal_border_color "#6E6077"
bspc config active_border_color "#A87A8F"
bspc config presel_feedback_color "#F29A7A"
bspc config urgent_border_color "#F29A7A"

# Rounded corners are handled by picom with radius 6.
primary_monitor="$(bspc query -M --names | head -n1)"
[ -n "$primary_monitor" ] && bspc monitor "$primary_monitor" -d I II III IV V VI VII VIII IX X
72 changes: 72 additions & 0 deletions _test/brewing-conflict/configs/bspwm/sxhkdrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# palette:
# background = #05070A
# background2 = #191A25
# foreground = #F6E9C8
# foreground2 = #D9C49E
# color0 = #0C1018
# color1 = #C47A55
# color2 = #A87A8F
# color3 = #E1B56A
# color4 = #9C8CC1
# color5 = #6E6077
# color6 = #F29A7A
# color7 = #FFF2D6
# color8 = #06080D
# color9 = #8A563C
# color10 = #735464
# color11 = #A8844F
# color12 = #6D6288
# color13 = #4B4252
# color14 = #B56C53
# color15 = #CDBFA7

super + Return
alacritty

super + space
rofi -show drun

super + q
bspc node -c

super + f
bspc node -t fullscreen

super + t
bspc node -t ~floating

super + {1-9,0}
bspc desktop -f '^{1-10}'

super + shift + {1-9,0}
bspc node -d '^{1-10}'

super + {h,j,k,l}
bspc node -f {west,south,north,east}

super + shift + {h,j,k,l}
bspc node -s {west,south,north,east}

super + shift + r
bspc wm -r

super + shift + q
bspc quit

XF86AudioRaiseVolume
amixer -q set Master 5%+

XF86AudioLowerVolume
amixer -q set Master 5%-

XF86AudioMute
amixer -q set Master toggle

XF86MonBrightnessUp
xbacklight -inc 10

XF86MonBrightnessDown
xbacklight -dec 10

Print
scrot "$HOME/Pictures/Screenshots/%Y-%m-%d_%H-%M-%S.png"
82 changes: 82 additions & 0 deletions _test/brewing-conflict/configs/dunst/dunstrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
# palette:
# background = #05070A
# background2 = #191A25
# foreground = #F6E9C8
# foreground2 = #D9C49E
# color0 = #0C1018
# color1 = #C47A55
# color2 = #A87A8F
# color3 = #E1B56A
# color4 = #9C8CC1
# color5 = #6E6077
# color6 = #F29A7A
# color7 = #FFF2D6
# color8 = #06080D
# color9 = #8A563C
# color10 = #735464
# color11 = #A8844F
# color12 = #6D6288
# color13 = #4B4252
# color14 = #B56C53
# color15 = #CDBFA7

[global]
monitor = 0
follow = mouse
width = 300
height = 300
origin = top-right
offset = 20x48
scale = 0
notification_limit = 5
progress_bar = true
progress_bar_height = 8
progress_bar_frame_width = 1
progress_bar_min_width = 150
progress_bar_max_width = 300
progress_bar_corner_radius = 4
indicate_hidden = yes
transparency = 10
separator_height = 2
padding = 12
horizontal_padding = 16
text_icon_padding = 8
frame_width = 2
frame_color = "#C47A55"
corner_radius = 6
line_height = 4
separator_color = frame
idle_threshold = 120
font = JetBrainsMono Nerd Font 10
markup = full
format = "<b>%s</b>\n%b"
alignment = left
vertical_alignment = center
icon_position = left
min_icon_size = 24
max_icon_size = 48
sticky_history = yes
history_length = 20
browser = xdg-open
always_run_script = true
title = Dunst
class = Dunst
corner_radius = 6

[urgency_low]
timeout = 4000
background = "#191A25"
foreground = "#D9C49E"
frame_color = "#6E6077"

[urgency_normal]
timeout = 6000
background = "#05070A"
foreground = "#F6E9C8"
frame_color = "#C47A55"

[urgency_critical]
timeout = 0
background = "#B56C53"
foreground = "#F6E9C8"
frame_color = "#F29A7A"
67 changes: 67 additions & 0 deletions _test/brewing-conflict/configs/picom/picom.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# palette:
# background = #05070A
# background2 = #191A25
# foreground = #F6E9C8
# foreground2 = #D9C49E
# color0 = #0C1018
# color1 = #C47A55
# color2 = #A87A8F
# color3 = #E1B56A
# color4 = #9C8CC1
# color5 = #6E6077
# color6 = #F29A7A
# color7 = #FFF2D6
# color8 = #06080D
# color9 = #8A563C
# color10 = #735464
# color11 = #A8844F
# color12 = #6D6288
# color13 = #4B4252
# color14 = #B56C53
# color15 = #CDBFA7

backend = "glx";
vsync = true;

shadow = true;
shadow-radius = 12;
shadow-opacity = 0.6;
shadow-offset-x = -10;
shadow-offset-y = -10;
shadow-color = "#0C1018";
shadow-exclude = [
"name = 'Notification'",
"class_g = 'Dunst'",
"window_type = 'dock'",
"window_type = 'desktop'",
"window_type = 'toolbar'"
];

fading = true;
fade-in-step = 0.03;
fade-out-step = 0.03;
fade-delta = 5;

corner-radius = 6;
rounded-corners-exclude = [
"window_type = 'desktop'",
"_NET_WM_STATE@:32a *= '_NET_WM_STATE_FULLSCREEN'"
];

blur-method = "dual_kawase";
blur-strength = 6;
blur-background = true;
blur-background-fixed = false;
blur-background-exclude = [
"!(class_g = 'Alacritty' || class_g = 'Rofi')"
];

active-opacity = 1.0;
inactive-opacity = 0.92;
frame-opacity = 0.9;
inactive-dim = 0.1;

mark-wmwin-focused = true;
mark-ovredir-focused = true;
detect-rounded-corners = true;
use-damage = true;
Loading
Loading