qutebrowser: 1.3.1 -> 1.4.1

This commit is contained in:
Timothy DeHerrera 2020-12-21 03:10:38 -07:00
parent 2f10157648
commit 63b4e06098
No known key found for this signature in database
GPG Key ID: 8985725DB5B0C122
3 changed files with 2 additions and 9 deletions

View File

@ -12,4 +12,5 @@ with pkgs;
dhall
nixpkgs-fmt
manix
qutebrowser
]

View File

@ -87,14 +87,6 @@ c.content.local_content_can_access_file_urls = True
# Type: Bool
c.content.local_storage = True
# Allow websites to record audio/video.
# Type: BoolAsk
# Valid values:
# - true
# - false
# - ask
c.content.media_capture = 'ask'
# Enable plugins in Web pages.
# Type: Bool
c.content.plugins = False

View File

@ -24,7 +24,7 @@ in
(final: prev: {
# wrapper to specify config file
qute = prev.writeShellScriptBin "qute" ''
QT_QPA_PLATFORMTHEME= exec ${prev.qutebrowser}/bin/qutebrowser -C /etc/xdg/qutebrowser/config.py "$@"
QT_QPA_PLATFORMTHEME= exec ${final.qutebrowser}/bin/qutebrowser -C /etc/xdg/qutebrowser/config.py "$@"
'';
})
];