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.
|
|
4 years ago | |
|---|---|---|
| .. | ||
| lib | 4 years ago | |
| CHANGELOG.md | 4 years ago | |
| CONTRIBUTING.md | 4 years ago | |
| LICENSE | 4 years ago | |
| README.md | 4 years ago | |
| analysis_options.yaml | 4 years ago | |
| pubspec.yaml | 4 years ago | |
README.md
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.