Add some optional startup commands for VMs, and remove scroll-wheel desktop change, since I never use it and it is occasionally annoying.

This commit is contained in:
Anna Rose 2015-08-29 14:31:54 -04:00
parent 4fd0cecdb4
commit 9e0415ccc4

View File

@ -3,8 +3,12 @@
;;; Programs to run on startup ;;; Programs to run on startup
(system "setxkbmap dvorak") (system "setxkbmap dvorak")
(system "setxkbmap -option compose:caps") (system "setxkbmap -option compose:caps")
; (system "xscreensaver &")
(system "lxpanel &") (system "lxpanel &")
; (system "xscreensaver &")
;; For VMs
; (system "xset s off")
; (system "xset -dpms")
;;; Custom functions ;;; Custom functions
@ -117,11 +121,6 @@
"Super-n" build-new-workspace "Super-n" build-new-workspace
) )
; Mouse bindings
(bind-keys root-window-keymap
"Button4-Click1" '(previous-workspace 1)
"Button5-Click1" '(next-workspace 1) )
; Given a list of paired letter-command items, returns a new list of paired ; Given a list of paired letter-command items, returns a new list of paired
; letter-function items, where each anonymous function calls the passed ; letter-function items, where each anonymous function calls the passed
; function with the original string as its argument ; function with the original string as its argument