diff options
-rw-r--r-- | git/.gitconfig | 2 | ||||
-rw-r--r-- | i3/.config/i3blocks/config | 6 | ||||
-rw-r--r-- | qutebrowser/.config/qutebrowser/config.py | 1 |
3 files changed, 7 insertions, 2 deletions
diff --git a/git/.gitconfig b/git/.gitconfig index 79e64f8..369dcef 100644 --- a/git/.gitconfig +++ b/git/.gitconfig @@ -21,3 +21,5 @@ ff = true [pull] rebase = false +[credential] + helper = store diff --git a/i3/.config/i3blocks/config b/i3/.config/i3blocks/config index 0f0c207..74b48c6 100644 --- a/i3/.config/i3blocks/config +++ b/i3/.config/i3blocks/config @@ -31,12 +31,14 @@ signal=1 [primary] label=<span color='gray'></span> -command=echo "$(xclip -o | grep -o '^.\{0,9\}' | sed -e 's/[^a-zA-Z0-9\-]/_/g')" +# command=echo "$(xclip -o | grep -o '^.\{0,9\}' | sed -e 's/[^a-zA-Z0-9\-]/_/g')" +command=echo "" interval=5 [clipboard] label=<span color='gray'></span> -command=echo "$(xclip -o -selection "clipboard" | grep -o '^.\{0,9\}' | sed -e 's/[^a-zA-Z0-9\-]/_/g')" +# command=echo "$(xclip -o -selection "clipboard" | grep -o '^.\{0,9\}' | sed -e 's/[^a-zA-Z0-9\-]/_/g')" +command=echo "" interval=5 [volume] diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py index 0f09412..9ab12f4 100644 --- a/qutebrowser/.config/qutebrowser/config.py +++ b/qutebrowser/.config/qutebrowser/config.py @@ -60,6 +60,7 @@ config.bind("gl", 'tab-move +') config.bind("<Ctrl-L>", 'tab-next') config.bind("<Ctrl-H>", 'tab-prev') config.bind("<Ctrl-D>", 'tab-close') +config.bind("<Ctrl-W>", 'do-nothing') # Bindings for insert mode # config.unbind("<Ctrl-A>", mode='insert') |