From 8d4dbf5d7190df8076d5dd15c87b5eacf84b5de7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Mon, 1 Jul 2024 10:26:37 -0300 Subject: [PATCH 1/3] scripts: fix auto_connect_gamepad --- scripts/auto_connect_gamepad | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/auto_connect_gamepad b/scripts/auto_connect_gamepad index 6ff45b7..d373281 100755 --- a/scripts/auto_connect_gamepad +++ b/scripts/auto_connect_gamepad @@ -1,11 +1,11 @@ #!/bin/sh list_paired_controllers() { - bluetoothctl devices Paired | grep -i 'controller' | cut -d' ' -f2 + bluetoothctl devices Paired | grep 'Controller' | cut -d' ' -f2 } count_connected_controllers() { - bluetoothctl devices Connected | grep -i 'controller' | wc -l + bluetoothctl devices Connected | grep 'Controller' | wc -l } try_to_connect_to_all_controllers() { From 8bcdf0e67edffc2585b1594030e1d750bad1600b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Wed, 3 Jul 2024 12:58:04 -0300 Subject: [PATCH 2/3] firefox: switch to dev edition --- user/firefox.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/user/firefox.nix b/user/firefox.nix index 8518c3f..f703486 100644 --- a/user/firefox.nix +++ b/user/firefox.nix @@ -7,7 +7,7 @@ }: let inherit (config.my) desktop browser; - bugfixedFirefox = pkgs.firefox-esr-unwrapped // { + bugfixedFirefox = pkgs.firefox-devedition-unwrapped // { requireSigning = false; allowAddonSideload = true; }; @@ -91,7 +91,7 @@ in ]; }; profiles = { - main = { + dev-edition-default = { isDefault = true; search.force = true; search.default = "DuckDuckGo"; From a4d1e306259197ea41744b051bb9689897cf98f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leonardo=20Eug=C3=AAnio?= Date: Wed, 3 Jul 2024 12:59:17 -0300 Subject: [PATCH 3/3] kdenlive: fix dark theme --- user/sway/theme.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/user/sway/theme.nix b/user/sway/theme.nix index ca4ea76..3185d37 100644 --- a/user/sway/theme.nix +++ b/user/sway/theme.nix @@ -79,6 +79,13 @@ lib.mkIf (desktop == "sway") { # fixed=@Variant(\0\0\0@\0\0\0\x1c\0H\0\x61\0\x63\0k\0 \0N\0\x65\0r\0\x64\0 \0\x46\0o\0n\0t@(\0\0\0\0\0\0\xff\xff\xff\xff\x5\x1\0\x32\x10) # general=@Variant(\0\0\0@\0\0\0\x1e\0L\0i\0\x62\0\x65\0r\0\x61\0t\0i\0o\0n\0 \0S\0\x61\0n\0s@(\0\0\0\0\0\0\xff\xff\xff\xff\x5\x1\0\x32\x10) ''; + "kdedefaults/kdeglobals".text = '' + [General] + ColorScheme=BreezeDark + + [Icons] + Theme=${icon_theme} + ''; }; services.xsettingsd = { enable = true;