2018-07-31 14:47:17 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
# Copyright (c) 2018 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.
|
|
|
|
|
|
|
|
## Clean up some variables that I use in device-specific scripts
|
2018-08-01 21:21:35 -05:00
|
|
|
# Polybar
|
2018-07-31 14:47:17 -05:00
|
|
|
unset PB_MONITOR
|
2018-08-01 20:20:06 -05:00
|
|
|
unset PB_WM_RESTACK
|
|
|
|
unset PB_BAR_PRIMARY_MODULES_LEFT PB_BAR_PRIMARY_MODULES_CENTER PB_BAR_PRIMARY_MODULES_RIGHT
|
|
|
|
unset PB_BAR_PRIMARY_2_MODULES_LEFT PB_BAR_PRIMARY_2_MODULES_CENTER PB_BAR_PRIMARY_2_MODULES_RIGHT
|
|
|
|
unset PB_BAR_SECONDARY_MODULES_LEFT PB_BAR_SECONDARY_MODULES_CENTER PB_BAR_SECONDARY_MODULES_RIGHT
|
|
|
|
unset PB_BAR_SECONDARY_2_MODULES_LEFT PB_BAR_SECONDARY_2_MODULES_CENTER PB_BAR_SECONDARY_2_MODULES_RIGHT
|
|
|
|
unset PB_MODULE_BAR_WIDTH
|
2018-08-01 22:38:48 -05:00
|
|
|
unset PB_MODULE_ETH_INTERFACE
|
2018-08-01 20:20:06 -05:00
|
|
|
unset PB_MODULE_WLAN_INTERFACE
|
2018-08-01 21:21:35 -05:00
|
|
|
# bspwm monitorset.sh
|
|
|
|
unset BSPWM_DESKTOPS_TOTAL
|
|
|
|
unset BSPWM_DESKTOPS_PRIMARY
|
2018-07-31 14:47:17 -05:00
|
|
|
|
|
|
|
## Patch path, if not already done
|
|
|
|
if [[ "$PATH" != "*$HOME/.local/bin*" ]]; then
|
|
|
|
printf "[INFO] Patching path for $HOME/.local/bin\n"
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
fi
|
|
|
|
|
|
|
|
## Load device-specific scripts
|
2018-07-31 19:33:48 -05:00
|
|
|
if [[ -x "$HOME/.config/dtfscripts/$(hostname).rc" ]]; then
|
|
|
|
printf "[INFO] Sourcing ~/.config/dtfscripts/$(hostname).rc\n"
|
|
|
|
source $HOME/.config/dtfscripts/$(hostname).rc
|
2018-07-31 14:47:17 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
printf "[INFO] Performing simple configuration\n"
|
|
|
|
## SIMPLE CONFIGURATION
|
|
|
|
xset -b
|
|
|
|
xset -dpms
|
|
|
|
xset s off
|
|
|
|
# This depends on a script found at rehashedsalt/bin
|
|
|
|
xrdbupdate
|
|
|
|
|
|
|
|
## SERVICES AND DAEMONS
|
2018-07-31 15:35:18 -05:00
|
|
|
# Kill everything
|
2018-07-31 15:59:17 -05:00
|
|
|
printf "[INFO] Stopping existing services\n"
|
2018-08-01 20:05:47 -05:00
|
|
|
services="plasmashell krunner xfdesktop polybar compton conky sxhkd dunst"
|
2018-07-31 14:47:17 -05:00
|
|
|
for service in $services; do
|
2018-07-31 15:59:17 -05:00
|
|
|
printf " [INFO] Sending signal to all $service\n"
|
2018-07-31 14:47:17 -05:00
|
|
|
killall $service
|
|
|
|
done
|
2018-07-31 15:35:18 -05:00
|
|
|
# Wait for them to die
|
2018-07-31 14:47:17 -05:00
|
|
|
for service in $services; do
|
2018-07-31 15:35:18 -05:00
|
|
|
while pgrep $service > /dev/null 2>&1; do
|
2018-07-31 15:59:17 -05:00
|
|
|
printf " [INFO] Waiting on $service\n"
|
2018-07-31 14:47:17 -05:00
|
|
|
sleep 0.5
|
|
|
|
done
|
|
|
|
done
|
2018-07-31 15:59:17 -05:00
|
|
|
|
|
|
|
# Start them back up
|
|
|
|
printf "[INFO] Starting services\n"
|
|
|
|
# Start with key functionality
|
|
|
|
if pgrep bspwm > /dev/null 2>&1; then
|
|
|
|
printf " [INFO] Found bspwm, starting sxhkd\n"
|
|
|
|
if [[ $(uname) == "OpenBSD" ]]; then
|
|
|
|
printf " [INFO] Starting OpenBSD variant\n"
|
|
|
|
sxhkd -c $XDG_CONFIG_HOME/sxhkd/sxhkdrc-obsd &
|
|
|
|
else
|
|
|
|
sxhkd &
|
|
|
|
fi
|
|
|
|
fi
|
2018-07-31 14:47:17 -05:00
|
|
|
# Don't start the compositor in a VM
|
|
|
|
if [[ $(hostname) != "vm"* ]]; then
|
|
|
|
printf " [INFO] Starting compton\n"
|
|
|
|
compton &
|
|
|
|
else
|
2018-07-31 15:59:17 -05:00
|
|
|
printf " [INFO] In a VM, not starting compositor\n"
|
2018-07-31 14:47:17 -05:00
|
|
|
fi
|
2018-07-31 15:59:17 -05:00
|
|
|
printf " [INFO] Starting polybar\n"
|
|
|
|
$HOME/.config/polybar/start.sh &
|
2018-07-31 15:35:18 -05:00
|
|
|
printf " [INFO] Starting dunst\n"
|
2018-07-31 14:47:17 -05:00
|
|
|
dunst&
|
2018-07-31 15:35:18 -05:00
|
|
|
printf " [INFO] Starting conky\n"
|
|
|
|
conky&
|
2018-07-31 15:45:26 -05:00
|
|
|
# Wallpaper management
|
2018-07-31 15:59:17 -05:00
|
|
|
printf "[INFO] Setting wallpaper\n"
|
2018-07-31 15:45:26 -05:00
|
|
|
if which xfdesktop > /dev/null 2>&1; then
|
2018-07-31 15:59:17 -05:00
|
|
|
printf " [INFO] Starting xfdesktop\n"
|
2018-07-31 15:45:26 -05:00
|
|
|
xfdesktop --disable-wm-check&
|
|
|
|
elif which feh > /dev/null 2>&1; then
|
2018-07-31 15:59:17 -05:00
|
|
|
printf " [INFO] Setting wallpaper with feh\n"
|
|
|
|
printf " [WARN] This solution may cause problems on multi-monitor systems\n"
|
2018-07-31 15:45:26 -05:00
|
|
|
feh --randomize --bg-fill ~/Pictures/Wallpapers/.active &
|
|
|
|
elif which xsetroot > /dev/null 2>&1; then
|
2018-07-31 15:59:17 -05:00
|
|
|
printf " [INFO] Setting root window color\n"
|
2018-07-31 15:45:26 -05:00
|
|
|
xsetroot -solid "#282828"
|
|
|
|
else
|
2018-07-31 15:59:17 -05:00
|
|
|
printf " [WARN] Could not find any wallpaper manager\n"
|
2018-07-31 15:45:26 -05:00
|
|
|
fi
|
2018-07-31 14:47:17 -05:00
|
|
|
printf "[INFO] Finished initialization\n"
|
|
|
|
|