.xinitrc: Annotate, do monitor assignment, disable wpgen

This commit is contained in:
Salt 2020-07-21 12:20:28 -05:00
parent a12840336a
commit 8ce2a3654c

View File

@ -1,21 +1,32 @@
#!/bin/bash
# Nest protection
if [ -n "$FIRESTARTER" ]; then
echo "Firestarter is already running in this session"
exit 50
fi
# Find our terminal
for term in mate-terminal lxterminal xfce4-terminal konsole urxvt xterm; do
if command -v "$term" > /dev/null 2>&1; then
export TERMINAL="$term"
break
fi
done
if [ -x "$HOME/.wpgen/wpgen" ]; then
resolutions=($(xrandr -q | grep '*' | awk '{print $1}'))
for res in ${resolutions[@]}; do
"$HOME/.wpgen/wpgen" "$res"
done
fi
# Monitor setup
case $(hostname) in
dsk-cstm-0)
xrandr --output DisplayPort-1 --mode 2560x1440 --rate 144 --primary
xrandr --output HDMI-A-0 --mode 1920x1080 --rate 60 --pos 2560x360
;;
esac
# Wallpaper generation because why not
#if [ -x "$HOME/.wpgen/wpgen" ]; then
# resolutions=($(xrandr -q | grep '*' | awk '{print $1}'))
# for res in ${resolutions[@]}; do
# "$HOME/.wpgen/wpgen" "$res"
# done
#fi
# Session execution
if [ -x "$HOME/.config/conky/gen.sh" ]; then
"$HOME/.config/conky/gen.sh"
fi