changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra > home / .xinitrc

changeset 95: f69061a590da
parent: 2cd49f7c09bb
author: Richard Westhaver <ellis@rwest.io>
date: Sat, 07 Sep 2024 22:40:44 -0400
permissions: -rwxr-xr-x
description: moonlander concessions
1 #!/bin/sh
2 xrdb .Xresources &
3 xset r rate 200 40 &
4 xset s off -dpms &
5 systemctl --user import-environment DISPLAY
6 case $session in
7  sway ) exec sway;;
8  stumpwm ) /usr/local/bin/stumpwm;;
9  i3|i3wm ) exec i3;;
10  kde ) exec startplasma-x11;;
11  xfce|xfce4 ) exec startxfce4;;
12  leftwm ) exec leftwm;;
13 
14  # No known session, try to run it as command
15  * ) /usr/local/bin/stumpwm;;
16 esac