2023-06-14 21:53:27 +02:00
|
|
|
package bookmarks
|
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
Parsed struct {
|
|
|
|
Links []struct {
|
|
|
|
Category string
|
|
|
|
Entries []struct {
|
2023-10-03 20:17:06 +02:00
|
|
|
Name string
|
|
|
|
Background bool
|
|
|
|
URL string
|
2023-06-14 21:53:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Applications []struct {
|
|
|
|
Category string
|
|
|
|
Entries []struct {
|
2023-10-03 20:17:06 +02:00
|
|
|
Name string
|
|
|
|
Icon string
|
|
|
|
Background bool
|
|
|
|
URL string
|
2023-06-14 21:53:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|