summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Ankarström <john@ankarstrom.se>2021-10-20 23:51:46 +0200
committerJohn Ankarström <john@ankarstrom.se>2021-10-20 23:51:46 +0200
commit9b9884e715aebcd85bfcada8333d9309d3b54ff2 (patch)
tree235574718984a8a5abf00a822eb1c29519b6fd67
parent7606dec7e3a6cbf369052937c10f4b5d5e57b458 (diff)
downloadebsd-9b9884e715aebcd85bfcada8333d9309d3b54ff2.tar.gz
xinitrc: Keep running after Emacs
If you use Option "XkbOptions" "terminate:ctrl_alt_bksp" then you can hit Ctrl-Alt-Backspace to manually terminate X.
-rw-r--r--.xinitrc3
1 files changed, 2 insertions, 1 deletions
diff --git a/.xinitrc b/.xinitrc
index f3d2af7..74afae9 100644
--- a/.xinitrc
+++ b/.xinitrc
@@ -1,2 +1,3 @@
xsetroot -cursor_name left_ptr
-exec emacs
+emacs
+while true; do sleep 3600; done