|
1 | 1 | import argparse |
2 | 2 |
|
3 | | -from caelestia.subcommands import clipboard, emoji, pip, record, scheme, screenshot, shell, toggle, wallpaper, wsaction |
| 3 | +from caelestia.subcommands import clipboard, emoji, pip, record, scheme, screenshot, shell, toggle, wallpaper |
4 | 4 | from caelestia.utils.paths import wallpapers_dir |
5 | 5 | from caelestia.utils.scheme import get_scheme_names, scheme_variants |
6 | 6 | from caelestia.utils.wallpaper import get_wallpaper |
@@ -35,19 +35,6 @@ def parse_args() -> (argparse.ArgumentParser, argparse.Namespace): |
35 | 35 | "workspace", choices=["communication", "music", "sysmon", "specialws", "todo"], help="the workspace to toggle" |
36 | 36 | ) |
37 | 37 |
|
38 | | - # Create parser for workspace-action opts |
39 | | - ws_action_parser = command_parser.add_parser( |
40 | | - "workspace-action", help="execute a Hyprland workspace dispatcher in the current group" |
41 | | - ) |
42 | | - ws_action_parser.set_defaults(cls=wsaction.Command) |
43 | | - ws_action_parser.add_argument( |
44 | | - "-g", "--group", action="store_true", help="whether to execute the dispatcher on a group" |
45 | | - ) |
46 | | - ws_action_parser.add_argument( |
47 | | - "dispatcher", choices=["workspace", "movetoworkspace"], help="the dispatcher to execute" |
48 | | - ) |
49 | | - ws_action_parser.add_argument("workspace", type=int, help="the workspace to pass to the dispatcher") |
50 | | - |
51 | 38 | # Create parser for scheme opts |
52 | 39 | scheme_parser = command_parser.add_parser("scheme", help="manage the colour scheme") |
53 | 40 | scheme_command_parser = scheme_parser.add_subparsers(title="subcommands") |
|
0 commit comments