diff --git a/README.md b/README.md index b5d269f..1f0b08f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/src/shell_actions.py b/src/shell_actions.py index 069d091..ffd21ba 100644 --- a/src/shell_actions.py +++ b/src/shell_actions.py @@ -48,7 +48,7 @@ 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 ) @@ -56,7 +56,7 @@ def __init__(self, winsys): # 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 ) diff --git a/src/system_actions.py b/src/system_actions.py index c1b4ec6..f2b73f5 100644 --- a/src/system_actions.py +++ b/src/system_actions.py @@ -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 )