Compare commits

..

3 commits

Author SHA1 Message Date
Leonardo Eugênio a4d1e30625 kdenlive: fix dark theme 2024-07-03 12:59:17 -03:00
Leonardo Eugênio 8bcdf0e67e firefox: switch to dev edition 2024-07-03 12:58:04 -03:00
Leonardo Eugênio 8d4dbf5d71 scripts: fix auto_connect_gamepad 2024-07-01 10:26:37 -03:00
3 changed files with 11 additions and 4 deletions

View file

@ -1,11 +1,11 @@
#!/bin/sh #!/bin/sh
list_paired_controllers() { list_paired_controllers() {
bluetoothctl devices Paired | grep -i 'controller' | cut -d' ' -f2 bluetoothctl devices Paired | grep 'Controller' | cut -d' ' -f2
} }
count_connected_controllers() { count_connected_controllers() {
bluetoothctl devices Connected | grep -i 'controller' | wc -l bluetoothctl devices Connected | grep 'Controller' | wc -l
} }
try_to_connect_to_all_controllers() { try_to_connect_to_all_controllers() {

View file

@ -7,7 +7,7 @@
}: }:
let let
inherit (config.my) desktop browser; inherit (config.my) desktop browser;
bugfixedFirefox = pkgs.firefox-esr-unwrapped // { bugfixedFirefox = pkgs.firefox-devedition-unwrapped // {
requireSigning = false; requireSigning = false;
allowAddonSideload = true; allowAddonSideload = true;
}; };
@ -91,7 +91,7 @@ in
]; ];
}; };
profiles = { profiles = {
main = { dev-edition-default = {
isDefault = true; isDefault = true;
search.force = true; search.force = true;
search.default = "DuckDuckGo"; search.default = "DuckDuckGo";

View file

@ -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) # 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) # 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 = { services.xsettingsd = {
enable = true; enable = true;