lp://staging/~osomon/unity/dash-custom-home-screen
- Get this branch:
- bzr branch lp://staging/~osomon/unity/dash-custom-home-screen
Branch merges
- Olivier Tilloy: Disapprove
- Gord Allott (community): Needs Information
-
Diff: 387 lines (+254/-59)4 files modifiedplugins/unityshell/src/JSONParser.cpp (+13/-0)
plugins/unityshell/src/JSONParser.h (+4/-0)
plugins/unityshell/src/PlacesHomeView.cpp (+233/-59)
plugins/unityshell/src/PlacesHomeView.h (+4/-0)
Related bugs
Bug #785840: Home dash icons need to be customizable | Undecided | Won't Fix |
Related blueprints
Branch information
Recent revisions
- 1740. By Olivier Tilloy
-
Allow customizing the dash’s home screen.
The contents of the custom home screen are described in a JSON file called HomeShortcutsCu
stomized. json. The file is looked for in the following locations in decreasing order of priority:
- $XDG_CONFIG_HOME/unity/ (defaults to $HOME/. config/ unity/)
- $DIR/unity/ for $DIR in $XDG_CONFIG_DIRSThe syntax of the file is as follows:
============== ======= ======= ======= ======= ======= ======= ======= ======= ====
{
"shortcut1": {
"source": $source,
"name": $name,
"name[fr]": $name_in_french,
[…]
"icon": $icon
},
"shortcut2": {
[…]
},
[…]
}
============== ======= ======= ======= ======= ======= ======= ======= ======= ==== The source attribute may either be a desktop file (full path or just its basename if it is located in a standard directory), or a lens file (basename only). This attribute is mandatory.
The 'name' attribute is optional. If present, it will override the default display name as advertised by the desktop file or by the lens. The name can be localized in several languages using the square brackets suffix notation, in which case the locale matching the system’s will be used, defaulting to the untranslated 'name' attribute if necessary.
The 'icon' attribute is optional. If present, it will override the default icon as advertised by the desktop file or by the lens. It should be a full path name.
If the source is a lens, the optional 'filter' attribute allows specifying a filter in the form "$name:$value", e.g. "type:videos" for the files lens.
If the source is a lens, the optional 'section' attribute allows specifying a section number (an integer starting at index 0).
Branch metadata
- Branch format:
- Branch format 7
- Repository format:
- Bazaar repository format 2a (needs bzr 1.16 or later)
- Stacked on:
- lp://staging/unity