This repository has been archived on 2022-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/x11/.xinitrc

48 lines
640 B
Plaintext
Raw Permalink Normal View History

2020-11-13 13:31:17 +00:00
#!/bin/sh
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
2021-05-03 07:08:48 +00:00
setxkbmap -option compose:ralt
2020-11-13 13:31:17 +00:00
nvidia-settings --load-config-only
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
2020-12-30 12:31:51 +00:00
~/.screenlayout/layout.sh
#xrandr --output DP-0 --brightness 0.5
2020-11-13 13:31:17 +00:00
exec i3