home *** CD-ROM | disk | FTP | other *** search
- /*
- ** OpenApps_main.m
- ** Larry Shupe
- ** April 1990
- **
- ** A one line program to open the user's ~/Apps directory from the Workspace.
- ** Put this application in your dock and create symbolic links in your ~/Apps
- ** directory to all your most used programs. Doing this will give you quick
- ** access to programs that are not in your dock. You can create a symbolic
- ** link in the Workspace by control dragging a file's icon into your ~/Apps
- ** folder.
- */
-
- #import <stdlib.h>
-
- void main(int argc, char *argv[])
- {
- system("open ~/Apps");
- exit(0);
- }
-