changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra > home / .xinitrc

changeset 47: 02dec5169a1e
parent: 2cd49f7c09bb
child: f69061a590da
author: Richard Westhaver <ellis@rwest.io>
date: Wed, 19 Jun 2024 15:32:46 -0400
permissions: -rwxr-xr-x
description: emacs updates
1 #!/bin/sh
2 xrdb .Xresources &
3 xset r rate 200 40 &
4 xset s off -dpms &
5 case $session in
6  sway ) exec sway;;
7  stumpwm ) /usr/local/bin/stumpwm;;
8  i3|i3wm ) exec i3;;
9  kde ) exec startplasma-x11;;
10  xfce|xfce4 ) exec startxfce4;;
11  leftwm ) exec leftwm;;
12 
13  # No known session, try to run it as command
14  * ) /usr/local/bin/stumpwm;;
15 esac