#!/bin/sh # FONTS FONTNAME="Terminus" FONTSIZE_SMALL=18 FONTSIZE_BIG=26 FONTSIZE_DMENU=$FONTSIZE_SMALL # TERMINALS # #STERM="urxvtc -fn xft:${FONTNAME}:pixelsize=${FONTSIZE_SMALL}" STERM="st -f ${FONTNAME}:pixelsize=${FONTSIZE_SMALL}" BTERM="st -f ${FONTNAME}:pixelsize=${FONTSIZE_BIG}" HTERM="st -f spleen:pixelsize=32" DFONT=${FONTNAME}:pixelsize=${FONTSIZE_DMENU} [ "$WM" == "notion" ] \ && DMENUOPTS="-fn $DFONT -nb #181818 -nf #707070 -sf #FFA600 -sb #222222 -l 18 -i -f" [ "$WM" == "bspwm" ] \ && DMENUOPTS="-fn $DFONT -nb #222222 -nf #707070 -sf #CCCCCC -sb #222222 -i -f" [ "$WM" == "spectrwm" ] \ && DMENUOPTS="-fn $DFONT -nb #181818 -nf #999999 -sf #CCCCCC -sb #181818 -i -f" DMENU_CMD="dmenu $DMENUOPTS" DMENURUN_CMD="dmenu_run $DMENUOPTS" notify_func() { P=" " /usr/local/bin/notify-send \ " $(date +%H:%M) $P $@ $P" } NOTIFY_CMD=notify_func # CHECK OR INSTALL needs() { pkg_info -az | grep -q ^$1$ \ || pkg_add $1 } # PIM # PIMDIR="${HOME}/Documents" # CONNECT TO GPG-AGENT # export GPG_TTY=$(tty) export GPG_AGENT_INFO="$HOME/.gnupg/S.gpg-agent:0:1" export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket) export SSH_AUTH_SOCK_EXTRA=${SSH_AUTH_SOCK%%.ssh}.extra gpg-connect-agent /bye