All Projects → jistr → ansible-dconf

jistr / ansible-dconf

Licence: Apache-2.0 license
Ansible module for setting DConf entries

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to ansible-dconf

markets
A stock, currency and cryptocurrency tracker
Stars: ✭ 103 (+543.75%)
Mutual labels:  gnome
Ocean-blue-GDM3
Ocean Blue GDM3 theme for ubuntu
Stars: ✭ 27 (+68.75%)
Mutual labels:  gnome
.config
⚙️ Bootstrappable user environment for macOS & Ubuntu
Stars: ✭ 31 (+93.75%)
Mutual labels:  gnome
revelation
Revelation is a password manager for the GNOME desktop, released under the GNU GPL license. It stores all your accounts and passwords in a single, secure place, and gives you access to it through a user-friendly graphical interface.
Stars: ✭ 52 (+225%)
Mutual labels:  gnome
improved-osk-gnome-ext
Improved On Screen Keyboard for Gnome Shell
Stars: ✭ 22 (+37.5%)
Mutual labels:  gnome
gnome-shell-panel-date-format
Allows to customize the date format on the panel.
Stars: ✭ 30 (+87.5%)
Mutual labels:  gnome
gobject-example-rs
Example for exporting a GObject/C API from Rust
Stars: ✭ 31 (+93.75%)
Mutual labels:  gnome
dotfiles
💾 personal configuration files
Stars: ✭ 42 (+162.5%)
Mutual labels:  gnome
Gjs-Tutorial
A tutorial for Gjs/GTK+ 3 development, based on https://github.com/sebp/PyGObject-Tutorial
Stars: ✭ 15 (-6.25%)
Mutual labels:  gnome
Boston-Icons
Boston is an exclusive icon theme inspired by functionalist design and a touch of early computer icons. The project is focused on elemental properties, basic shapes, a reduced color palette and visual hierarchy.
Stars: ✭ 106 (+562.5%)
Mutual labels:  gnome
parlatype
GNOME audio player for transcription
Stars: ✭ 151 (+843.75%)
Mutual labels:  gnome
media-controls
A media indicator for the Gnome shell.
Stars: ✭ 104 (+550%)
Mutual labels:  gnome
cover-thumbnailer
Generates folder thumbnails for various file browser on Linux to display music album covers, preview of pictures which are in a folder and more.
Stars: ✭ 56 (+250%)
Mutual labels:  gnome
gui-python-gtk
Repositório criado para documentar e centralizar conteúdos, dicas, tutoriais e exemplos de código sobre a construção de interfaces com a linguagem de programação Python (PyGObject) e o toolkit gráfico Gtk 4.
Stars: ✭ 85 (+431.25%)
Mutual labels:  gnome
Slate-theme
GTK Mac-like theme for cleaner and flat-er look.
Stars: ✭ 14 (-12.5%)
Mutual labels:  gnome
mutter-x11-scaling
Mutter build with Ubuntu patch for Xorg fractional scaling on Manjaro / Arch Linux
Stars: ✭ 77 (+381.25%)
Mutual labels:  gnome
gnome-gtk3
Interfacing Perl6 to Gnome GTK+
Stars: ✭ 15 (-6.25%)
Mutual labels:  gnome
twitchlive-extension
TwitchLive-Panel Gnome Shell Extension displaying your favorite streamers
Stars: ✭ 27 (+68.75%)
Mutual labels:  gnome
proxychanger
Go tool to change system and applications proxy
Stars: ✭ 15 (-6.25%)
Mutual labels:  gnome
gnome-shell-extension-syncthing-indicator
Put an indicator on the panel signalling the Syncthing daemon status using SystemD
Stars: ✭ 40 (+150%)
Mutual labels:  gnome

ansible-dconf

Ansible module for setting DConf entries.

See also ansible-gsetting.

Installation

curl https://raw.githubusercontent.com/jistr/ansible-dconf/master/dconf.py > ~/ansible_dir/library/dconf

Usage examples

- name: gnome-terminal default-show-menubar
  dconf:
    user: 'jistr'
    key: '/org/gnome/terminal/legacy/default-show-menubar'
    value: 'false'

The user parameter is optional, using the currently connected user if omitted. If set, it uses su - <user> to switch.

Be careful with string values, which should be passed into DConf single-quoted. You'll need to quote the value twice in YAML:

- name: shortcut help
  dconf:
    user: 'jistr'
    key: '/org/gnome/terminal/legacy/keybindings/help'
    value: "'disabled'"
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].