#亮度 #系统 #命令行工具 #CLI

程序 rumos

控制屏幕亮度的 CLI 工具

2 个版本

0.0.6 2023 年 7 月 18 日
0.0.5 2023 年 7 月 16 日

#2275命令行工具

MIT 许可证

14KB
165

☀️ Rumos

控制屏幕亮度的 CLI 工具

asciicast

安装

  • 从源代码构建

    Clone repository
        git clone https://github.com/octagony/rumos.git
    
    Build project
        cargo build --release
    
    Find the executable file in target/release
    
  • 使用 cargo install

    cargo install rumos
    

用法

Usage: rumos [OPTIONS] <COMMAND>

Commands:
  get   Get brightness level (in percent)
  set   Set brightness level (in percent)
  inc   Increase brightness level (in percent)
  dec   Decrease brightness level (in percent)
  max   Set maximum brightness level
  min   Set mininum brightness level
  help  Print this message or the help of the given subcommand(s)

Options:
  -q, --quiet    Do not output result to console
  -p, --percent  Print only brightness level(percentage)
  -h, --help     Print help
  -V, --version  Print version

示例

  • 获取百分比亮度的亮度级别

    rumos -p get
    // 100%
    
  • 静默设置最大亮度级别

    rumos max -q
    // No output
    
  • 减少并仅显示百分比亮度级别

    rumos -p dec 10
    // 90%
    
  • (菜谱) 使用 rumos 与 dunstify。

    您可以在我的 DWM 配置中找到控制亮度级别的脚本 在此处。在简化版本中,您可以使用以下输入

    dunstify $(rumos -p get) -t 2000
    

依赖项

~5–39MB
~563K SLoC