From 304cb8ef5f5a13cf4563ffa6fa3280ac0e822128 Mon Sep 17 00:00:00 2001 From: doryan Date: Wed, 30 Oct 2024 21:21:29 +0300 Subject: [PATCH] feat: add initial config for jelebruh --- bspwm/jelebruh_bspwm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 bspwm/jelebruh_bspwm diff --git a/bspwm/jelebruh_bspwm b/bspwm/jelebruh_bspwm new file mode 100644 index 0000000..d27b0cf --- /dev/null +++ b/bspwm/jelebruh_bspwm @@ -0,0 +1,26 @@ +#!/bin/sh + +pgrep -x sxhkd > /dev/null || sxhkd & + +bspc monitor DVI-I-1 -d I II III IV V +bspc monitor HDMI-1 -d VI VII VIII IX X + +bspc config border_width 3 +bspc config window_gap 5 + +bspc config pointer_modifier super +bspc config focus_follows_pointer true +bspc config pointer_follows_focus false +bspc config pointer_motion_interval 5 +bspc config pointer_modifier mod4 +bspc config pointer_action1 move +bspc config pointer_action2 resize_side +bspc config pointer_action3 resize_corner + +bspc rule -a scratch sticky=on state=floating focus=on + +bspc config split_ratio 0.52 + +bspc config active_border_color "#E0A3B6" +bspc config normal_border_color "#8393A1" +bspc config focused_border_color "#93D4C5" \ No newline at end of file