Skip to content
This repository has been archived by the owner on Sep 22, 2022. It is now read-only.

Commit

Permalink
updated readme and descriptions of some actions
Browse files Browse the repository at this point in the history
  • Loading branch information
kvnxiao committed Nov 15, 2017
1 parent 80c1ba1 commit 33a7fad
Show file tree
Hide file tree
Showing 3 changed files with 48 additions and 6 deletions.
48 changes: 45 additions & 3 deletions README.md
Expand Up @@ -26,15 +26,57 @@ and move it to your `InstalledPackage` folder located at:

## Usage

Type in the list of keywords to activate the corresponding function:
Type in a valid keyword to activate the corresponding function:

**System Actions**

| Keyword | Description |
|----------|--------------|
|Lock|Locks the computer and brings you to the lock screen|
|Shutdown|Shuts down the computer|
|Restart|Restarts the computer|
|Hibernate|Puts the computer into hibernate mode|
|Sleep|Puts the computer to sleep|
|Logout|Logs out the current user|
|Empty Recycle Bin|Empty the Recycle Bin|

**Explorer Shell Shortcuts**

| Keyword | Description |
|----------|--------------|
| | |
|Recycle Bin|Opens the Recycle Bin folder|
|AppData|Opens the user's AppData folder|
|LocalAppData|Opens the user's AppData/Local folder|
|LocalLowAppData|Opens the user's AppData/LocalLow folder|
|Desktop|Opens the user's Desktop folder|
|Downloads|Opens the user's Downloads folder|
|Documents|Opens the user's Documents folder|

**Windows Settings Shortcuts (Win10 only)**

| Keyword | Description |
|----------|--------------|
|Settings Panel|Opens the Settings application|
|System Settings|Opens the system settings panel|
|Display|Opens the display settings panel|
|Notification & Actions|Opens the notification & actions panel|
|Battery|Opens the battery settings panel|
|Bluetooth & other devices|Opens the Bluetooth & other devices panel|
|Printers & Scanners|Opens the printers & scanners panel|
|Phone & mobile devices|Opens the mobile devices panel|
|Background|Opens the background personalization panel|
|Lock screen|Opens the lock screen personalization panel|
|Date & Time|Opens the date & time panel|
|Region & Language|Opens the region & language panel|
|Accounts|Opens the accounts, email, sync panel|
|Update & Security|Opens the update & security panel|


## Change Log

**TBD**
**1.0.0 - Initial Release**
- Initial release of the plugin which contains system actions,
explorer shell shortcuts, and windows settings shortcuts for Windows 10


## License
Expand Down
4 changes: 2 additions & 2 deletions src/shell_actions.py
Expand Up @@ -48,15 +48,15 @@ def __init__(self, winsys):
# Downloads
self.actions[keyword.SHELL_DOWNLOADS] = action.Action(
keyword.SHELL_DOWNLOADS,
"Opens the Downloads folder",
"Opens the user's Downloads folder",
winsys.load_resource_image("downloads.png"),
shell_func.open_downloads
)

# Documents
self.actions[keyword.SHELL_DOCUMENTS] = action.Action(
keyword.SHELL_DOCUMENTS,
"Opens the Documents folder",
"Opens the user's Documents folder",
winsys.load_resource_image("documents.png"),
shell_func.open_documents
)
2 changes: 1 addition & 1 deletion src/system_actions.py
Expand Up @@ -16,7 +16,7 @@ def __init__(self, winsys):
# Lock
self.actions[keyword.SYSTEM_LOCK] = action.Action(
keyword.SYSTEM_LOCK,
"Locks the computer and brings you to the Windows Lockscreen",
"Locks the computer and brings you to the lock screen",
winsys.load_resource_image("lock.png"),
sys_func.lock
)
Expand Down

0 comments on commit 33a7fad

Please sign in to comment.