This repository was archived by the owner on Dec 26, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[R] Added: GTK dialogs, Menu Launcher, Manpage, timeout property
- Loading branch information
Nico Rittstieg
committed
Dec 27, 2018
1 parent
15e3380
commit e617f0c
Showing
15 changed files
with
670 additions
and
162 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
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[Desktop Entry] | ||
Name=Restore Desktop | ||
Comment=Restore virtual desktop | ||
Exec=rvd --gui | ||
Icon=desktop | ||
Terminal=false | ||
Type=Application | ||
StartupNotify=true | ||
Categories=Utility; | ||
Keywords=desktop;workspace;wmctrl; |
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
.TH rvd 1 "23 Dezember 2018" "0.1" "rvd man page" | ||
.\"--------------------------------------------------------------- | ||
.SH NAME | ||
.\"--------------------------------------------------------------- | ||
rvd \- restore virtual desktop | ||
.\"--------------------------------------------------------------- | ||
.SH SYNOPSIS | ||
.\"--------------------------------------------------------------- | ||
.B rvd | ||
.RI [ " options " ] ... | ||
.\"--------------------------------------------------------------- | ||
.SH DESCRIPTION | ||
.\"--------------------------------------------------------------- | ||
.B rvd | ||
loads stored desktop profiles. | ||
The profiles must be stored in the directory ~/.config/savedesktop. | ||
|
||
.B OPTIONS | ||
|
||
.TP | ||
\fB\-d\fR, \fB\-\-desktop\fR | ||
desktop number from 0 to n (default is 0) | ||
|
||
.TP | ||
\fB\-g\fR, \fB\-\-gui\fR | ||
gui mode, gtk interface based on yad and zenity | ||
|
||
.TP | ||
\fB\-p\fR, \fB\-\-profile\fR | ||
profile name with default ~/.config/savedesktop/default.json | ||
|
||
.\"--------------------------------------------------------------- | ||
.SH EXAMPLES | ||
.\"--------------------------------------------------------------- | ||
|
||
Restore second desktop with profile 'demo' | ||
|
||
rvd -d 1 -p demo | ||
|
||
Show user interface | ||
|
||
rvd --gui | ||
|
||
.\"--------------------------------------------------------------- | ||
.SH AUTHOR | ||
.\"--------------------------------------------------------------- | ||
SD was written by Nico Rittstieg. | ||
|
||
https://github.com/nrittsti/savedesktop | ||
.\"--------------------------------------------------------------- | ||
.SH SEE ALSO | ||
.\"--------------------------------------------------------------- | ||
.BR svd (1) | ||
.BR wmctrl (1) | ||
.BR xdotool (1) | ||
.BR xwininfo (1) |
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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
[Desktop Entry] | ||
Name=Save Desktop | ||
Comment=Save virtual desktop | ||
Exec=svd --gui | ||
Icon=desktop | ||
Terminal=false | ||
Type=Application | ||
StartupNotify=true | ||
Categories=Utility; | ||
Keywords=desktop;workspace;wmctrl; |
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 |
---|---|---|
@@ -0,0 +1,77 @@ | ||
.TH svd 1 "23 Dezember 2018" "0.1" "svd man page" | ||
.\"--------------------------------------------------------------- | ||
.SH NAME | ||
.\"--------------------------------------------------------------- | ||
svd \- save virtual desktop | ||
.\"--------------------------------------------------------------- | ||
.SH SYNOPSIS | ||
.\"--------------------------------------------------------------- | ||
.B svd | ||
.RI [ " options " ] ... | ||
.\"--------------------------------------------------------------- | ||
.SH DESCRIPTION | ||
.\"--------------------------------------------------------------- | ||
.B svd | ||
reads geometry information and properties from all running desktop applications | ||
and saves the collected data to disk. Profile files are stored in '~/.config/savedesktop'. | ||
The profiles are saved in json format and can be easily customized. | ||
|
||
[ | ||
{ | ||
"x": 403, | ||
"y": 219, | ||
"width": 1094, | ||
"height": 599, | ||
"cmd": [ | ||
"nemo" | ||
], | ||
"state": "" | ||
} | ||
] | ||
|
||
The following state properties are supported: | ||
maximized_vert, maximized_horz, shaded, hidden, fullscreen. | ||
|
||
.B OPTIONS | ||
|
||
.TP | ||
\fB\-d\fR, \fB\-\-desktop\fR | ||
desktop number from 0 to n (default is 0) | ||
|
||
.TP | ||
\fB\-g\fR, \fB\-\-gui\fR | ||
gui mode, gtk interface based on yad and zenity | ||
|
||
.TP | ||
\fB\-o\fR, \fB\-\-open\fR | ||
open saved profile with xdg-open | ||
|
||
.TP | ||
\fB\-p\fR, \fB\-\-profile\fR | ||
profile name with default ~/.config/savedesktop/default.json | ||
|
||
.\"--------------------------------------------------------------- | ||
.SH EXAMPLES | ||
.\"--------------------------------------------------------------- | ||
|
||
Save second desktop to profile 'demo' | ||
|
||
svd -d 1 -p demo | ||
|
||
Show user interface | ||
|
||
svd --gui | ||
|
||
.\"--------------------------------------------------------------- | ||
.SH AUTHOR | ||
.\"--------------------------------------------------------------- | ||
svd was written by Nico Rittstieg. | ||
|
||
https://github.com/nrittsti/savedesktop | ||
.\"--------------------------------------------------------------- | ||
.SH SEE ALSO | ||
.\"--------------------------------------------------------------- | ||
.BR rd (1) | ||
.BR wmctrl (1) | ||
.BR xdotool (1) | ||
.BR xwininfo (1) |
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
Oops, something went wrong.