-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands.yaml
More file actions
63 lines (53 loc) · 1.33 KB
/
Copy pathcommands.yaml
File metadata and controls
63 lines (53 loc) · 1.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
# Remote PC Controller Commands Configuration
# Each command has:
# id: Unique identifier for the command
# name: Display name
# command_type: Type of command (shell, volume, open_directory, focus_app, keybind)
# + type-specific fields
# Volume Control Examples
- id: volume_up
name: Volume Up
command_type: volume
volume_direction: up
volume_step: 5
- id: volume_down
name: Volume Down
command_type: volume
volume_direction: down
volume_step: 5
- id: mute_toggle
name: Toggle Mute
command_type: volume
volume_direction: mute
# Open Directory Examples
- id: open_downloads
name: Open Downloads
command_type: open_directory
directory_path: ~/Downloads
- id: open_documents
name: Open Documents
command_type: open_directory
directory_path: ~/Documents
# Focus Application Examples
- id: focus_browser
name: Focus Browser
command_type: focus_app
app_name: Safari
- id: focus_terminal
name: Focus Terminal
command_type: focus_app
app_name: Terminal
# Keyboard Shortcut Examples
- id: cmd_space
name: Spotlight Search
command_type: keybind
keybind: cmd+space
- id: screenshot
name: Screenshot
command_type: keybind
keybind: cmd+shift+3
# Shell Command Examples (legacy format still supported)
- id: lock_screen
name: Lock Screen
command_type: shell
command: pmset displaysleepnow