diff options
Diffstat (limited to '.xinitrc')
| -rwxr-xr-x | .xinitrc | 11 |
1 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ -#!/bin/sh -export DESKTOP_SESSION=plasma -exec startplasma-x11 +#!/bin/bash +case $(tty | cut -b9-) in + (2) exec xfce4-session;; + (4) exec i3;; + (5) exec openbox-session;; + (6) export DESKTOP_SESSION=plasma; exec startplasma-x11;; + (7) exec openbox-session;; +esac |
