summary refs log tree commit diff stats
path: root/xbindkeys/.xbindkeysrc.scm
diff options
context:
space:
mode:
Diffstat (limited to 'xbindkeys/.xbindkeysrc.scm')
-rw-r--r--xbindkeys/.xbindkeysrc.scm57
1 files changed, 0 insertions, 57 deletions
diff --git a/xbindkeys/.xbindkeysrc.scm b/xbindkeys/.xbindkeysrc.scm deleted file mode 100644 index b8812cd..0000000 --- a/xbindkeys/.xbindkeysrc.scm +++ /dev/null
@@ -1,57 +0,0 @@
1;; To specify a key, you can use 'xbindkeys --key' or
2;; 'xbindkeys --multikey' and put one of the two lines in this file.
3
4;; A list of keys is in /usr/include/X11/keysym.h and in
5;; /usr/include/X11/keysymdef.h
6;; The XK_ is not needed.
7
8;; List of modifier:
9;; Release, Control, Shift, Mod1 (Alt), Mod2 (NumLock),
10;; Mod3 (CapsLock), Mod4, Mod5 (Scroll).
11
12
13;; The release modifier is not a standard X modifier, but you can
14;; use it if you want to catch release instead of press events
15
16;; By defaults, xbindkeys does not pay attention to modifiers
17;; NumLock, CapsLock and ScrollLock.
18;; Uncomment the lines below if you want to use them.
19;; To dissable them, call the functions with #f
20
21
22;;;;EXTRA FUNCTIONS: Enable numlock, scrolllock or capslock usage
23;;(set-numlock! #t)
24;;(set-scrolllock! #t)
25;;(set-capslock! #t)
26
27;;;;; Scheme API reference
28;;;;
29;; Optional modifier state:
30;; (set-numlock! #f or #t)
31;; (set-scrolllock! #f or #t)
32;; (set-capslock! #f or #t)
33;;
34;; Shell command key:
35;; (xbindkey key "foo-bar-command [args]")
36;; (xbindkey '(modifier* key) "foo-bar-command [args]")
37;;
38;; Scheme function key:
39;; (xbindkey-function key function-name-or-lambda-function)
40;; (xbindkey-function '(modifier* key) function-name-or-lambda-function)
41;;
42;; Other functions:
43;; (remove-xbindkey key)
44;; (run-command "foo-bar-command [args]")
45;; (grab-all-keys)
46;; (ungrab-all-keys)
47;; (remove-all-keys)
48;; (debug)
49
50(xbindkey '(mod4 F9) "mpc toggle")
51(xbindkey '(mod4 F10) "mpc prev")
52(xbindkey '(mod4 F11) "mpc next")
53(xbindkey '(mod4 F12) "mpc stop")
54
55(xbindkey '(mod4 p) "dmenu_run -fn '-misc-termsyn-medium-r-normal--11-79-100-100-c-60-*-*' -nb '#002b36' -nf '#fdf6e3' -sb '#586e75' -sf '#fdf6e3' -hist '/home/alan/.cache/dmenu_run_history'")
56(xbindkey '(mod4 shift T) "mlterm")
57(xbindkey '(mod4 shift E) "emacsclient -c")