Minor edits

This commit is contained in:
Derek Taylor
2023-08-19 20:51:07 -05:00
parent 6bddd33f52
commit 2eac90848b
11 changed files with 12 additions and 12 deletions

View File

@@ -44,7 +44,7 @@ def add_treetab_section(layout):
mod = "mod4" # Sets mod key to SUPER/WINDOWS
myTerm = "alacritty" # My terminal of choice
myBrowser = "qutebrowser" # My browser of choice
myBrowser = "brave" # My browser of choice
myEmacs = "emacsclient -c -a 'emacs' " # The space at the end is IMPORTANT!
# A list of available commands that can be bound to keys can be found
@@ -53,7 +53,7 @@ keys = [
# The essentials
Key([mod], "Return", lazy.spawn(myTerm), desc="Terminal"),
Key([mod, "shift"], "Return", lazy.spawn("dm-run"), desc='Run Launcher'),
Key([mod], "b", lazy.spawn(myBrowser), desc='Qutebrowser'),
Key([mod], "b", lazy.spawn(myBrowser), desc='Web browser'),
Key([mod], "Tab", lazy.next_layout(), desc="Toggle between layouts"),
Key([mod, "shift"], "c", lazy.window.kill(), desc="Kill focused window"),
Key([mod, "shift"], "r", lazy.reload_config(), desc="Reload the config"),