diff options
author | Robert Tari <robert@tari.in> | 2024-08-27 14:43:59 +0200 |
---|---|---|
committer | Robert Tari <robert@tari.in> | 2024-08-27 14:43:59 +0200 |
commit | 269aa4c7df03e1e581c01866c91bcfa5524d6334 (patch) | |
tree | 2fcd022cbfcb82537b15ae334b563cfaf16e5dde /README.md | |
parent | 4bfbd579171d9194956376c7153f378ff6eb9d4e (diff) | |
download | ayatana-settings-269aa4c7df03e1e581c01866c91bcfa5524d6334.tar.gz ayatana-settings-269aa4c7df03e1e581c01866c91bcfa5524d6334.tar.bz2 ayatana-settings-269aa4c7df03e1e581c01866c91bcfa5524d6334.zip |
Rewrite using C/CMake/Gtk4 and add some features/tweaks
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 43 |
1 files changed, 27 insertions, 16 deletions
@@ -1,24 +1,35 @@ # Ayatana Settings -### Info +## Info + Ayatana Settings allows you to configure all your Ayatana system indicators. -### Build dependencies <sup>[1]</sup> -- python-polib <sup>[2]</sup> -- python-setuptools <sup>[2]</sup> +## Build dependencies + + - cmake-extras + - intltool + - gtk4 + - glib2 + - glibc + - hicolor-icon-theme + +## Runtime dependencies -### Runtime dependencies <sup>[1]</sup> + - gtk4 + - glib2 + - glibc + - hicolor-icon-theme -- gtk3 -- gobject-introspection -- python-psutil <sup>[2]</sup> +## Installation -### Installation <sup>[2]</sup> - git clone https://github.com/AyatanaIndicators/ayatana-settings.git - cd ayatana-settings - python setup.py build - sudo python setup.py install --root=/ --optimize=1 - -[1] The package names may slightly vary among various Linux flavours +``` +git clone https://github.com/AyatanaIndicators/ayatana-settings.git +cd ayatana-settings +mkdir build +cd build +cmake .. +make +sudo make install +``` -[2] Make sure "python" refers to Python 3 (e.g. python in Arch, python3 in Debian) +**The install prefix defaults to `/usr`, change it with `-DCMAKE_INSTALL_PREFIX=/some/path`** |