2019-02-08 16:19:16 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
#include <AK/AKString.h>
|
|
|
|
#include <AK/StringBuilder.h>
|
|
|
|
#include <AK/Vector.h>
|
|
|
|
#include <AK/FileSystemPath.h>
|
2019-05-17 15:35:30 +02:00
|
|
|
#include <LibCore/CArgsParser.h>
|
2019-03-21 15:54:19 +01:00
|
|
|
#include <LibGUI/GDesktop.h>
|
|
|
|
#include <LibGUI/GApplication.h>
|
2019-02-08 16:19:16 +01:00
|
|
|
|
2019-05-17 15:06:06 +02:00
|
|
|
static int handle_show_all()
|
2019-02-08 16:19:16 +01:00
|
|
|
{
|
|
|
|
DIR* dirp = opendir("/res/wallpapers");
|
|
|
|
if (!dirp) {
|
|
|
|
perror("opendir");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
while (auto* de = readdir(dirp)) {
|
|
|
|
if (de->d_name[0] == '.')
|
|
|
|
continue;
|
|
|
|
printf("%s\n", de->d_name);
|
|
|
|
}
|
|
|
|
closedir(dirp);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-05-17 15:06:06 +02:00
|
|
|
static int handle_show_current()
|
2019-02-08 16:19:16 +01:00
|
|
|
{
|
2019-03-21 15:54:19 +01:00
|
|
|
printf("%s\n", GDesktop::the().wallpaper().characters());
|
2019-02-08 16:19:16 +01:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2019-05-17 15:06:06 +02:00
|
|
|
static int handle_set_pape(const String& name)
|
2019-02-08 16:19:16 +01:00
|
|
|
{
|
|
|
|
StringBuilder builder;
|
|
|
|
builder.append("/res/wallpapers/");
|
|
|
|
builder.append(name);
|
2019-03-21 15:54:19 +01:00
|
|
|
String path = builder.to_string();
|
|
|
|
if (!GDesktop::the().set_wallpaper(path)) {
|
|
|
|
fprintf(stderr, "pape: Failed to set wallpaper %s\n", path.characters());
|
|
|
|
return 1;
|
|
|
|
}
|
2019-02-08 16:19:16 +01:00
|
|
|
return 0;
|
2019-05-17 15:06:06 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
int main(int argc, char** argv)
|
|
|
|
{
|
|
|
|
GApplication app(argc, argv);
|
|
|
|
|
2019-05-17 15:35:30 +02:00
|
|
|
CArgsParser args_parser("pape");
|
2019-05-17 15:06:06 +02:00
|
|
|
|
|
|
|
args_parser.add_arg("a", "show all wallpapers");
|
|
|
|
args_parser.add_arg("c", "show current wallpaper");
|
2019-05-17 15:17:43 +02:00
|
|
|
args_parser.add_single_value("name");
|
2019-05-17 15:06:06 +02:00
|
|
|
|
2019-05-17 15:35:30 +02:00
|
|
|
CArgsParserResult args = args_parser.parse(argc, (const char**)argv);
|
2019-05-17 15:06:06 +02:00
|
|
|
|
|
|
|
if (args.is_present("a"))
|
|
|
|
return handle_show_all();
|
|
|
|
else if (args.is_present("c"))
|
|
|
|
return handle_show_current();
|
|
|
|
|
|
|
|
Vector<String> values = args.get_single_values();
|
|
|
|
if (values.size() != 1) {
|
|
|
|
args_parser.print_usage();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return handle_set_pape(values[0]);
|
2019-02-08 16:19:16 +01:00
|
|
|
}
|
2019-05-17 15:06:06 +02:00
|
|
|
|