mirror of
https://gitlab.com/dwt1/dotfiles.git
synced 2026-08-10 01:51:15 +10:00
Adding keybinding table to README.org
This commit is contained in:
+1
-39
@@ -1,28 +1,4 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
# ____ _____
|
|
||||||
# | _ \_ _| Derek Taylor (DistroTube)
|
|
||||||
# | | | || | http://www.youtube.com/c/DistroTube
|
|
||||||
# | |_| || | http://www.gitlab.com/dwt1/
|
|
||||||
# |____/ |_|
|
|
||||||
#
|
|
||||||
# A customized config.py for Qtile window manager (http://www.qtile.org)
|
|
||||||
# Modified by Derek Taylor (http://www.gitlab.com/dwt1/ )
|
|
||||||
#
|
|
||||||
# The following comments are the copyright and licensing information from the default
|
|
||||||
# qtile config. Copyright (c) 2010 Aldo Cortesi, 2010, 2014 dequis, 2012 Randall Ma,
|
|
||||||
# 2012-2014 Tycho Andersen, 2012 Craig Barnes, 2013 horsik, 2013 Tao Sauvage
|
|
||||||
#
|
|
||||||
# Permission is hereby granted, free of charge, to any person obtaining a copy of this
|
|
||||||
# software and associated documentation files (the "Software"), to deal in the Software
|
|
||||||
# without restriction, including without limitation the rights to use, copy, modify,
|
|
||||||
# merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
|
|
||||||
# permit persons to whom the Software is furnished to do so, subject to the following
|
|
||||||
# conditions:
|
|
||||||
#
|
|
||||||
# The above copyright notice and this permission notice shall be included in all copies
|
|
||||||
# or substantial portions of the Software.
|
|
||||||
|
|
||||||
##### IMPORTS #####
|
|
||||||
import os
|
import os
|
||||||
import re
|
import re
|
||||||
import socket
|
import socket
|
||||||
@@ -32,12 +8,10 @@ from libqtile.command import lazy
|
|||||||
from libqtile import layout, bar, widget, hook
|
from libqtile import layout, bar, widget, hook
|
||||||
from typing import List # noqa: F401
|
from typing import List # noqa: F401
|
||||||
|
|
||||||
##### DEFINING SOME VARIABLES #####
|
|
||||||
mod = "mod4" # Sets mod key to SUPER/WINDOWS
|
mod = "mod4" # Sets mod key to SUPER/WINDOWS
|
||||||
myTerm = "alacritty" # My terminal of choice
|
myTerm = "alacritty" # My terminal of choice
|
||||||
myConfig = "/home/dt/.config/qtile/config.py" # The Qtile config file location
|
myConfig = "/home/dt/.config/qtile/config.py" # The Qtile config file location
|
||||||
|
|
||||||
##### KEYBINDINGS #####
|
|
||||||
keys = [
|
keys = [
|
||||||
### The essentials
|
### The essentials
|
||||||
Key([mod], "Return",
|
Key([mod], "Return",
|
||||||
@@ -240,7 +214,6 @@ keys = [
|
|||||||
),
|
),
|
||||||
]
|
]
|
||||||
|
|
||||||
##### GROUPS #####
|
|
||||||
group_names = [("WWW", {'layout': 'monadtall'}),
|
group_names = [("WWW", {'layout': 'monadtall'}),
|
||||||
("DEV", {'layout': 'monadtall'}),
|
("DEV", {'layout': 'monadtall'}),
|
||||||
("SYS", {'layout': 'monadtall'}),
|
("SYS", {'layout': 'monadtall'}),
|
||||||
@@ -255,16 +228,14 @@ groups = [Group(name, **kwargs) for name, kwargs in group_names]
|
|||||||
|
|
||||||
for i, (name, kwargs) in enumerate(group_names, 1):
|
for i, (name, kwargs) in enumerate(group_names, 1):
|
||||||
keys.append(Key([mod], str(i), lazy.group[name].toscreen())) # Switch to another group
|
keys.append(Key([mod], str(i), lazy.group[name].toscreen())) # Switch to another group
|
||||||
keys.append(Key([mod, "shift"], str(i), lazy.window.togroup(name))) # Send current window to another group
|
keys.append(Key([mod, "shift"], str(i), lazy.window.togroup(name))) # Send current window to another group
|
||||||
|
|
||||||
##### DEFAULT THEME SETTINGS FOR LAYOUTS #####
|
|
||||||
layout_theme = {"border_width": 2,
|
layout_theme = {"border_width": 2,
|
||||||
"margin": 6,
|
"margin": 6,
|
||||||
"border_focus": "e1acff",
|
"border_focus": "e1acff",
|
||||||
"border_normal": "1D2330"
|
"border_normal": "1D2330"
|
||||||
}
|
}
|
||||||
|
|
||||||
##### THE LAYOUTS #####
|
|
||||||
layouts = [
|
layouts = [
|
||||||
#layout.MonadWide(**layout_theme),
|
#layout.MonadWide(**layout_theme),
|
||||||
#layout.Bsp(**layout_theme),
|
#layout.Bsp(**layout_theme),
|
||||||
@@ -295,7 +266,6 @@ layouts = [
|
|||||||
layout.Floating(**layout_theme)
|
layout.Floating(**layout_theme)
|
||||||
]
|
]
|
||||||
|
|
||||||
##### COLORS #####
|
|
||||||
colors = [["#292d3e", "#292d3e"], # panel background
|
colors = [["#292d3e", "#292d3e"], # panel background
|
||||||
["#434758", "#434758"], # background for current screen tab
|
["#434758", "#434758"], # background for current screen tab
|
||||||
["#ffffff", "#ffffff"], # font color for group names
|
["#ffffff", "#ffffff"], # font color for group names
|
||||||
@@ -304,7 +274,6 @@ colors = [["#292d3e", "#292d3e"], # panel background
|
|||||||
["#668bd7", "#668bd7"], # color for the even widgets
|
["#668bd7", "#668bd7"], # color for the even widgets
|
||||||
["#e1acff", "#e1acff"]] # window name
|
["#e1acff", "#e1acff"]] # window name
|
||||||
|
|
||||||
##### PROMPT #####
|
|
||||||
prompt = "{0}@{1}: ".format(os.environ["USER"], socket.gethostname())
|
prompt = "{0}@{1}: ".format(os.environ["USER"], socket.gethostname())
|
||||||
|
|
||||||
##### DEFAULT WIDGET SETTINGS #####
|
##### DEFAULT WIDGET SETTINGS #####
|
||||||
@@ -316,8 +285,6 @@ widget_defaults = dict(
|
|||||||
)
|
)
|
||||||
extension_defaults = widget_defaults.copy()
|
extension_defaults = widget_defaults.copy()
|
||||||
|
|
||||||
##### WIDGETS #####
|
|
||||||
|
|
||||||
def init_widgets_list():
|
def init_widgets_list():
|
||||||
widgets_list = [
|
widgets_list = [
|
||||||
widget.Sep(
|
widget.Sep(
|
||||||
@@ -530,8 +497,6 @@ def init_widgets_list():
|
|||||||
]
|
]
|
||||||
return widgets_list
|
return widgets_list
|
||||||
|
|
||||||
##### SCREENS ##### (TRIPLE MONITOR SETUP)
|
|
||||||
|
|
||||||
def init_widgets_screen1():
|
def init_widgets_screen1():
|
||||||
widgets_screen1 = init_widgets_list()
|
widgets_screen1 = init_widgets_list()
|
||||||
return widgets_screen1 # Slicing removes unwanted widgets on Monitors 1,3
|
return widgets_screen1 # Slicing removes unwanted widgets on Monitors 1,3
|
||||||
@@ -551,7 +516,6 @@ if __name__ in ["config", "__main__"]:
|
|||||||
widgets_screen1 = init_widgets_screen1()
|
widgets_screen1 = init_widgets_screen1()
|
||||||
widgets_screen2 = init_widgets_screen2()
|
widgets_screen2 = init_widgets_screen2()
|
||||||
|
|
||||||
##### DRAG FLOATING WINDOWS #####
|
|
||||||
mouse = [
|
mouse = [
|
||||||
Drag([mod], "Button1", lazy.window.set_position_floating(),
|
Drag([mod], "Button1", lazy.window.set_position_floating(),
|
||||||
start=lazy.window.get_position()),
|
start=lazy.window.get_position()),
|
||||||
@@ -567,7 +531,6 @@ follow_mouse_focus = True
|
|||||||
bring_front_click = False
|
bring_front_click = False
|
||||||
cursor_warp = False
|
cursor_warp = False
|
||||||
|
|
||||||
##### FLOATING WINDOWS #####
|
|
||||||
floating_layout = layout.Floating(float_rules=[
|
floating_layout = layout.Floating(float_rules=[
|
||||||
{'wmclass': 'confirm'},
|
{'wmclass': 'confirm'},
|
||||||
{'wmclass': 'dialog'},
|
{'wmclass': 'dialog'},
|
||||||
@@ -587,7 +550,6 @@ floating_layout = layout.Floating(float_rules=[
|
|||||||
auto_fullscreen = True
|
auto_fullscreen = True
|
||||||
focus_on_window_activation = "smart"
|
focus_on_window_activation = "smart"
|
||||||
|
|
||||||
##### STARTUP APPLICATIONS #####
|
|
||||||
@hook.subscribe.startup_once
|
@hook.subscribe.startup_once
|
||||||
def start_once():
|
def start_once():
|
||||||
home = os.path.expanduser('~')
|
home = os.path.expanduser('~')
|
||||||
|
|||||||
@@ -848,6 +848,28 @@ myLogHook = fadeInactiveLogHook fadeAmount
|
|||||||
I am using the Xmonad.Util.EZConfig module which allows keybindings
|
I am using the Xmonad.Util.EZConfig module which allows keybindings
|
||||||
to be written in simpler, emacs-like format.
|
to be written in simpler, emacs-like format.
|
||||||
|
|
||||||
|
| A FEW IMPORTANT KEYBINDINGS | ASSOCIATED ACTION |
|
||||||
|
|-----------------------------+----------------------------------------------------------------------|
|
||||||
|
| `MODKEY + RETURN` | opens terminal (alacritty is the terminal but can be easily changed) |
|
||||||
|
| `MODKEY + SHIFT + RETURN` | opens run launcher (XMonad's shell xprompt) |
|
||||||
|
| `MODKEY + TAB` | rotates through the available layouts |
|
||||||
|
| `MODKEY + SHIFT + c` | closes window with focus |
|
||||||
|
| `MODKEY + SHIFT + r` | restarts xmonad |
|
||||||
|
| `MODKEY + SHIFT + q` | quits xmonad |
|
||||||
|
| `MODKEY + 1-9` | switch focus to workspace (1-9) |
|
||||||
|
| `MODKEY + SHIFT + 1-9` | send focused window to workspace (1-9) |
|
||||||
|
| `MODKEY + j` | windows focus down (switches focus between windows in the stack) |
|
||||||
|
| `MODKEY + k` | windows focus up (switches focus between windows in the stack) |
|
||||||
|
| `MODKEY + SHIFT + j` | windows swap down (swap windows in the stack) |
|
||||||
|
| `MODKEY + SHIFT + k` | windows swap up (swap the windows in the stack) |
|
||||||
|
| `MODKEY + h` | shrink window (decreases window width) |
|
||||||
|
| `MODKEY + l` | expand window (increases window width) |
|
||||||
|
| `MODKEY + w` | switches focus to monitor 1 |
|
||||||
|
| `MODKEY + e` | switches focus to monitor 2 |
|
||||||
|
| `MODKEY + r` | switches focus to monitor 3 |
|
||||||
|
| `MODKEY + period` | switch focus to next monitor |
|
||||||
|
| `MODKEY + comma` | switch focus to prev monitor |
|
||||||
|
|
||||||
#+BEGIN_SRC haskell
|
#+BEGIN_SRC haskell
|
||||||
myKeys :: [(String, X ())]
|
myKeys :: [(String, X ())]
|
||||||
myKeys =
|
myKeys =
|
||||||
|
|||||||
Reference in New Issue
Block a user