#!/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 # General unset TERMINAL # Polybar unset PB_MONITOR 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 unset PB_MODULE_ETH_INTERFACE unset PB_MODULE_WLAN_INTERFACE # bspwm monitorset.sh unset BSPWM_DESKTOPS_TOTAL unset BSPWM_DESKTOPS_PRIMARY # First parameter is the indentation level # Second is the message function dtf_log() { name="$(basename $0 .sh)" if [ -z ${1+x} ]; then return 1; fi printf "$name: $1\n" } ## Patch some directories if [[ "$PATH" != *"$HOME/.local/bin"* ]]; then dtf_log "Patching path for $HOME/.local/bin" export PATH="$HOME/.local/bin:$PATH" fi if [[ "$XDG_CONFIG_HOME" == "" ]]; then dtf_log "Correcting configuration directory" export XDG_CONFIG_HOME="$HOME/.config" fi if [[ "$XDG_RUNTIME_DIR" == "" ]]; then dtf_log "Correcting runtime directory" export XDG_RUNTIME_DIR="/run/user/$UID" fi ## Set some more variables export DTF_SERVICES_DIR="$XDG_CONFIG_HOME/dtfscripts/services" ## Load device-specific scripts if [[ -x "$XDG_CONFIG_HOME/dtfscripts/devices/$(hostname).rc" ]]; then dtf_log "Sourcing devices/$(hostname).rc" source $HOME/.config/dtfscripts/devices/$(hostname).rc fi ## Run startup scripts for service in $DTF_SERVICES_DIR/*.dtf; do ( source $service if isup; then stop fi start ) done dtf_log "Finished initialization"