exampleplug.yml 3.38 KB
Newer Older
1 2
- name: "Gnome"
  icon: preferences-desktop-display-symbolic
Roman Alifanov's avatar
Roman Alifanov committed
3 4 5 6 7 8 9 10 11 12 13 14
  weight: 30
  sections:
    - name: Themes
      type: classic
      weight: 0
      settings:
        - name: IconTheme
          type: entry
          gtype: string
          backend: gsettings
          key: org.gnome.desktop.interface.icon-theme
        - name: Style
Roman Alifanov's avatar
Roman Alifanov committed
15 16
          type: choice
          gtype: string
Roman Alifanov's avatar
Roman Alifanov committed
17 18
          help: Prefer dark or light for Adwaita applications
          backend: gsettings
Roman Alifanov's avatar
Roman Alifanov committed
19
          key: org.gnome.desktop.interface.color-scheme
Roman Alifanov's avatar
Roman Alifanov committed
20 21 22 23 24
          default: "default"
          map:
            Default: default
            Light: prefer-light
            Dark: prefer-dark
Roman Alifanov's avatar
Roman Alifanov committed
25 26 27 28 29
        - name: Wallpaper adjustment
          type: choice
          gtype: string
          backend: gsettings
          key: org.gnome.desktop.background.picture-options
Roman Alifanov's avatar
Roman Alifanov committed
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64
    - name: Clock
      weight: 10
      settings:
        - name: Weekday
          type: boolean
          gtype: boolean
          backend: gsettings
          key: org.gnome.desktop.interface.clock-show-weekday
        - name: Date
          type: boolean
          gtype: boolean
          backend: gsettings
          key: org.gnome.desktop.interface.clock-show-date
        - name: Seconds
          type: boolean
          gtype: boolean
          backend: gsettings
          key: org.gnome.desktop.interface.clock-show-seconds
    - name: Battery
      weight: 10
      settings:
        - name: Show percentage
          type: boolean
          gtype: boolean
          backend: gsettings
          key: org.gnome.desktop.interface.show-battery-percentage
    - name: Performance
      weight: 20
      settings:
        - name: Animations
          help: Animations can be disabled for performance
          type: boolean
          gtype: boolean
          backend: gsettings
          key: org.gnome.desktop.interface.enable-animations
Roman Alifanov's avatar
Roman Alifanov committed
65
- name: "Fonts"
66
  icon: font-x-generic-symbolic
Roman Alifanov's avatar
Roman Alifanov committed
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105
  weight: 1
  sections:
    - name: Main
      type: classic
      weight: 0
      settings:
        - name: Antialiasing
          type: choice
          gtype: string
          help:
          backend: gsettings
          key: org.gnome.desktop.interface.font-antialiasing
          default: grayscale
          map:
            Subpixel (for LCD screens): rgba
            Standard (grayscale): grayscale
            None: none
        - name: Hinting
          type: choice
          gtype: string
          help:
          backend: gsettings
          key: org.gnome.desktop.interface.font-hinting
          default: "slight"
          map:
            Full: full
            Medium: medium
            Slight: slight
            None: none
        - name: Scaling Factor
          type: number
          gtype: d
          backend: gsettings
          key: org.gnome.desktop.interface.text-scaling-factor
          map:
            upper: 3.0
            lower: 0.5
            step: 0.01
            digits: 2
106 107
- name: "GRUB"
  icon: system-reboot-symbolic
Roman Alifanov's avatar
Roman Alifanov committed
108 109
  weight: 25
  sections:
110
    - name: Main
Roman Alifanov's avatar
Roman Alifanov committed
111 112 113
      type: classic
      weight: 0
      settings:
114 115 116 117
        - name: Timeout
          root: true
          type: number
          gtype: i
Roman Alifanov's avatar
Roman Alifanov committed
118
          backend: file
119 120
          key: GRUB_TIMEOUT
          help: Select the GRUB2 timeout
Roman Alifanov's avatar
Roman Alifanov committed
121
          params:
122 123
            file_path: "/etc/sysconfig/grub2"
          default: 5
Roman Alifanov's avatar
Roman Alifanov committed
124
          map:
125 126 127 128
            upper: 999
            lower: 0
            step: 1
            digits: 0