Collin J. Doering
224f475a46
Notable changes include: * .Xdefaults: - added comments - switched from url-select to url-picker (for urxvt) * .bashrc: added some alias' and changed PATH * .bin/vol.sh: *depreciated* * .bin/xmonadClose.sh: added experimental timed-action support * .config/dunst/dunstrc: - changed transparency to 15% - issue with getting "follow = v" to work; where v = mouse or keyboard * .config/systemd/user/emacs.service: - added a Environment property because it is required with a recent(ish?) update of systemd * .config/systemd/user/xbindkeys.service: - added Environment property - made ExecStart more specific * .conkerorrc: - added support for magnet urls - added firebug-lite support * .emacs: - disabled tabs - enabled column-number-mode * .ghci: added ghci config file * .gnus: Many changes to make gnus more usable as a email client (multiple email support) * .mpdconf: added password for admin and control access * .ncmpcpp/config: use new mpd password * .screenrc: use weechat in place of irssi * .xbindkeysrc: - use new mpd password - pulseaudio_ctl merged with pulseaudio-ctl in AUR. Now using the new version *BROKEN* * .xinitrc: running "systemd --user" is depreciated (automatically run by logind) * .xmobarrc: use DynNetwork in place of Network * .xmonad/xmonad.hs: code clean-up * .zshrc: - added new function 'disable_unit_run' which can be used to run a program temporarily disabling a systemd user unit file - added alias' - changed PATH
126 lines
2.5 KiB
Plaintext
126 lines
2.5 KiB
Plaintext
# File: .xbindkeysrc
|
|
# Date: Sept 23, 2010
|
|
# Author: Collin J. Doering <rekahsoft@gmail.com>
|
|
# Description: File that contains key bindings independant of any DE (using xbindkeys). This file is in the following format:
|
|
|
|
## <generic functinality> (<geographical location on keyboard >)
|
|
# <key combination> = <functionality>
|
|
#"<command"
|
|
# m:<modifier state> + c:<keycode>
|
|
#< keycode name>
|
|
## END of <generic functinality>
|
|
|
|
## Multimedia keys (top of keyboard)
|
|
|
|
# play/pause key = toggle play pause
|
|
#"~/.bin/toggle-pp.py"
|
|
#"cmus-remote --pause"
|
|
"mpc -h patchMeIn@localhost toggle"
|
|
m:0x10 + c:172
|
|
XF86AudioPlay
|
|
#"cmus-remote --pause"
|
|
"mpc -h patchMeIn@localhost toggle"
|
|
m:0x58 + c:33
|
|
Alt+Mod2+Mod4 + p
|
|
|
|
# next key = next song
|
|
#"cmus-remote --next"
|
|
"mpc -h patchMeIn@localhost next"
|
|
m:0x10 + c:171
|
|
XF86AudioNext
|
|
#"cmus-remote --next"
|
|
"mpc -h patchMeIn@localhost next"
|
|
m:0x58 + c:60
|
|
Alt+Mod2+Mod4 + period
|
|
|
|
# prev key = previous song
|
|
#"cmus-remote --prev"
|
|
"mpc -h patchMeIn@localhost prev"
|
|
m:0x10 + c:173
|
|
XF86AudioPrev
|
|
#"cmus-remote --prev"
|
|
"mpc -h patchMeIn@localhost prev"
|
|
m:0x58 + c:59
|
|
Alt+Mod2+Mod4 + comma
|
|
|
|
# volume up key = Master volume up 1
|
|
#"amixer set Master 1+"
|
|
"pulseaudio-ctl up"
|
|
m:0x10 + c:123
|
|
XF86AudioRaiseVolume
|
|
#"amixer set Master 1+"
|
|
"pulseaudio-ctl up"
|
|
m:0x58 + c:30
|
|
Alt+Mod2+Mod4 + u
|
|
|
|
# volume down key = Master volume down 1
|
|
#"amixer set Master 1-"
|
|
"pulseaudio-ctl down"
|
|
m:0x10 + c:122
|
|
XF86AudioLowerVolume
|
|
#"amixer set Master 1-"
|
|
"pulseaudio-ctl down"
|
|
m:0x58 + c:40
|
|
Alt+Mod2+Mod4 + d
|
|
|
|
# mute volume key = mute alsa Master channel
|
|
#"amixer set Master toggle"
|
|
"pulseaudio-ctl mute"
|
|
m:0x10 + c:121
|
|
XF86AudioMute
|
|
#"amixer set Master toggle"
|
|
"mute_toggle"
|
|
m:0x58 + c:58
|
|
Alt+Mod2+Mod4 + m
|
|
|
|
## End of Multimedia keys
|
|
|
|
## Random keys (F* line of keys)
|
|
# Super + Calculator = (speed crunch)
|
|
"speedcrunch"
|
|
m:0x10 + c:148
|
|
XF86Calculator
|
|
|
|
# Super + Calculator = mathematica
|
|
"mathematica"
|
|
m:0x50 + c:148
|
|
XF86Calculator
|
|
|
|
# Sleep key = lock screen with xscreensaver
|
|
"xscreensaver-command -lock"
|
|
m:0x10 + c:150
|
|
XF86Sleep
|
|
## End of F* line of keys
|
|
|
|
## Left side of keyboard
|
|
# WWW key
|
|
"conkeror"
|
|
m:0x10 + c:158
|
|
XF86WWW
|
|
|
|
# Search PC key
|
|
#""
|
|
#m:0x10 + c:225
|
|
#XF86Search
|
|
|
|
# Search pics key (unknown)
|
|
|
|
# Close key
|
|
#""
|
|
#m:0x10 + c:214
|
|
#XF86Close
|
|
|
|
# Roatate windows key
|
|
"tuxcmd"
|
|
m:0x10 + c:162
|
|
XF86RotateWindows
|
|
# End of left side of keyboard
|
|
|
|
## Bottom right keys
|
|
|
|
# VOIP end call
|
|
#""
|
|
#m:0x10 + c:231
|
|
#Cancel
|
|
|
|
## End of Bottom right keys |