You need to sign in or sign up before continuing.
exampleplug.yml 4.44 KB
Newer Older
1
- name: "Example"
Roman Alifanov's avatar
Roman Alifanov committed
2 3 4 5 6 7 8 9 10 11 12 13
  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
14 15
          type: choice
          gtype: string
Roman Alifanov's avatar
Roman Alifanov committed
16 17
          help: Prefer dark or light for Adwaita applications
          backend: gsettings
Roman Alifanov's avatar
Roman Alifanov committed
18
          key: org.gnome.desktop.interface.color-scheme
Roman Alifanov's avatar
Roman Alifanov committed
19 20 21 22 23
          default: "default"
          map:
            Default: default
            Light: prefer-light
            Dark: prefer-dark
Roman Alifanov's avatar
Roman Alifanov committed
24 25 26 27 28
        - name: Wallpaper adjustment
          type: choice
          gtype: string
          backend: gsettings
          key: org.gnome.desktop.background.picture-options
Roman Alifanov's avatar
Roman Alifanov committed
29 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
    - 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
64 65 66 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
- name: "Fonts"
  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
104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
- name: "Example2"
  weight: 30
  sections:
    - name: Themes2
      type: classic
      weight: 0
      settings:
        - name: IconTheme
          type: entry
          gtype: string
          backend: gsettings
          key: org.gnome.desktop.interface.icon-theme
        - name: Style
          type: choice
          gtype: string
          help: Prefer dark or light for Adwaita applications
          backend: gsettings
          key: org.gnome.desktop.interface.color-scheme
          default: "default"
          map:
            Default: default
            Light: prefer-light
            Dark: prefer-dark
    - 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