Files
dotfiles/.config/x11/xprofile

20 lines
690 B
Plaintext
Raw Normal View History

2021-04-07 22:56:28 +01:00
#!/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.
2021-05-16 12:43:18 +01:00
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
setbg ~/Scarif/Pictures/Wallpapers/Dual\ 4K & # set the background
enpass & # start password manager
2021-04-07 22:56:28 +01:00
xcompmgr & # xcompmgr for transparency
dunst & # dunst for notifications
xset r rate 300 50 & # Speed xrate up
unclutter & # Remove mouse when idle