zoukankan      html  css  js  c++  java
  • Saltstack module gnome 详解

    gnome.setIdleActivation

    Set whether the idle activation is enabled
    
    CLI Example:
    
        salt '*' gnome.setIdleActivation <True|False> user=<username>
    

    gnome.getIdleActivation

    Get whether the idle activation is enabled
    
    CLI Example:
    
        salt '*' gnome.getIdleActivation user=<username>
    

    gnome.set

    Set key in a particular GNOME schema
    
    CLI Example:
    
        salt '*' gnome.set user=<username> schema=org.gnome.desktop.screensaver key=idle-activation-enabled value=False
    

    gnome.getClockShowDate

    Return the current setting, if the date is shown in the clock
    
    CLI Example:
    
        salt '*' gnome.getClockShowDate user=<username>
    

    gnome.setIdleDelay

    Set the current idle delay setting in seconds
    
    CLI Example:
    
        salt '*' gnome.setIdleDelay <seconds> user=<username>
    

    gnome.setClockShowDate

    Set whether the date is visible in the clock
    
    CLI Example:
    
        salt '*' gnome.setClockShowDate <True|False> user=<username>
    

    gnome.getIdleDelay

    Return the current idle delay setting in seconds
    
    CLI Example:
    
        salt '*' gnome.getIdleDelay user=<username>
    

    gnome.setClockFormat

    Set the clock format, either 12h or 24h format.
    
    CLI Example:
    
        salt '*' gnome.setClockFormat <12h|24h> user=<username>
    

    gnome.get

    Get key in a particular GNOME schema
    
    CLI Example:
    
        salt '*' gnome.get user=<username> schema=org.gnome.desktop.screensaver key=idle-activation-enabled
    

    gnome.ping

    A test to ensure the GNOME module is loaded
    
    CLI Example:
    
        salt '*' gnome.ping user=<username>
    

    gnome.getClockFormat

    Return the current clock format, either 12h or 24h format.
    
    CLI Example:
    
        salt '*' gnome.getClockFormat user=<username>
  • 相关阅读:
    [NOI2012]美食节——费用流(带权二分图匹配)+动态加边
    mysqlsla slow-query常用用法
    [POI2000]病毒
    mysqlsla安装
    mysqldumpslow
    [学习笔记]约数
    查看MySQL数据的连接
    [学习笔记]质数
    关于ulimit -a中需要修改的两个值
    Miller-Rabin与二次探测
  • 原文地址:https://www.cnblogs.com/randomlee/p/Saltstack_module_gnome.html
Copyright © 2011-2022 走看看