Created
September 9, 2014 07:11
-
-
Save anubhavcodes/f2abe77779f59236eb28 to your computer and use it in GitHub Desktop.
/usr/share/howm-session #A startup script for howm.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /bin/bash | |
# | |
# howm-session | |
# | |
# This script is a session launcher for howm. | |
# It is based on similar scripts included with Openbox. | |
if [ -n "" ]; then | |
echo "Usage: howm-session" | |
echo | |
exit 1 | |
fi | |
# Environment and autostart: | |
source_these=( | |
"/etc/profile" | |
"${HOME}/.profile" | |
"${XDG_CONFIG_HOME:-"$HOME/.config"}/howm/autostart" | |
) | |
for file in "${source_these[@]}"; do | |
[ -r "${file}" ] && . "${file}" | |
done | |
# Launch howm: | |
/path/to/dzen/script |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment