From 4dd14f6b18e683a95da4024175c857ef49b467e6 Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Fri, 18 Jan 2013 23:32:42 +0100 Subject: Stumpwm: Change some UI settings - Change the font used. - Use the `:thin' border style to hide windows behind certain other windows. For example: When using Emacs and conkeror, if conkeror is placed behind emacs and the border is `:tight' I will see a tiny portion of the conkeror window on my screen (due to emacs' size hints). On the other hand if I use `:thick', it will use the border color to fill it up, with `:thin' it uses the unfocus-color. --- .stumpwmrc | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to '.stumpwmrc') diff --git a/.stumpwmrc b/.stumpwmrc index 8c258e7..91cddf0 100644 --- a/.stumpwmrc +++ b/.stumpwmrc @@ -97,7 +97,7 @@ (set-float-focus-color (colour :black)) (set-float-unfocus-color (colour :aluminium-6)) (set-focus-color (colour :black)) -(set-font "-*-dejavu sans mono-medium-r-*-*-15-*-*-*-*-*-iso10646-*") +(set-font "-*-tamsyn-medium-r-normal-*-17-*-*-*-*-0-iso8859-1") (set-unfocus-color (colour :aluminium-6)) (set-win-bg-color (colour :background)) @@ -105,16 +105,14 @@ :butter-1 :sky-blue-1 :plum-1 :cyan :aluminium-1))) (setf *input-window-gravity* :bottom-left) -(setf *maxsize-border-width* 1) (setf *message-window-gravity* :top-right) (setf *mode-line-background-color* (colour :background)) (setf *mode-line-border-color* (colour :aluminium-6)) (setf *mode-line-foreground-color* (colour :aluminium-1)) -(setf *normal-border-width* 1) (setf *shell-program* (getenv "SHELL")) (setf *transient-border-width* 1) -(setf *window-border-style* :tight) (setf *window-format* "%m%50t") +(setf *window-boder-style* :thin) (setf *screen-mode-line-format* (list "[%n]" '(:eval -- cgit v1.2.3-54-g00ecf From 7d7c224a4bd9b4a728262aff542db6aea9a7ad4a Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Fri, 18 Jan 2013 23:33:45 +0100 Subject: Stumpwm: Remove some unused keybindings Since I don't have a keypad on either my PC or laptop anymore, binding them is useless. --- .stumpwmrc | 6 ------ 1 file changed, 6 deletions(-) (limited to '.stumpwmrc') diff --git a/.stumpwmrc b/.stumpwmrc index 91cddf0..627d2b5 100644 --- a/.stumpwmrc +++ b/.stumpwmrc @@ -128,12 +128,6 @@ (set-prefix-key (kbd "C-i")) (define-key *top-map* (kbd "C-M-l") "run-i3lock") -(define-key *top-map* (kbd "KP_Begin") "vsplit") -(define-key *top-map* (kbd "KP_Divide") "remove") -(define-key *top-map* (kbd "KP_Left") "only") -(define-key *top-map* (kbd "KP_Multiply") "fnext") -(define-key *top-map* (kbd "KP_Right") "hsplit") -(define-key *top-map* (kbd "KP_End") "pull-hidden-next") (define-key *root-map* (kbd "c") "raise-urxvt") (define-key *root-map* (kbd "C") "run-urxvt") -- cgit v1.2.3-54-g00ecf From a2d298d3ab1c0df575ab70b145f5e965a867db6b Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Tue, 29 Jan 2013 02:33:57 +0100 Subject: stumpwm: fix type --- .stumpwmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.stumpwmrc') diff --git a/.stumpwmrc b/.stumpwmrc index 627d2b5..d2a8d9e 100644 --- a/.stumpwmrc +++ b/.stumpwmrc @@ -112,7 +112,7 @@ (setf *shell-program* (getenv "SHELL")) (setf *transient-border-width* 1) (setf *window-format* "%m%50t") -(setf *window-boder-style* :thin) +(setf *window-border-style* :thin) (setf *screen-mode-line-format* (list "[%n]" '(:eval -- cgit v1.2.3-54-g00ecf From 999a9ab971afafad721ae2859ccaa5b12efb58cb Mon Sep 17 00:00:00 2001 From: Tom Willemsen Date: Tue, 29 Jan 2013 02:34:28 +0100 Subject: stumpwm: Use C-z for prefix, not C-i I seem to use C-z less than C-i in other programs. --- .stumpwmrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.stumpwmrc') diff --git a/.stumpwmrc b/.stumpwmrc index d2a8d9e..bdc7395 100644 --- a/.stumpwmrc +++ b/.stumpwmrc @@ -125,7 +125,7 @@ (format-expand *window-formatters* *window-format* (current-window))))) -(set-prefix-key (kbd "C-i")) +(set-prefix-key (kbd "C-z")) (define-key *top-map* (kbd "C-M-l") "run-i3lock") -- cgit v1.2.3-54-g00ecf