Move stuff from lt branch in as common config if not virtual

Fri, 10 Feb 2017 01:56:09 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Fri, 10 Feb 2017 01:56:09 -0500
changeset 507
2ac6810a2e4a
parent 506
2a6899f40b2e
child 508
b4f827c47130

Move stuff from lt branch in as common config if not virtual

.Xdefaults file | annotate | diff | comparison | revisions
.xsessionrc file | annotate | diff | comparison | revisions
--- a/.Xdefaults
+++ b/.Xdefaults
@@ -1,3 +1,8 @@
+
+Xautolock.time: 5
+Xautolock.locker: /usr/bin/i3lock -nde -c 101010
+Xautolock.corners: 0+00
+Xautolock.cornerredelay: 10
 
 Xft.antialias: 1
 Xft.autohint:  0
--- a/.xsessionrc
+++ b/.xsessionrc
@@ -1,5 +1,7 @@
 #!/bin/bash
 
+VIRT='no'
+
 if [ "$(uname -s)" = "OpenBSD" ]; then
   PATH="/usr/X11R6/bin:$PATH"
 fi
@@ -23,3 +25,13 @@ if [ -r ~/.xsessionrc.local ]; then
   . ~/.xsessionrc.local
 fi
 
+if [ "$VIRT" = "yes" ]; then
+  xset b off -dpms s off
+else
+  xset b off
+  xautolock -detectsleep &
+  xfce4-power-manager
+  pulseaudio --daemonize
+  nm-applet &>/dev/null </dev/null &
+fi
+

mercurial