bc53043064
Use the D-Bus call on the Plasma Desktop shell to create a cli helper tool allowing you to add a remote widgets based on its URL. So something like "plasma-remote-helper plasma://host:port/name" will add the plasmoid "name" exported from "host" to your current activity.
11 lines
253 B
CMake
11 lines
253 B
CMake
set(plasma_remote_helper_SRCS
|
|
main.cpp
|
|
)
|
|
|
|
kde4_add_executable(plasma-remote-helper ${plasma_remote_helper_SRCS})
|
|
|
|
target_link_libraries(plasma-remote-helper ${KDE4_KDEUI_LIBS})
|
|
|
|
install(TARGETS plasma-remote-helper ${INSTALL_TARGETS_DEFAULT_ARGS})
|
|
|