dotfiles

My configuration files.
Log | Files | Refs | README

commit 1f799ebbe6549bb35f2c10e3d9fcbb7cbd775657
parent 8ae2dfff12cf86e39e3269548e8398ebdb98b617
Author: Sven Möller <sven@svenmoeller.xyz>
Date:   Wed,  1 Jun 2022 16:42:39 +0200

Define yanker variable

Diffstat:
MX11/.xinitrc | 3++-
Mbash/.profile | 3++-
Mqutebrowser/.config/qutebrowser/config.py | 2+-
3 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/X11/.xinitrc b/X11/.xinitrc @@ -4,8 +4,9 @@ export BROWSER="setsid -f qutebrowser" export DOCVIEWER="setsid -f zathura" export PICVIEWER="setsid -f nsxiv" export MENU="dmenu -i -l 44" +export YANKER="xclip -r" -export SFEED_YANKER="xclip -r" +export SFEED_YANKER="$YANKER" # keyboard setxkbmap -model pc105 -layout de diff --git a/bash/.profile b/bash/.profile @@ -7,10 +7,11 @@ export BROWSER="w3m" export DOCVIEWER="jfbview --zoom_to_fit" export PICVIEWER="mpv --loop-file=inf --really-quiet" export TERMINAL="tmux new-window" +export YANKER="tmux load-buffer -" # Define Program Settings export SFEED_PLUMBER_INTERACTIVE="1" -export SFEED_YANKER="tmux load-buffer -" +export SFEED_YANKER="$YANKER" export BM_DIR=~/documents/bookmarks export LEDGER_FILE="$HOME/documents/documents/ledger.txt" export LIBVA_DRIVER_NAME=i965 diff --git a/qutebrowser/.config/qutebrowser/config.py b/qutebrowser/.config/qutebrowser/config.py @@ -33,6 +33,6 @@ config.bind('yf', 'hint links yank') config.bind(',y', 'hint links spawn mpv {hint-url}') config.bind('gh', 'home') config.bind('gr', 'spawn --userscript readability-js') -config.bind('<Ctrl-b>', 'spawn -v bm {url}') +config.bind('<Ctrl-b>', 'spawn -v todo.sh add {url} @reading') config.bind('<Ctrl-s>', 'spawn lh -g {url}') config.bind(',s', 'hint links spawn lh -g {hint-url}')