aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-05-24 22:51:03 +0200
committerRobert Tari <robert@tari.in>2021-05-24 22:57:41 +0200
commitb4cb3aa961a11e1414031ca674e45df2c6532872 (patch)
tree93043b9c909d2d4ed1d90b743a8d520e5d91ed89
parent77c690f0a111f45b036206a5a45535e6f8e3f388 (diff)
downloadlibayatana-indicator-b4cb3aa961a11e1414031ca674e45df2c6532872.tar.gz
libayatana-indicator-b4cb3aa961a11e1414031ca674e45df2c6532872.tar.bz2
libayatana-indicator-b4cb3aa961a11e1414031ca674e45df2c6532872.zip
README: Drop old file
-rw-r--r--README43
1 files changed, 0 insertions, 43 deletions
diff --git a/README b/README
deleted file mode 100644
index 154935f..0000000
--- a/README
+++ /dev/null
@@ -1,43 +0,0 @@
-The indicator service file format
-=================================
-
-Modern desktop panels find out about indicator by looking at indicator
-service files in `/usr/share/ayatana/indicators`. These files have to have
-the same name as the well-known D-Bus name that the corresponding service
-owns.
-
-An indicator file is a normal key file (like desktop files). It must have
-an `[Indicator Service]` section, that must contain the service's name (`Name`)
-and the object path at which its action group is found (`ObjectPath`). For
-example:
-
- [Indicator Service]
- Name=indicator-example
- ObjectPath=/org/ayatana/indicator/example
-
-It should also contain a hint to where the indicator should appear in the panel:
-
- Position=70
-
-The smaller the position, the further to the right (or left when RTL is
-enabled) the indicator appears.
-
-An indicator can only export one action group, but a menu for each profile
-("desktop", "greeter", "phone") supports. There must be a section for each
-of those profiles, containing the object path on which the menu is
-exported:
-
- [desktop]
- ObjectPath=/org/ayatana/indicator/example/desktop
-
- [greeter]
- ObjectPath=/org/ayatana/indicator/example/desktop
-
- [phone]
- ObjectPath=/org/ayatana/indicator/example/phone
-
-Object paths can be reused for different profiles (the greeter uses the
-same menu as the desktop in the above example).
-
-There are no fallbacks. If a profile is not mentioned in the service file,
-the indicator will not show up for that profile.