diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-11-18 13:44:04 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-11-18 13:44:04 +0100 |
| commit | bf385e91c80f9963624c501eb0a8d2b35c6f2466 (patch) | |
| tree | 5672760570c5d9b4d93113f42ab23ec39a0b3921 /config/qutebrowser | |
| parent | 125bcca5e7ed1b4527083bc2bcbdf66aa166d341 (diff) | |
| download | dotfiles-bf385e91c80f9963624c501eb0a8d2b35c6f2466.tar.gz dotfiles-bf385e91c80f9963624c501eb0a8d2b35c6f2466.tar.bz2 dotfiles-bf385e91c80f9963624c501eb0a8d2b35c6f2466.zip | |
Added Nerd Font to alacritty for emoji, Updated zsh aliases and qutebrowser for Darwin specific config
Diffstat (limited to 'config/qutebrowser')
| -rw-r--r-- | config/qutebrowser/config.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/config/qutebrowser/config.py b/config/qutebrowser/config.py index d27a498..11fced5 100644 --- a/config/qutebrowser/config.py +++ b/config/qutebrowser/config.py @@ -1,3 +1,4 @@ +import platform from pathlib import Path @@ -41,6 +42,9 @@ config.bind("<Command-Return>", "config-cycle window.hide_decoration true false" c.fonts.default_family = ["Fira Mono", "Baekmuk", "Symbola"] c.fonts.hints = "bold 11pt default_family" +if platform.system() == 'Darwin': + c.fonts.default_size = '13pt' + c.fonts.hints = "bold 12pt default_family" c.hints.chars = "asdfghjkl;" # use key in the main row for hints |
