-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.yaml
More file actions
172 lines (144 loc) · 3.43 KB
/
Copy pathconfig.example.yaml
File metadata and controls
172 lines (144 loc) · 3.43 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
# SessionIntent - Example Configuration
# Copy this to ~/.config/sessionintent/config.yaml
# Current config version (for future migrations)
version: 1
# Global defaults for all modes
defaults:
ask_before_kill: true
reuse_workspaces: true
# Hardware-aware mode switching
# Modes in disable_modes will not appear on battery
hardware_profiles:
battery:
disable_modes: [gaming, video-editing, rendering]
plugged:
allow_all: true
# Define your session modes
modes:
# --- Browsing / Chilling Mode ---
browsing:
label: "Browsing / Chilling"
description: "Casual web browsing, streaming music"
# Firefox profile settings
firefox:
profile: chill
urls:
- https://reddit.com
- https://youtube.com
- https://news.ycombinator.com
# Workspace assignments
workspaces:
1:
- firefox
2:
- ytmdesktop
# --- Work / Research Mode ---
work:
label: "Work / Research"
description: "Coding, research, and productivity tools"
# Firefox profile for work
firefox:
profile: work
urls:
- https://github.com
- https://slack.com
# VSCode workspace
vscode:
workspace: "~/Work/CurrentProject.code-workspace"
workspaces:
1:
- firefox
- obsidian
- zotero
2:
- vscode
- terminal
3:
- gnome-pomodoro
- ytmdesktop
# --- Gaming Mode ---
gaming:
label: "Gaming"
description: "Game sessions with Discord in background"
workspaces:
1:
- lutris
- steam
2:
discord:
server: none
background: true
# --- Contributor Mode ---
contributor:
label: "Contributor Mode"
description: "Open source contributions"
firefox:
profile: contributor
urls:
- https://github.com/fazrigading/yourproject
- https://github.com/fazrigading/yourproject/issues
- https://github.com/fazrigading/yourproject/pulls
vscode:
workspace: "~/Work/YourProject.code-workspace"
discord:
server: YourProject
workspaces:
1:
- firefox
2:
- vscode
3:
- discord
# --- Tinkering Mode ---
tinkering:
label: "Linux Tweaking"
description: "System administration and learning"
workspaces:
1:
firefox:
urls:
- https://archlinux.org
- https://www.youtube.com
2:
- extension-manager
- terminal
# --- Low Power Mode ---
low-power:
label: "Battery Saver"
description: "Lightweight setup for battery power"
# Only available on battery
hardware:
battery_only: true
firefox:
profile: minimal
urls: []
workspaces:
1:
- firefox
- obsidian
- terminal
# --- Presentation Mode ---
presentation:
label: "Presentation"
description: "Focused, distraction-free"
firefox:
profile: presentation
urls:
- https://example.com/presentation
settings:
notifications: "muted"
workspaces:
1:
- firefox
# --- Debug Mode ---
debug:
label: "Debug"
description: "Troubleshooting and monitoring"
workspaces:
1:
- terminal
- firefox:
urls: ["https://localhost:8080"]
2:
- gnome-system-log
- wireshark