-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
130 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,14 +19,14 @@ on the fly without reloading the daemon. | |
|
||
### Install | ||
|
||
Just simply copy the desk-changer@eric.gach.gmail.com folder to your `~/.local/share/gnome-shell/extensions/` folder or the | ||
system `/usr/share/gnome-shell/extensions/` folder. | ||
Just simply copy the desk-changer@eric.gach.gmail.com folder to your `~/.local/share/gnome-shell/extensions/` | ||
folder or the system `/usr/share/gnome-shell/extensions/` folder. | ||
|
||
`cp -r [email protected]/ ~/.local/share/gnome-shell/extensions/` | ||
>$ cp -r [email protected]/ ~/.local/share/gnome-shell/extensions/ | ||
or | ||
|
||
`cp -r [email protected]/ /usr/share/gnome-shell/extensions/` | ||
>\# cp -r [email protected]/ /usr/share/gnome-shell/extensions/ | ||
Then restart gnome-shell and enable the extension. Once it is enabled, you can use the extension to start the daemon | ||
with the built in toggle switch. | ||
|
@@ -35,7 +35,8 @@ with the built in toggle switch. | |
|
||
### Daemon | ||
|
||
The daemon is simply a Gio.Application running as a service. To view more information about the daemon, run it from the command line with the `-h` or `--help` option. | ||
The daemon is simply a Gio.Application running as a service. To view more information about the daemon, run it from the | ||
command line with the `-h` or `--help` option. | ||
|
||
>$ ./desk-changer-daemon.py -h | ||
>Usage: | ||
|
@@ -45,3 +46,17 @@ The daemon is simply a Gio.Application running as a service. To view more inform | |
> -h, --help Show help options | ||
> --help-all Show all help options | ||
> | ||
--- | ||
|
||
### dconf-editor | ||
|
||
To view the settings in dconf-editor, just use the `GSETTINGS_SCHEMA_DIR=` environment variable to open dconf-editor | ||
with the extensions schema available to the editor. | ||
|
||
>$ GSETTINGS_SCHEMA_DIR=~/.local/share/gnome-shell/extensions/desk-[email protected]/schemas/ dconf-editor` | ||
Then navigate to `org.gnome.shell.extensions.desk-changer` and you will see all of the available settings for the | ||
extension and daemon. | ||
|
||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"description": "Simple wallpaper changer with multiple profile support.", | ||
"description": "Simple wallpaper changer with multiple profile support. Supports integration into the system menu or its own panel icon. The daemon is written in Python and runs independently of the extension.", | ||
"name": "Desk Changer", | ||
"shell-version": [ | ||
"3.8", | ||
|
@@ -16,5 +16,5 @@ | |
], | ||
"url": "https://github.com/BigE/desk-changer/", | ||
"uuid": "[email protected]", | ||
"version": "19" | ||
"version": "20" | ||
} |
Oops, something went wrong.