-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbookmarks.toml.example
52 lines (41 loc) · 1.25 KB
/
bookmarks.toml.example
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
chooser = "rofi -dmenu"
[types]
[types.url]
open_with = { default = "xdg-open", bash = "w3m {}" }
[types.folder]
open_with = { default = "alacritty --working-directory {} -t devterm", bash = "cd {}" }
[types.google]
open_with = { default = "xdg-open google.de/s=?{}", bash = "googler {}" }
[types.snippet]
# TODO: READLINE_POINT is set with 9999 to cheat end of line, add a template language
open_with = { default = 'false', bash = 'READLINE_LINE="{}"; READLINE_POINT=9999' }
[[bookmarks]]
content = 'ls -latr'
description = 'list files in current directory'
tags = ['ls', 'files', 'dev', 'snippet']
type = 'snippet'
[[bookmarks]]
content = "https://www.youtube.com/watch?v=Q0oIoR9mLwc"
description = "Red Hot Chili Peppers - Dark Necessities (Official Music Video)"
tags = ["music", "video"]
type = "url"
[[bookmarks]]
content = "~/dev"
description = "My development folder"
tags = ["dev", "folder"]
type = "folder"
[[bookmarks]]
content = "/tmp"
description = "Temporary folder"
tags = ["tmp", "folder"]
type = "folder"
[[bookmarks]]
content = "/etc"
description = "System configuration folder"
tags = ["etc", "folder"]
type = "folder"
[[bookmarks]]
content = "stackoverflow go"
description = "Stackoverflow search for go"
tags = ["stackoverflow", "go"]
type = "google"