-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.json.example
More file actions
72 lines (72 loc) · 1.6 KB
/
config.json.example
File metadata and controls
72 lines (72 loc) · 1.6 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
64
65
66
67
68
69
70
71
72
{
"menu_items": [
{
"label": "Terminal",
"command": "x-terminal-emulator",
"icon": "utilities-terminal"
},
{
"label": "File Manager",
"command": "xdg-open ~",
"icon": "system-file-manager"
},
{
"label": "Web Browser",
"command": "xdg-open https://",
"icon": "web-browser"
},
{"separator": true},
{
"label": "App Launcher",
"command": "wofi --show drun",
"icon": "view-grid-symbolic"
},
{"separator": true},
{
"label": "Tools",
"submenu": [
{
"label": "Screenshot",
"command": "grim -g \"$(slurp)\" ~/Pictures/screenshot.png",
"icon": "applets-screenshooter"
},
{
"label": "Color Picker",
"command": "gcolor3",
"icon": "color-select-symbolic"
},
{
"label": "System Monitor",
"command": "gnome-system-monitor",
"icon": "utilities-system-monitor"
}
]
},
{
"label": "Settings",
"submenu": [
{
"label": "Wayfire Config",
"command": "wcm",
"icon": "preferences-system"
},
{
"label": "Display Settings",
"command": "wdisplays",
"icon": "preferences-desktop-display"
},
{
"label": "Sound Settings",
"command": "pavucontrol",
"icon": "multimedia-volume-control"
}
]
},
{"separator": true},
{
"label": "Power Menu",
"command": "wlogout",
"icon": "system-shutdown"
}
]
}