Skip to content

Instantly share code, notes, and snippets.

@anubhavcodes
Created September 9, 2014 07:11
Show Gist options
  • Save anubhavcodes/f2abe77779f59236eb28 to your computer and use it in GitHub Desktop.
Save anubhavcodes/f2abe77779f59236eb28 to your computer and use it in GitHub Desktop.
/usr/share/howm-session #A startup script for howm.
#! /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