dotfiles/.xprofile
2023-07-14 19:43:49 +02:00

15 lines
311 B
Bash

#!/bin/sh
udiskie &
xscreensaver --no-splash &
blueman-applet &
if [ -f ~/.screenlayout/${HOSTNAME}.sh ]; then
. ~/.screenlayout/${HOSTNAME}.sh
fi
# Some distros (like archlinux) link /bin/sh to bash. It is safe to load the
# .bash_profile in that case.
if [ $BASH_VERSION ]; then
. ~/.bash_profile
fi