Skip to content

Commit

Permalink
Userland: Rename *.MenuApplet => *.Applet
Browse files Browse the repository at this point in the history
These are no longer displayed in the menu, so it doesn't make sense to
call them menu applets. :^)
  • Loading branch information
awesomekling committed Apr 4, 2021
1 parent 136588e commit 23cc88f
Show file tree
Hide file tree
Showing 20 changed files with 40 additions and 40 deletions.
16 changes: 8 additions & 8 deletions Base/etc/SystemServer.ini
Original file line number Diff line number Diff line change
Expand Up @@ -75,33 +75,33 @@ SocketPermissions=660
Priority=low
User=clipboard

[CPUGraph.MenuApplet]
Executable=/bin/ResourceGraph.MenuApplet
[CPUGraph.Applet]
Executable=/bin/ResourceGraph.Applet
Arguments=--cpu --name=CPUGraph --color=#00bb00
Priority=low
KeepAlive=1
User=anon

[MemoryGraph.MenuApplet]
Executable=/bin/ResourceGraph.MenuApplet
[MemoryGraph.Applet]
Executable=/bin/ResourceGraph.Applet
Arguments=--memory --name=MemoryGraph --color=#00bbbb
Priority=low
KeepAlive=1
User=anon

[Audio.MenuApplet]
[Audio.Applet]
Priority=low
KeepAlive=1
User=anon

[Network.MenuApplet]
Executable=/bin/Network.MenuApplet
[Network.Applet]
Executable=/bin/Network.Applet
Arguments=--name=Network
Priority=low
KeepAlive=1
User=anon

[ClipboardHistory.MenuApplet]
[ClipboardHistory.Applet]
Priority=low
KeepAlive=1
User=anon
Expand Down
6 changes: 6 additions & 0 deletions Userland/Applets/Audio/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
set(SOURCES
main.cpp
)

serenity_app(Audio.Applet ICON audio-volume-high)
target_link_libraries(Audio.Applet LibGUI LibGfx LibAudio)
File renamed without changes.
File renamed without changes.
7 changes: 7 additions & 0 deletions Userland/Applets/ClipboardHistory/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
set(SOURCES
ClipboardHistoryModel.cpp
main.cpp
)

serenity_app(ClipboardHistory.Applet ICON edit-copy)
target_link_libraries(ClipboardHistory.Applet LibGUI LibCore LibGfx)
File renamed without changes.
6 changes: 6 additions & 0 deletions Userland/Applets/Network/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
set(SOURCES
main.cpp
)

serenity_app(Network.Applet ICON network)
target_link_libraries(Network.Applet LibGUI LibCore LibGfx)
File renamed without changes.
6 changes: 6 additions & 0 deletions Userland/Applets/ResourceGraph/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
set(SOURCES
main.cpp
)

serenity_bin(ResourceGraph.Applet)
target_link_libraries(ResourceGraph.Applet LibGUI LibCore LibGfx)
File renamed without changes.
6 changes: 6 additions & 0 deletions Userland/Applets/UserName/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
set(SOURCES
main.cpp
)

serenity_bin(UserName.Applet)
target_link_libraries(UserName.Applet LibGUI LibGfx)
File renamed without changes.
2 changes: 1 addition & 1 deletion Userland/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ add_subdirectory(DevTools)
add_subdirectory(DynamicLoader)
add_subdirectory(Games)
add_subdirectory(Libraries)
add_subdirectory(MenuApplets)
add_subdirectory(Applets)
add_subdirectory(Services)
add_subdirectory(Shell)
add_subdirectory(Tests)
Expand Down
6 changes: 0 additions & 6 deletions Userland/MenuApplets/Audio/CMakeLists.txt

This file was deleted.

7 changes: 0 additions & 7 deletions Userland/MenuApplets/ClipboardHistory/CMakeLists.txt

This file was deleted.

6 changes: 0 additions & 6 deletions Userland/MenuApplets/Network/CMakeLists.txt

This file was deleted.

6 changes: 0 additions & 6 deletions Userland/MenuApplets/ResourceGraph/CMakeLists.txt

This file was deleted.

6 changes: 0 additions & 6 deletions Userland/MenuApplets/UserName/CMakeLists.txt

This file was deleted.

0 comments on commit 23cc88f

Please sign in to comment.