Skip to content

Latest commit

 

History

History
executable file
·
82 lines (65 loc) · 2.61 KB

2020-05-24-personal.terminal.dash.md

File metadata and controls

executable file
·
82 lines (65 loc) · 2.61 KB
layout title tags
post
可配置化的个人命令行看板
Python

大家好,我是你们的章鱼猫。

之前我们推荐过一款个人可配置化的监控看板,让你能在一个版面了解你想知道的全部信息,点击可查看

今天要推荐的是一款极客命令行风格的看板工具,把你每天要关注的东西都聚焦到一个终端下面,一眼便能了解大概的情况,让工作和生活更聚焦。

你可以集成日历、TODO、JIRA 以及 Git 相关的任务。我们简单介绍一下如何配置这样的一个命令行看板。

如下是一个包含日历和展示文件内容的看板。

配置上面这个看板,其实有点像写前端页面,需要先设置布局和背景颜色,然后每个模块根据自己的需求填写相应的参数即可,当然你也可以定制自己的模块。大致的配置如下:

wtf:
  colors:
    background: black
    border:
      focusable: darkslateblue
  grid:
    columns: [40, 40]
    rows: [16]
  refreshInterval: 1
  mods:
    americas_time:
      title: "Americas"
      type: clocks
      enabled: true
      locations:
        UTC: "Etc/UTC"
        Vancouver: "America/Vancouver"
        New_York: "America/New_York"
        Sao_Paolo: "America/Sao_Paulo"
        Denver: "America/Denver"
        Iqaluit: "America/Iqaluit"
        Bahamas: "America/Nassau"
        Chicago: "America/Chicago"
      position:
        top: 0
        left: 0
        height: 1
        width: 1
      refreshInterval: 15
      sort: "chronological"
    textfile:
      enabled: true
      filePaths:
        - "~/.config/wtf/config.yml"
      format: true
      formatStyle: "vim"
      position:
        top: 0
        left: 1
        height: 1
        width: 1
      refreshInterval: 15

我们再来看几个示例

Kubernetes 资源实时查看

柱状图

如果你是一个命令行爱好者,相信你会喜欢的。更多详情请查看如下链接。

开源项目地址:https://github.com/wtfutil/wtf

项目作者:https://github.com/wtfutil