made obx-studio autostart and started libs
This commit is contained in:
16
libs/default.nix
Normal file
16
libs/default.nix
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
mkAutostart = {
|
||||
pkgs,
|
||||
name,
|
||||
command,
|
||||
}: {
|
||||
source = "${
|
||||
pkgs.makeDesktopItem {
|
||||
name = "${name}-autostart";
|
||||
desktopName = "${name}-autostart";
|
||||
exec = command;
|
||||
noDisplay = true;
|
||||
}
|
||||
}/share/applications/${name}-autostart.desktop";
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user