123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- # This is an example for icewm 1.8.3 hotkey definition file.
- # It will be installed as /usr/share/icewm/keys.
- # Place your variants in /etc/icewm or in $HOME/.icewm since
- # modifications to this file will be overwritten when you reinstall icewm.
- #
- # A list of all valid keyboard symbols can be found in
- # /usr/include/X11/keysym.h, keysymdefs.h, XF86keysym.h, ...
- # You'll have to omit XK_ prefixs and to replace XF86XK_ prefixes by
- # XF86. Valid modifiers are Alt, Ctrl, Shift, Meta, Super and Hyper.
- #
- key "Alt+Ctrl+t" kitty
- # key "Super+v" xdg-open about:blank
- # key "Super+F2" ponymix decrease 2
- # key "Super+F3" ponymix increase 1
- # key "Super+q" kill
- # key "Super+p" dmenu_run
- # "Multimedia key" bindings for Xorg. Gather the keycodes of your
- # advanced function keys by watching the output of the xev command whilest
- # pressing those keys and map those symbols by using xmodmap.
- # Note: some of them might have unwanted side effects through concurrency with
- # other listeners like systemd for the suspend key events
- #
- # key "XF86Standby" /bin/sh -c "{ test -e /run/systemd/system && systemctl suspend; } ||:"
- # key "XF86Sleep" /bin/sh -c "{ test -e /run/systemd/system && systemctl suspend; } ||:"
- key "XF86HomePage" xdg-open about:blank
- key "XF86Search" xdg-open https://www.duckduckgo.com
- key "XF86Eject" eject
- key "XF86AudioLowerVolume" pactl set-sink-volume @DEFAULT_SINK@ +10%
- key "XF86AudioRaiseVolume" pactl set-sink-volume @DEFAULT_SINK@ -10%
- key "XF86AudioMute" pactl set-sink-mute @DEFAULT_SINK@ toggle
- key "XF86Tools" cmus-notify.sh
- key "Mod1+F2" cmus-remote -v -2% || mpc volume -2
- key "Mod1+F3" cmus-remote -v +2% || mpc volume +2
- key "XF86AudioStop" cmus-remote -s || mpc stop
- key "XF86AudioPrev" cmus-remote -r || mpc prev
- key "XF86AudioPlay" cmus-remote -u || mpc toggle
- key "XF86AudioNext" cmus-remote -n || mpc next
- key "XF86MonBrightnessDown" xbacklight -dec 2
- key "XF86MonBrightnessUp" xbacklight -inc 1
- key "XF86Mail" emacsclient -a '' -c --eval '(mu4e)'
- switchkey "Super+p" icewm-menu-xrandr
|