2017-08-23 00:50:25 -05:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# 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-01-21 19:36:17 -06:00
|
|
|
## Patch path, if not already done
|
2017-08-23 00:50:25 -05:00
|
|
|
if [[ "$PATH" != "*$HOME/.local/bin" ]]; then
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
fi
|
|
|
|
|
|
|
|
## bspwm GENERAL CONFIGURATION
|
2018-02-12 19:34:20 -06:00
|
|
|
monitors=$(bspc query -M | wc -l)
|
2018-02-12 19:43:38 -06:00
|
|
|
desktops=9
|
2018-02-12 19:34:20 -06:00
|
|
|
deskpermon=$(expr $desktops / $monitors)
|
2018-02-12 19:43:38 -06:00
|
|
|
i=1
|
2018-02-12 19:34:20 -06:00
|
|
|
for monitor in $(bspc query -M); do
|
|
|
|
until [[ "$(expr $i % $deskpermon)" == *"0"* ]]; do
|
|
|
|
layout="$layout $i"
|
|
|
|
i=$(expr $i + 1)
|
|
|
|
done
|
|
|
|
bspc monitor $monitor -d $layout
|
2018-02-12 19:43:38 -06:00
|
|
|
layout="$i"
|
|
|
|
i=$(expr $i + 1)
|
2018-01-21 17:04:26 -06:00
|
|
|
done
|
2018-02-12 19:34:20 -06:00
|
|
|
unset layout
|
|
|
|
unset monitors
|
|
|
|
unset desktops
|
|
|
|
unset deskpermon
|
2017-08-23 00:50:25 -05:00
|
|
|
|
2018-01-17 22:11:58 -06:00
|
|
|
bspc config border_width 4
|
|
|
|
bspc config window_gap 10
|
2018-02-12 23:53:33 -06:00
|
|
|
bspc config bottom_padding 37
|
2017-08-23 00:50:25 -05:00
|
|
|
|
2018-02-05 16:42:19 -06:00
|
|
|
bspc config split_ratio 0.50
|
2017-08-23 00:50:25 -05:00
|
|
|
bspc config borderless_monocle true
|
|
|
|
bspc config gapless_monocle true
|
2018-02-12 22:43:49 -06:00
|
|
|
bspc config remove_disabled_monitors true
|
|
|
|
bspc config remove_unplugged_monitors true
|
2018-01-19 13:03:52 -06:00
|
|
|
|
2018-02-13 15:02:25 -06:00
|
|
|
bspc config focus_follows_pointer true
|
|
|
|
bspc config click_to_focus true
|
2018-01-19 13:03:52 -06:00
|
|
|
|
2018-02-13 15:02:25 -06:00
|
|
|
bspc config pointer_follows_monitor true
|
|
|
|
bspc config pointer_modifier mod1
|
|
|
|
bspc config pointer_action1 move
|
|
|
|
bspc config pointer_action2 resize_corner
|
2017-08-23 01:55:26 -05:00
|
|
|
|
2018-01-31 14:52:19 -06:00
|
|
|
bspc config normal_border_color "#eee8d5"
|
2018-01-31 13:49:32 -06:00
|
|
|
bspc config active_border_color "#268bd2"
|
|
|
|
bspc config focused_border_color "#657b83"
|
|
|
|
bspc config presel_border_color "#6c71c4"
|
|
|
|
bspc config urgent_border_color "#b58900"
|
2017-08-23 00:50:25 -05:00
|
|
|
|
|
|
|
## bspwm WINDOW RULES
|
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
|
|
|
|
bspc rule -a Spotify desktop=10
|
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
|
|
|
|
2018-01-21 19:36:17 -06:00
|
|
|
## SIMPLE CONFIGURATION
|
|
|
|
xset -b
|
|
|
|
xset -dpms
|
|
|
|
xset s off
|
|
|
|
|
|
|
|
## SERVICES AND DAEMONS
|
|
|
|
sxhkd & # Simple hotkey daemon
|
2018-02-01 03:39:30 -06:00
|
|
|
feh --randomize --bg-fill ~/Pictures/Wallpapers/.active &
|
2018-01-21 19:36:17 -06:00
|
|
|
if [[ $(pgrep polybar) ]]; then
|
|
|
|
killall polybar
|
|
|
|
fi
|
2018-02-13 15:00:06 -06:00
|
|
|
#$HOME/.config/polybar/start.sh &
|
2018-02-05 14:21:40 -06:00
|
|
|
if [[ $(pgrep compton) ]]; then
|
|
|
|
killall compton
|
|
|
|
fi
|
|
|
|
compton&
|
2018-01-21 19:36:17 -06:00
|
|
|
|