24 lines
812 B
Bash
24 lines
812 B
Bash
#!/bin/sh
|
|
|
|
# This file runs when a DM logs you into a graphical session.
|
|
# If you use startx/xinit, this file will also be sourced.
|
|
|
|
xrdb ${XDG_CONFIG_HOME:-$HOME/.config}/x11/xresources # Use Xresources colors/settings on startup
|
|
|
|
if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/x11/.DPI" ]; then
|
|
DPI="$(cat "${XDG_CONFIG_HOME:-$HOME/.config}/x11/.DPI")"
|
|
echo "Xft.dpi: $DPI" | xrdb -merge
|
|
xrandr --dpi "$DPI"
|
|
fi
|
|
|
|
eval $(/usr/bin/gnome-keyring-daemon --start --components=pkcs11,secrets,ssh)
|
|
export SSH_AUTH_SOCK
|
|
|
|
setbg "$HOME/.local/wallpapers" & # set the background
|
|
enpass & # start password manager
|
|
nextcloud & # start Nextcloud
|
|
xcompmgr & # xcompmgr for transparency
|
|
dunst & # dunst for notifications
|
|
xset r rate 300 50 & # Speed xrate up
|
|
unclutter & # Remove mouse when idle
|