Skip to content
Snippets Groups Projects
Commit c5f418e2 authored by Jens Nolte's avatar Jens Nolte
Browse files

fuzzel: Disable dpi-aware scaling (uses unstable version)

parent eb6aa0ec
No related branches found
No related tags found
No related merge requests found
......@@ -5,12 +5,13 @@ let
cfg = config.queezle.desktop.launcher;
launcher = pkgs.writeScriptBin "launcher" ''
${pkgs.fuzzel}/bin/fuzzel \
--dpi-aware no \
--terminal terminal \
--border-radius 0 \
--background 111111e6 \
--text-color ccccccff \
--match-color dd5001ff \
--selection-color 000000e6 \
--terminal terminal \
--vertical-pad 20 \
--font 'monospace:size=12' \
--width 100 \
......@@ -19,6 +20,7 @@ let
dmenu = pkgs.writeScriptBin "dmenu" ''
${pkgs.fuzzel}/bin/fuzzel \
--dmenu \
--dpi-aware no \
--border-radius 0 \
--background 111111e6 \
--text-color ccccccff \
......
......@@ -15,6 +15,16 @@ rec {
scripts = [ self.mpvScripts.mpris ];
};
fuzzel = super.fuzzel.overrideAttrs (old: old // {
src = self.fetchFromGitea {
domain = "codeberg.org";
owner = "dnkl";
repo = "fuzzel";
rev = "0014c0b2e33d4c967c26f2ccc34013a2a3cbb7bc";
sha256 = "sha256-fYPXKnJFZVh4vPq7g0qLBEPl/LPUC3By7bVmN9mwsJg=";
};
});
haskell = super.haskell // {
packageOverrides = hself: hsuper: super.haskell.packageOverrides hself hsuper // {
#net-mqtt = self.haskell.lib.doJailbreak hsuper.net-mqtt;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment