big overhaul push 2

This commit is contained in:
Ryan Wolfe
2023-03-05 12:23:35 -05:00
parent 0b91dd8235
commit 2e8bdcc1e1
7 changed files with 136 additions and 58 deletions

View File

@@ -1,4 +1,53 @@
eval $(/usr/bin/gnome-keying-daemon --start --components=pkcsll,secrets,ssh)
export SSH_AUTH_SOCK
#!/bin/sh
exec /usr/bin/i3
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/etc/X11/xinit/.Xresources
sysmodmap=/etc/X11/xinit/.Xmodmap
# merge in defaults and keymaps
if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi
if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi
if [ -f "$userresources" ]; then
xrdb -merge "$userresources"
fi
if [ -f "$usermodmap" ]; then
xmodmap "$usermodmap"
fi
# start some nice programs
if [ -d /etc/X11/xinit/xinitrc.d ] ; then
for f in /etc/X11/xinit/xinitrc.d/?*.sh ; do
[ -x "$f" ] && . "$f"
done
unset f
fi
[ -f ~/.xprofile ] && . ~/.xprofile
exec i3

11
.config/x11/xprofile Normal file
View File

@@ -0,0 +1,11 @@
sudo timedatectl set-ntp true &
xset s off &
xset -dpms &
xrandr -r 200
/home/dorian/.fehbg &
dunst &
xcompmgr &
unclutter &
mountt &
pasystray &
blueman-applet &