Compare commits
3 Commits
d17a5d9421
...
68b85312d7
Author | SHA1 | Date | |
---|---|---|---|
|
68b85312d7 | ||
|
68b4546aec | ||
|
8687a1496e |
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
bspc monitor DVI-I-1 -d I II III IV V
|
pgrep -x sxhkd > /dev/null || sxhkd &
|
||||||
bspc monitor HDMI-1 -d VI VII VIII IX X
|
pgrep -x polybar > /dev/null || polybar &
|
||||||
|
|
||||||
bspc config border_width 3
|
bspc config border_width 3
|
||||||
bspc config window_gap 5
|
bspc config window_gap 5
|
||||||
|
@ -23,11 +23,11 @@ bspc config active_border_color "#E0A3B6"
|
||||||
bspc config normal_border_color "#8393A1"
|
bspc config normal_border_color "#8393A1"
|
||||||
bspc config focused_border_color "#93D4C5"
|
bspc config focused_border_color "#93D4C5"
|
||||||
|
|
||||||
|
xhost +si:localuser:$USER &
|
||||||
|
xmodmap ~/.Xmodmap
|
||||||
|
|
||||||
picom &
|
picom &
|
||||||
feh --bg-fill ~/.bg/bg_5.png ~/.bg/bg_5.png &
|
feh --bg-fill ~/.bg/bg_5.png &
|
||||||
pipewire -v 2>/home/doryan/.config/bspwm/log&
|
|
||||||
dunst &
|
dunst &
|
||||||
xmousepasteblock &
|
xmousepasteblock &
|
||||||
xsetroot -cursor_name left_ptr &
|
xsetroot -cursor_name left_ptr &
|
||||||
pgrep -x sxhkd > /dev/null || sxhkd &
|
|
||||||
pgrep -x polybar > /dev/null || polybar 2>/home/doryan/.config/bspwm/log&
|
|
||||||
|
|
|
@ -257,7 +257,14 @@ rules = ({
|
||||||
match = "window_type = 'dock' || window_type = 'desktop'";
|
match = "window_type = 'dock' || window_type = 'desktop'";
|
||||||
blur-background = false;
|
blur-background = false;
|
||||||
corner-radius = 0;
|
corner-radius = 0;
|
||||||
}, {
|
},
|
||||||
|
{
|
||||||
|
match = "window_type = 'dock'";
|
||||||
|
animations = ({
|
||||||
|
triggers = ["open", "show", "close", "hide"],
|
||||||
|
})
|
||||||
|
},
|
||||||
|
{
|
||||||
match = "class_g *= 'i3lock' || _NET_WM_STATE@[1] = '_NET_WM_STATE_FULLSCREEN' || _NET_WM_STATE@[2] = '_NET_WM_STATE_FULLSCREEN' || _NET_WM_STATE@[3] = '_NET_WM_STATE_FULLSCREEN' || _NET_WM_STATE@[4] = '_NET_WM_STATE_FULLSCREEN'";
|
match = "class_g *= 'i3lock' || _NET_WM_STATE@[1] = '_NET_WM_STATE_FULLSCREEN' || _NET_WM_STATE@[2] = '_NET_WM_STATE_FULLSCREEN' || _NET_WM_STATE@[3] = '_NET_WM_STATE_FULLSCREEN' || _NET_WM_STATE@[4] = '_NET_WM_STATE_FULLSCREEN'";
|
||||||
shadow = false;
|
shadow = false;
|
||||||
corner-radius = 0;
|
corner-radius = 0;
|
||||||
|
@ -346,7 +353,6 @@ animations = ({
|
||||||
shadow-offset-x = "offset-x";
|
shadow-offset-x = "offset-x";
|
||||||
shadow-offset-y = "offset-y";
|
shadow-offset-y = "offset-y";
|
||||||
},
|
},
|
||||||
|
|
||||||
# Half Window Size Desktop Switch
|
# Half Window Size Desktop Switch
|
||||||
{
|
{
|
||||||
triggers = ["workspace-out"];
|
triggers = ["workspace-out"];
|
||||||
|
|
|
@ -116,6 +116,15 @@ super + ctrl + shift + space
|
||||||
# move/resize
|
# move/resize
|
||||||
#
|
#
|
||||||
|
|
||||||
|
{XF86AudioLowerVolume, XF86AudioRaiseVolume}
|
||||||
|
pactl set-sink-volume @DEFAULT_SINK@ {-,+}5%
|
||||||
|
|
||||||
|
XF86AudioMute
|
||||||
|
pactl set-sink-mute @DEFAULT_SINK@ toggle
|
||||||
|
|
||||||
|
super + ctrl + XF86TouchpadToggle
|
||||||
|
touchpad_toggle.sh
|
||||||
|
|
||||||
# expand a window by moving one of its side outward
|
# expand a window by moving one of its side outward
|
||||||
super + alt + {h,j,k,l}
|
super + alt + {h,j,k,l}
|
||||||
bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
|
bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
|
||||||
|
|
Loading…
Reference in New Issue