Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ if(BUILD_REFERENCE)
add_definitions(-DBUILD_REFERENCE=${BUILD_REFERENCE})
endif()

set(PLUGIN_LAUNCHER_STARTMODE "activated" CACHE STRING "Automatically start the plugin")
find_package(${NAMESPACE}Plugins REQUIRED)

add_library(${MODULE_NAME} SHARED
Expand Down
2 changes: 1 addition & 1 deletion Launcher.conf.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
autostart = "true"
startmode = "@PLUGIN_LAUNCHER_STARTMODE@"
2 changes: 1 addition & 1 deletion Launcher.config
Original file line number Diff line number Diff line change
@@ -1 +1 @@
set (autostart true)
set (startmode ${PLUGIN_LAUNCHER_STARTMODE})
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Plugin to "Launch" linux applications and scripts
"precondition":[
"Platform"
],
"autostart":true
"startmode":"activated"
}
```

Expand All @@ -30,7 +30,7 @@ Plugin to "Launch" linux applications and scripts
"precondition":[
"Platform"
],
"autostart":true,
"startmode":"activated",
"configuration": {
"command":"du"
}
Expand All @@ -47,7 +47,7 @@ Plugin to "Launch" linux applications and scripts
"precondition":[
"Platform"
],
"autostart":true,
"startmode":"activated",
"configuration": {
"command":"du",
"parameters": [
Expand Down Expand Up @@ -144,7 +144,7 @@ Note:
"precondition":[
"Platform"
],
"autostart":true,
"startmode":"activated",
"configuration": {
"command":"du",
"closetime":5
Expand Down