github.com/wtfutil/wtf@v0.43.0/modules/azuredevops/example-conf.yml (about)

     1  wtf:
     2    colors:
     3      # background: black
     4      # foreground: blue
     5      border:
     6        focusable: darkslateblue
     7        focused: orange
     8        normal: gray
     9      checked: yellow
    10      highlight: 
    11        fore: black
    12        back: gray
    13      rows:
    14        even: yellow
    15        odd: white
    16    grid:
    17      # How _wide_ the columns are, in terminal characters. In this case we have
    18      # four columns, each of which are 35 characters wide.
    19      # columns: [50, ]
    20      # How _high_ the rows are, in terminal lines. In this case we have four rows
    21      # that support ten line of text and one of four.
    22      # rows: [50]
    23    refreshInterval: 1
    24    openFileUtil: "open"
    25    mods:
    26      azuredevops:
    27        type: azuredevops
    28        title: "💻"
    29        enabled: true
    30        position:
    31          top: 0
    32          left: 0
    33          height: 3
    34          width: 3
    35        refreshInterval: 1
    36        labelColor: lightblue # title label color (optional / default: white)
    37        apiToken: "mysecret api token" # api key (required)
    38        orgUrl: "https://dev.azure.com/myawesomecompany/" # url to your azure devops project (required)
    39        prjectName: "the awesome project"  # name of your project (required)
    40        maxRows: 3 #max rows to show (optional / default 3)
    41  
    42