diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-06-01 15:33:01 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-06-01 15:33:01 +0200 |
| commit | db22ae4d2ae60295b607ef3a4a869f1aaf66c6fe (patch) | |
| tree | 57b7b3ef31c5987cd859229ae2b1a87875ded718 | |
| parent | 8cb8fbca592341cb241d338d92873b7a6e36aee5 (diff) | |
| download | dotfiles-db22ae4d2ae60295b607ef3a4a869f1aaf66c6fe.tar.gz dotfiles-db22ae4d2ae60295b607ef3a4a869f1aaf66c6fe.tar.bz2 dotfiles-db22ae4d2ae60295b607ef3a4a869f1aaf66c6fe.zip | |
Added qutebrowser tor toggle
| -rw-r--r-- | config/qutebrowser/config.py | 2 | ||||
| -rwxr-xr-x | config/zsh/zprofile | 7 |
2 files changed, 7 insertions, 2 deletions
diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index 8f1784b..3f266bc 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -75,7 +75,7 @@ config.bind('k', 'scroll-page 0 -0.05', 'normal') c.colors.webpage.darkmode.enabled = True # Convert light themed sites to dark theme -# c.content.proxy = 'socks://localhost:9050/' # tor +config.bind('<Ctrl-Shift-t>', 'config-cycle -p content.proxy socks://localhost:9050/ system', mode='normal') c.content.autoplay = False c.content.notifications.enabled = False # c.content.cookies.accept = 'no-3rdparty' diff --git a/config/zsh/zprofile b/config/zsh/zprofile index b6c6fa0..e2d4aff 100755 --- a/config/zsh/zprofile +++ b/config/zsh/zprofile @@ -61,4 +61,9 @@ export LESS_TERMCAP_ZW=$(tput rsupm) export MINIKUBE_IN_STYLE=false # disable cringe minikube emojies -[ "$(tty)" = '/dev/tty1' ] && { xmonad --recompile ; startx "$XDG_CONFIG_HOME/x11/xinitrc" ; poweroff ; } +[ "$(tty)" = '/dev/tty1' ] && + { + xmonad --recompile + startx "$XDG_CONFIG_HOME/x11/xinitrc" + poweroff + } |
