nix-config/home-manager/_mixins/desktop/deckmaster-xl.nix
2024-05-23 15:02:20 -04:00

21 lines
488 B
Nix

{ config, username, ... }:
{
# https://github.com/muesli/deckmaster
imports = [
../console/decktrunk.nix
];
home.file = {
"${config.xdg.configHome}/autostart/deskmaster-xl.desktop".text = "
[Desktop Entry]
Name=Deckmaster XL
Comment=Deckmaster XL
Type=Application
Exec=deckmaster -deck /home/${username}/Studio/StreamDeck/Deckmaster-xl/main.deck
Categories=
Terminal=false
NoDisplay=true
StartupNotify=false";
};
}