Overhaul luna complete
This commit is contained in:
parent
06f5971965
commit
6f9fdca876
110 changed files with 2408 additions and 2129 deletions
15
modules/wm/qtile/config/keys/print_keybindings.py
Normal file
15
modules/wm/qtile/config/keys/print_keybindings.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
"""
|
||||
Script that automates the process of writing a keybindings.md
|
||||
By directly getting the keybindings from keybindings.py
|
||||
"""
|
||||
|
||||
# Local import
|
||||
from keybindings import Keybindings
|
||||
|
||||
def get_keybindings():
|
||||
current_keybindings = Keybindings()
|
||||
list_of_keys = list(current_keybindings.init_keys())
|
||||
return list_of_keys
|
||||
|
||||
|
||||
print(*get_keybindings(), sep="\n")
|
||||
Loading…
Add table
Add a link
Reference in a new issue