diff options
author | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-02-16 08:47:38 +0100 |
---|---|---|
committer | jakob.stendahl <jakob.stendahl@infomedia.dk> | 2024-02-16 08:47:38 +0100 |
commit | 3322e2263a03d6c62e65bd5224723ce0f4dad145 (patch) | |
tree | d50fe0df094ab857f07ef894e9084fc9d8c9a0a9 /linux | |
parent | bf5df2e802df4a46378855fd7ef0b0a4979d8c27 (diff) | |
download | dotfiles-3322e2263a03d6c62e65bd5224723ce0f4dad145.tar.gz dotfiles-3322e2263a03d6c62e65bd5224723ce0f4dad145.zip |
general
Diffstat (limited to 'linux')
-rw-r--r-- | linux/qtile/config/keys.m4.py | 2 | ||||
-rw-r--r-- | linux/tmux.conf.m4 | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/linux/qtile/config/keys.m4.py b/linux/qtile/config/keys.m4.py index 3e57667..77e4f9b 100644 --- a/linux/qtile/config/keys.m4.py +++ b/linux/qtile/config/keys.m4.py @@ -44,7 +44,7 @@ keys = [ Key([mod, "control", "shift"], "c", lazy.restart(), desc="Restart QTile"), Key([mod, "control"], "q", lazy.shutdown(), desc="Shutdown Qtile"), Key([mod], "r", lazy.spawncmd(), desc="Spawn a command using a prompt widget"), - Key([mod], "l", lazy.spawn("xsecurelock"), desc="Toggle floating on the focused window"), + Key([mod1], "l", lazy.spawn("xsecurelock"), desc="Toggle floating on the focused window"), #Key([mod], 'd', lazy.run_extension(extension.DmenuRun( # dmenu_ignorecase=True, # dmenu_font="Andika-8", diff --git a/linux/tmux.conf.m4 b/linux/tmux.conf.m4 index f88153a..29848d4 100644 --- a/linux/tmux.conf.m4 +++ b/linux/tmux.conf.m4 @@ -42,9 +42,9 @@ set-option -s set-clipboard off bind P paste-buffer bind-key -T copy-mode-vi 'v' send -X begin-selection bind-key -T copy-mode-vi 'r' send -X rectangle-toggle -#bind-key -T copy-mode-vi 'y' send -X copy-pipe-and-cancel 'xclip -sel clip -i' -#unbind -T copy-mode-vi Enter -#bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel 'xclip -se c -i' +bind-key -T copy-mode-vi 'y' send -X copy-pipe-and-cancel 'xclip -sel clip -i' +unbind -T copy-mode-vi Enter +bind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel 'xclip -se c -i' #bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel 'xclip -se c -ind-key -T copy-mode-vi Enter send-keys -X copy-pipe-and-cancel 'xclip -se c -i' #bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel 'xclip -se c -i'' |