mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 19:32:45 +00:00 
			
		
		
		
	 f2546d15ce
			
		
	
	
		f2546d15ce
		
	
	
	
	
		
			
			This is a tiny bar at the left of the taskbar where you can put your most used apps to launch them with a single click. In a way, it's another replacement for the Launcher, in addition to the app menu. Unlike the launcher and the menu, it's not meant to be the primary way to launch apps; it's only a faster way to launch a few most often used utilities.
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			309 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| #include "TaskbarWindow.h"
 | |
| #include <LibGUI/GApplication.h>
 | |
| #include <signal.h>
 | |
| 
 | |
| int main(int argc, char** argv)
 | |
| {
 | |
|     GApplication app(argc, argv);
 | |
|     TaskbarWindow window;
 | |
|     window.show();
 | |
| 
 | |
|     signal(SIGCHLD, [](int signo) {
 | |
|         (void)signo;
 | |
|         wait(nullptr);
 | |
|     });
 | |
| 
 | |
|     return app.exec();
 | |
| }
 |