mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-26 09:30:24 +00:00
Applets: Rename DesktopPicker => WorkspacePicker
This is consistent with the rest of the system.
This commit is contained in:
parent
03b6ff2bf0
commit
51484bec82
Notes:
sideshowbarker
2024-07-18 00:48:06 +09:00
Author: https://github.com/awesomekling Commit: https://github.com/SerenityOS/serenity/commit/51484bec825
8 changed files with 17 additions and 17 deletions
|
@ -32,7 +32,7 @@ DoubleClickSpeed=250
|
|||
Mode=stretch
|
||||
|
||||
[Applet]
|
||||
Order=DesktopPicker,CPUGraph,MemoryGraph,Network,ClipboardHistory,Audio
|
||||
Order=WorkspacePicker,CPUGraph,MemoryGraph,Network,ClipboardHistory,Audio
|
||||
|
||||
[Workspaces]
|
||||
Rows=2
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
[DesktopPicker.Applet]
|
||||
[WorkspacePicker.Applet]
|
||||
Priority=low
|
||||
KeepAlive=true
|
||||
|
||||
|
|
|
@ -2,4 +2,4 @@ add_subdirectory(Audio)
|
|||
add_subdirectory(ClipboardHistory)
|
||||
add_subdirectory(Network)
|
||||
add_subdirectory(ResourceGraph)
|
||||
add_subdirectory(DesktopPicker)
|
||||
add_subdirectory(WorkspacePicker)
|
||||
|
|
|
@ -1,13 +0,0 @@
|
|||
serenity_component(
|
||||
DesktopPicker.Applet
|
||||
REQUIRED
|
||||
TARGETS DesktopPicker.Applet
|
||||
)
|
||||
|
||||
set(SOURCES
|
||||
DesktopStatusWindow.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_bin(DesktopPicker.Applet)
|
||||
target_link_libraries(DesktopPicker.Applet LibGUI LibCore LibGfx)
|
13
Userland/Applets/WorkspacePicker/CMakeLists.txt
Normal file
13
Userland/Applets/WorkspacePicker/CMakeLists.txt
Normal file
|
@ -0,0 +1,13 @@
|
|||
serenity_component(
|
||||
WorkspacePicker.Applet
|
||||
REQUIRED
|
||||
TARGETS WorkspacePicker.Applet
|
||||
)
|
||||
|
||||
set(SOURCES
|
||||
DesktopStatusWindow.cpp
|
||||
main.cpp
|
||||
)
|
||||
|
||||
serenity_bin(WorkspacePicker.Applet)
|
||||
target_link_libraries(WorkspacePicker.Applet LibGUI LibCore LibGfx)
|
|
@ -30,7 +30,7 @@ int main(int argc, char** argv)
|
|||
}
|
||||
|
||||
auto window = DesktopStatusWindow::construct();
|
||||
window->set_title("DesktopPicker");
|
||||
window->set_title("WorkspacePicker");
|
||||
window->resize(28, 16);
|
||||
window->show();
|
||||
window->make_window_manager(WindowServer::WMEventMask::WorkspaceChanges);
|
Loading…
Reference in a new issue