changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra > home / .xinitrc

changeset 94: 978ce75e54af
parent: 2cd49f7c09bb
child: f69061a590da
author: Richard Westhaver <ellis@rwest.io>
date: Fri, 30 Aug 2024 17:07:30 -0400
permissions: -rwxr-xr-x
description: add stumpwm modules and org-timeline
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