c8c93b2a70
This replicates the most basic functionality of the existing gnome-shell-extension-tool, albeit using a git/gio/gsettings style command interface rather than plain options; this will allow us to implement more complex commands that have options on their own in the future. https://gitlab.gnome.org/GNOME/gnome-shell/issues/1234
33 lines
958 B
C
33 lines
958 B
C
/* common.h
|
|
*
|
|
* Copyright 2018 Florian Müllner <fmuellner@gnome.org>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* SPDX-License-Identifier: GPL-3.0-or-later
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <glib.h>
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
void show_help (GOptionContext *context,
|
|
const char *message);
|
|
|
|
GSettings *get_shell_settings (void);
|
|
|
|
G_END_DECLS
|