v0.2.8
gsettings
Provides a client to access GSettings - a settings database used for storing user preferences on Linux.
27Likes 732.1K30-day downloads160Pub points
Linux
Provides a client to use [GSettings](https://developer.gnome.org/gio/stable/GSettings.html) - a settings database used for storing user preferences on Linux.
^0.7.8^1.0.0^2.0.0^1.16.8^1.0.1English project snapshot. Visit GitHub for the latest content.
Provides a client to use GSettings - a settings database used for storing user preferences on Linux.
import 'package:gsettings/gsettings.dart';
void main() async {
var settings = GSettings('org.gnome.desktop.interface');
var value = await settings.get('font-name');
var font = value.asString();
print('Current font set to: $font');
await settings.close();
}
We welcome contributions! See the contribution guide for more details.