feat: basic i3/X11 config

This commit is contained in:
gliech 2023-07-14 19:43:49 +02:00
parent e7703f4efd
commit 278cc48674
3 changed files with 204 additions and 0 deletions

15
.xprofile Normal file
View file

@ -0,0 +1,15 @@
#!/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