diff options
| author | 2026-05-13 13:43:19 +0100 | |
|---|---|---|
| committer | 2026-05-13 13:43:19 +0100 | |
| commit | 1e648128c729319f0472d993bb623928c117744c (patch) | |
| tree | 208896ffeb8dbb683d5e2fdad2051b8fe457a705 /dot_config | |
| parent | 083a99063d5092e0895424f652804065c84463f8 (diff) | |
| download | dotfiles-1e648128c729319f0472d993bb623928c117744c.tar.gz dotfiles-1e648128c729319f0472d993bb623928c117744c.tar.bz2 dotfiles-1e648128c729319f0472d993bb623928c117744c.zip | |
fix(sway): rebind cliphist to $mod+p ($mod+v is splitv)
$mod+v is sway's default splitv; my cliphist bind was shadowing it and
emitting a warning. Move clipboard history to $mod+p / $mod+Shift+p.
Diffstat (limited to 'dot_config')
| -rw-r--r-- | dot_config/sway/config | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dot_config/sway/config b/dot_config/sway/config index 7f95a62..6a714fc 100644 --- a/dot_config/sway/config +++ b/dot_config/sway/config @@ -159,8 +159,8 @@ bindsym $mod+n exec makoctl dismiss bindsym $mod+Shift+n exec makoctl dismiss --all # Clipboard history -bindsym $mod+v exec sh -c 'cliphist list | fuzzel --dmenu | cliphist decode | wl-copy' -bindsym $mod+Shift+v exec sh -c 'cliphist list | fuzzel --dmenu | cliphist delete' +bindsym $mod+p exec sh -c 'cliphist list | fuzzel --dmenu | cliphist decode | wl-copy' +bindsym $mod+Shift+p exec sh -c 'cliphist list | fuzzel --dmenu | cliphist delete' # Display mode switching bindsym --no-repeat F7 exec ~/.config/sway/display-toggle.sh |
