You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
DebuggerX 9166c80979
feat: add some plugins.
4 years ago
..
lib feat: add some plugins. 4 years ago
CHANGELOG.md feat: add some plugins. 4 years ago
CONTRIBUTING.md feat: add some plugins. 4 years ago
LICENSE feat: add some plugins. 4 years ago
README.md feat: add some plugins. 4 years ago
analysis_options.yaml feat: add some plugins. 4 years ago
pubspec.yaml feat: add some plugins. 4 years ago

README.md

Pub Package

Provides a client to use GSettings - a settings database used for storing user preferences on Linux.

import 'package:dbus/dbus.dart';
import 'package:gsettings/gsettings.dart';

void main() async {
  var schema = GSettings('org.gnome.desktop.interface');
  var value = await schema.get('font-name');
  var font = (value as DBusString).value;
  print('Current font set to: $font');
}

Contributing to gsettings.dart

We welcome contributions! See the contribution guide for more details.