feat: more streamdeck config

This commit is contained in:
Patrick 2023-09-28 19:52:12 +02:00
parent b237a21359
commit c48444af6a
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
8 changed files with 45 additions and 6 deletions

BIN
img/back.png.age Normal file

Binary file not shown.

BIN
img/heads.png.age Normal file

Binary file not shown.

Binary file not shown.

BIN
img/player.png.age Normal file

Binary file not shown.

BIN
img/screenshot.png.age Normal file

Binary file not shown.

View file

@ -1,4 +1,4 @@
{pkgs, ...}: { {
imports = [ imports = [
./shells/alias.nix ./shells/alias.nix
./shells/zsh ./shells/zsh
@ -7,9 +7,7 @@
./programs/gpg ./programs/gpg
]; ];
home.packages = with pkgs; [ programs.bat.enable = true;
bat
];
nixpkgs.config = { nixpkgs.config = {
allowUnfree = true; allowUnfree = true;
}; };

View file

@ -26,6 +26,7 @@
services.dunst = { services.dunst = {
enable = true; enable = true;
settings.global = { settings.global = {
frame_width = 0;
highlight = config.lib.stylix.colors.withHashtag.base0C; highlight = config.lib.stylix.colors.withHashtag.base0C;
progress_bar_frame_width = 0; progress_bar_frame_width = 0;
progress_bar_corner_radius = 0; progress_bar_corner_radius = 0;

View file

@ -16,11 +16,51 @@
icon = config.images.images."mic.png"; icon = config.images.images."mic.png";
# Text position # Text position
text_vertical_align = "middle-bottom"; text_vertical_align = "middle-bottom";
background_color = "#7289DA";
}; };
"6" = { "6" = {
keys = "F8"; keys = "F8";
text = "deafen"; icon = config.images.images."heads.png";
text_vertical_align = "middle-bottom"; background_color = "#7289DA";
};
"14" = {
keys = "cmd+F12";
icon = config.images.images."screenshot.png";
text_vertical_align = "middle";
background_color = config.lib.stylix.colors.withHashtag.base09;
};
"9" = {
keys = "cmd+F11";
icon = config.images.images."screenshot.png";
text = "SAVE";
text_vertical_align = "middle";
font = "${config.stylix.fonts.serif.package}/share/fonts/truetype/DejaVuSerif.ttf";
background_color = config.lib.stylix.colors.withHashtag.base09;
};
"4" = {
keys = "cmd+F10";
icon = config.images.images."screenshot.png";
text = "QR";
text_vertical_align = "middle";
background_color = config.lib.stylix.colors.withHashtag.base09;
};
"3" = {
keys = "cmd+F9";
icon = config.images.images."screenshot.png";
text = "OCR";
text_vertical_align = "middle";
background_color = config.lib.stylix.colors.withHashtag.base09;
};
"13" = {
icon = config.images.images."player.png";
switch_page = 1;
};
};
"1" = {
"0" = {
icon = config.images.images."back.png";
switch_page = 0;
background_color = config.lib.stylix.colors.withHashtag.base0C;
}; };
}; };
}; };