Overhaul luna complete
This commit is contained in:
parent
06f5971965
commit
6f9fdca876
110 changed files with 2408 additions and 2129 deletions
60
modules/wm/qtile/config/keys/default.py
Normal file
60
modules/wm/qtile/config/keys/default.py
Normal file
|
|
@ -0,0 +1,60 @@
|
|||
"""Qtile default keybindings"""
|
||||
|
||||
# Keys
|
||||
MOD = "mod4"
|
||||
ALT = "mod1"
|
||||
ALTGR = "mod5"
|
||||
SHIFT = "shift"
|
||||
CONTROL = "control"
|
||||
|
||||
# Basic wm bindings
|
||||
|
||||
# All of these variables include the MOVEMENT_KEYS at the start
|
||||
|
||||
# The key which the WM will use to move the layouts
|
||||
MOVEMENT_KEY = MOD
|
||||
KILL_KEY = MOD
|
||||
|
||||
SWAP_KEY = SHIFT
|
||||
FLOATING_KEY = SHIFT
|
||||
|
||||
|
||||
############ BINDINGS FOR MONADTALL ##############
|
||||
# Move between windows
|
||||
LEFT = "h"
|
||||
RIGHT = "l"
|
||||
DOWN = "j"
|
||||
UP = "k"
|
||||
|
||||
# Swap windows
|
||||
SWAP_LEFT = "h"
|
||||
SWAP_RIGHT = "l"
|
||||
SWAP_DOWN = "j"
|
||||
SWAP_UP = "k"
|
||||
|
||||
SWAP_FLIP = "space" # Flip the layout
|
||||
|
||||
########### LAYOUTS ###############
|
||||
# Change windows lenght
|
||||
GROW = "i"
|
||||
SHRINK = "m"
|
||||
NORMALIZE = "n"
|
||||
MAXIMIZE = "o"
|
||||
|
||||
# Floating layout
|
||||
TOOGLE_FLOATING = "f"
|
||||
TOOGLE_FULL = "g"
|
||||
|
||||
# Groups key
|
||||
# Move screen to next and previous group
|
||||
NEXT = "k"
|
||||
PREVIOUS = "j"
|
||||
|
||||
# Kill Functions
|
||||
KILL_CURRENT = "w"
|
||||
KILL_ALL = "x"
|
||||
KILL_ALL_MINUS_CURRENT = "c"
|
||||
|
||||
# Rotates layouts
|
||||
|
||||
TOOGLE_LAYOUT = "Tab"
|
||||
Loading…
Add table
Add a link
Reference in a new issue