XDG::BaseDirectory

Implementation of the freedesktop.org XDG BaseDirectory specifications

XDG::BaseDirectory

Raku access to path information provided by the xdg base directory specfication http://www.freedesktop.org/wiki/Specifications/basedir-spec/

image https://github.com/jonathanstowe/XDG-BaseDirectory/workflows/CI/badge.svg not found

Synopsis


    use XDG::BaseDirectory;

    my $bd = XDG::BaseDirectory.new

    for $bd.load-config-paths('mydomain.org', 'MyProg', 'Options') -> $d {
        say $d;
    }

    # Directories can be made available as terms as well
    use XDG::BaseDirectory :terms;

    say config-home;

Description

This is loosely based on the interface of python module pyxdg. But due to the differences between Python and Raku it may do some things differently.

It provides a set of facilities for discovering the location of the configuration and data of applications.

I split this out from the XDG module as it has more general usefulness and no external dependencies.

Installation

Assuming you have a working Rakudo installation with zef installed you can install from a copy of the source directory:

 zef install .

or remotely:

 zef install XDG::BaseDirectory 

Support

Suggestions/patches are welcomed via github at:

https://github.com/jonathanstowe/XDG-BaseDirectory/issues

I'm not able to test on a wide variety of platforms so any help there would be appreciated.

Licence

This module is Free Software please see the LICENCE file in the distribution for the exact terms.

Ā© Jonathan Stowe 2015-2021

XDG::BaseDirectory v0.0.13

Implementation of the freedesktop.org XDG BaseDirectory specifications

Authors

License

Artistic-2.0

Dependencies

Test Dependencies

Provides

  • XDG::BaseDirectory

Documentation

The Camelia image is copyright 2009 by Larry Wall. "Raku" is trademark of the Yet Another Society. All rights reserved.