2018-07-17 16:35:16 -05:00
|
|
|
#!/usr/bin/env bash
|
2017-08-23 00:50:25 -05:00
|
|
|
|
|
|
|
# Copyright (c) 2017 rehashedsalt/vintagesalt
|
|
|
|
#
|
|
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
|
|
# in the Software without restriction, including without limitation the rights
|
|
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
|
|
# furnished to do so, subject to the following conditions:
|
|
|
|
#
|
|
|
|
# The above copyright notice and this permission notice shall be included in all
|
|
|
|
# copies or substantial portions of the Software.
|
|
|
|
#
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
# SOFTWARE.
|
|
|
|
|
2018-08-01 20:20:06 -05:00
|
|
|
# Load session startup script
|
2018-07-31 14:47:17 -05:00
|
|
|
dtfscript=$HOME/.config/dtfscripts/wmstartup.sh
|
|
|
|
if [[ -x "$dtfscript" ]]; then
|
|
|
|
source "$dtfscript"
|
2018-07-31 12:39:28 -05:00
|
|
|
fi
|
2018-07-31 14:47:17 -05:00
|
|
|
unset dtfscript
|
2018-07-31 12:39:28 -05:00
|
|
|
|
2018-08-01 19:38:52 -05:00
|
|
|
printf "[INFO] Configuring bspwm\n"
|
2018-08-01 20:20:06 -05:00
|
|
|
# Monitor setup script
|
|
|
|
# Unique to bspwm, because i3 handles this alright
|
2018-08-01 19:50:05 -05:00
|
|
|
$HOME/.config/bspwm/monitorset.sh
|
2017-08-23 00:50:25 -05:00
|
|
|
|
2018-08-02 20:55:59 -05:00
|
|
|
## Behavior
|
|
|
|
# Tiling behavior
|
|
|
|
bspc config split_ratio 0.50
|
|
|
|
bspc config remove_disabled_monitors false
|
2018-02-12 22:43:49 -06:00
|
|
|
bspc config remove_unplugged_monitors true
|
2018-01-19 13:03:52 -06:00
|
|
|
|
2018-08-02 20:55:59 -05:00
|
|
|
# Pointer behavior
|
2018-07-18 18:14:57 -05:00
|
|
|
bspc config click_to_focus any
|
2018-08-01 20:20:06 -05:00
|
|
|
bspc config pointer_follows_focus true
|
2018-02-13 15:02:25 -06:00
|
|
|
bspc config pointer_follows_monitor true
|
|
|
|
bspc config pointer_modifier mod1
|
2018-08-02 20:55:59 -05:00
|
|
|
bspc config pointer_action1 move #LMB
|
|
|
|
bspc config pointer_action2 resize_corner #RMB
|
2017-08-23 01:55:26 -05:00
|
|
|
|
2018-08-02 20:55:59 -05:00
|
|
|
## Looks
|
|
|
|
# Padding
|
|
|
|
bspc config border_width 4
|
|
|
|
bspc config window_gap 6
|
|
|
|
bspc config borderless_monocle true
|
|
|
|
bspc config gapless_monocle true
|
|
|
|
# Colors
|
|
|
|
bspc config normal_border_color "#3c3836" #Unfocused
|
|
|
|
bspc config active_border_color "#458588" #Focused, but current monitor isn't
|
|
|
|
bspc config focused_border_color "#83a598" #Focused completely
|
|
|
|
bspc config presel_feedback_color "#9b9b9b" #???
|
2017-08-23 00:50:25 -05:00
|
|
|
|
2018-07-31 13:14:36 -05:00
|
|
|
printf "[INFO] Setting window rules\n"
|
2018-02-11 15:55:35 -06:00
|
|
|
bspc rule -r '*'
|
2018-01-17 22:36:22 -06:00
|
|
|
bspc rule -a Waterfox desktop=1
|
2018-04-19 10:38:42 -05:00
|
|
|
bspc rule -a Discord desktop=7
|
|
|
|
bspc rule -a Spotify desktop=8
|
|
|
|
bspc rule -a 'Minecraft 1.7.10' state=fullscreen
|
2018-08-02 20:55:59 -05:00
|
|
|
# For fullscreen Wine
|
|
|
|
bspc rule -a explorer.exe state=fullscreen
|
2018-02-12 23:57:29 -06:00
|
|
|
# Plasma rules
|
2018-02-12 23:53:33 -06:00
|
|
|
bspc rule -a plasmashell state=floating sticky=on border=off
|
2018-02-13 00:04:39 -06:00
|
|
|
bspc rule -a krunner state=floating layer=above sticky=on border=off
|
2017-08-23 00:50:25 -05:00
|
|
|
|