summaryrefslogtreecommitdiff
path: root/uio.py
diff options
context:
space:
mode:
Diffstat (limited to 'uio.py')
-rw-r--r--uio.py22
1 files changed, 15 insertions, 7 deletions
diff --git a/uio.py b/uio.py
index c669a11..f00b2ca 100644
--- a/uio.py
+++ b/uio.py
@@ -305,14 +305,8 @@ class PrintSystem:
self.print_table([ \
[bold + '-v', bullet + space + 'Verbose Mode'], \
[bold + '-nc', bullet + space + 'No Colors'], \
- [bold + '-help', bullet + space + 'See this screen'], \
- [bold + '-list', bullet + space + 'List Profiles'], \
[bold + '-version', bullet + space + 'Version Information']])
- self.print_line('')
- self.print_line(highlight + space + 'Usage Examples:' + reset)
- self.print_table([ \
- [bold + 'uprofile', bullet + space + 'Activates Folder Profile. Fallback to user profile.'], \
- [bold + 'uprofile <profile>', bullet + space + 'See Details on <profile>']])
+
class ProfilePrintSystem(PrintSystem):
@@ -375,6 +369,20 @@ class ProfilePrintSystem(PrintSystem):
self.print_line(bold + lime + 'Usage:' + reset + ' uprofile <options> ' + profile_name \
+ space + action_name + space + options)
+
+ def print_options(self):
+ self.print_line(highlight + space + 'Options:' + reset)
+ self.print_table([ \
+ [bold + '-v', bullet + space + 'Verbose Mode'], \
+ [bold + '-nc', bullet + space + 'No Colors'], \
+ [bold + '-help', bullet + space + 'See this screen'], \
+ [bold + '-list', bullet + space + 'List Profiles'], \
+ [bold + '-version', bullet + space + 'Version Information']])
+ self.print_line('')
+ self.print_line(highlight + space + 'Usage Examples:' + reset)
+ self.print_table([ \
+ [bold + 'uprofile', bullet + space + 'Activates Folder Profile. Fallback to user profile.'], \
+ [bold + 'uprofile <profile>', bullet + space + 'See Details on <profile>']])
filesystem = FileSystem()
printsystem = PrintSystem()