From 048245765970fd5cd03d7ce69c30743e5b2ccd3e Mon Sep 17 00:00:00 2001 From: Quinn Date: Fri, 20 Jun 2025 11:48:33 +0200 Subject: [PATCH] fix: xprofile does not exist, use .xprofile --- .xinitrc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.xinitrc b/.xinitrc index 04643fa..c40e451 100755 --- a/.xinitrc +++ b/.xinitrc @@ -16,10 +16,10 @@ export __GL_YIELD="USLEEP" # fix for awful diagonal screen tear numlockx on # ensure numlock is on before setting keymap -setxkbmap us -variant altgr-intl -option '' # load the correct keymap which actually has 3rd level shift -[[ -f "/etc/xprofile" ]] && source "/etc/xprofile" # load the system-wide xprofile -[[ -f "$HOME/.xprofile" ]] && source "$HOME/xprofile" # load the local xprofile configuration -[[ -f "$HOME/.Xmodmap" ]] && xmodmap "$HOME/.Xmodmap" # load local keymap +setxkbmap us -variant altgr-intl -option '' # load the correct keymap which actually has 3rd level shift +[[ -f "/etc/xprofile" ]] && source "/etc/xprofile" # load the system-wide xprofile +[[ -f "$HOME/.xprofile" ]] && source "$HOME/.xprofile" # load the local xprofile configuration +[[ -f "$HOME/.Xmodmap" ]] && xmodmap "$HOME/.Xmodmap" # load local keymap [[ -x /usr/bin/picom ]] && /usr/bin/picom -b # start picom as a background service exec i3 -c "$XDG_CONFIG_HOME/i3/config" # start the graphical environment (replaces shell)