# Special keywords (created by Sébastien Ballet for Flaxx https://sourceforge.net/projects/flaxx/):
#
#   Shift   = Shift                Mouse1  = Left Mouse Button
#   Control = Control              Mouse2  = Middle Mouse Button
#   Mod4    = Windows Key (Left)   Mouse3  = Right Mouse Button
#   Mod1    = Alt key              Mouse4  = Mouse Wheel Up
#   Menu    = Windows Key (Right)  Mouse5  = Mouse Wheel Down
#                                  Mouse6  = Mouse Button #6
#                                  Mouse7  = Mouse Button #7
#
#   OnToolbar = mouse is on toolbar
#   OnDesktop = mouse is on desktop
#   OnTitlebar= mouse is on window's titlebar

## MXflux additions ##

# take a screen capture
none Print :Exec /usr/bin/xfce4-screenshooter

# open fluxbox FAQ
none F1 :Exec thunar /usr/share/mxflux/help

#alternative for FAQ
mod1 F1 :Exec mx-manual

# open a little run terminal
none F2 :Exec rofi -show drun

# open a file manager
none F3 :Exec thunar /home/$USER/.fluxbox

# open a dropdown terminal
none F4 :Exec xfce4-terminal --drop-down

# open a little run terminal for applications
Super_L :Exec rofi -show drun

# open the MX Tools dashboard
none F5 :Exec mx-tools

# open full menu
none F6 :Exec xfce4-appfinder

# change volume with keys
Control Up :Exec amixer -D pulse sset Master 5%+
Control Down :Exec amixer -D pulse sset Master 5%-

# close a window
mod1 F4 :Close

#Minimize all windows on the current workspace
Mod1 d :ShowDesktop

# hide menus
OnDesktop Mouse1 :HideMenus
OnDesktop Mouse2 :WorkspaceMenu
OnDesktop Mouse3 :RootMenu

# scroll on the desktop to change workspaces
OnDesktop Mouse4 :PrevWorkspace
OnDesktop Mouse5 :NextWorkspace

# scroll on the toolbar to change current window
OnToolbar Mouse4 :PrevWindow {static groups} (iconhidden=no)
OnToolbar Mouse5 :NextWindow {static groups} (iconhidden=no)

# alt + left/right click to move/resize a window
OnWindow Mod1 Mouse1 :MacroCmd {Raise} {Focus} {StartMoving}
OnWindowBorder Move1 :StartMoving

OnWindow Mod1 Mouse3 :MacroCmd {Raise} {Focus} {StartResizing NearestCorner}
OnLeftGrip Move1 :StartResizing bottomleft
OnRightGrip Move1 :StartResizing bottomright

# alt + middle click to lower the window
OnWindow Mod1 Mouse2 :Lower

# control-click a window's titlebar and drag to attach windows
OnTitlebar Control Mouse1 :StartTabbing

# double click on the titlebar to shade
OnTitlebar Double Mouse1 :Shade

# left click on the titlebar to move the window
OnTitlebar Mouse1 :MacroCmd {Raise} {Focus} {ActivateTab}
OnTitlebar Move1  :StartMoving

# middle click on the titlebar to lower
OnTitlebar Mouse2 :Lower

# right click on the titlebar for a menu of options
OnTitlebar Mouse3 :WindowMenu

# alt-tab
Mod1 Tab :NextWindow {groups} (workspace=[current])
Mod1 Shift Tab :PrevWindow {groups} (workspace=[current])

# cycle through tabs in the current window
Mod4 Tab :NextTab
Mod4 Shift Tab :PrevTab

# go to a specific tab in the current window
Mod4 1 :Tab 1
Mod4 2 :Tab 2
Mod4 3 :Tab 3
Mod4 4 :Tab 4
Mod4 5 :Tab 5
Mod4 6 :Tab 6
Mod4 7 :Tab 7
Mod4 8 :Tab 8
Mod4 9 :Tab 9

# open a run box
Mod1 F2 :Exec fbrun

# volume settings, using common keycodes
# if these don't work, use xev to find out your real keycodes
#176 :Exec amixer sset Master,0 1+
#174 :Exec amixer sset Master,0 1-
#160 :Exec amixer sset Master,0 toggle

# current window commands
Mod4 F4 :Close
Mod1 F5 :Kill
Mod1 F9 :Minimize
Mod1 F10 :Maximize
Mod1 F11 :Fullscreen

# exit fluxbox
Control Mod1 Delete :Exit

# change to previous/next workspace
Control Mod1 Left :PrevWorkspace
Control Mod1 Right :NextWorkspace

# change to a specific workspace
Control F1 :Workspace 1
Control F2 :Workspace 2
Control F3 :Workspace 3

# send the current window to a specific workspace
Mod4 F1 :SendToWorkspace 1
Mod4 F2 :SendToWorkspace 2
Mod4 F3 :SendToWorkspace 3


