1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-12 19:06:36 +00:00

Fix lefthook config.

This commit is contained in:
Brenden Matthews 2023-02-28 22:41:20 -05:00 committed by Brenden Matthews
parent 55947d0182
commit 4d7f74f7fe
2 changed files with 9 additions and 9 deletions

View File

@ -53,11 +53,11 @@ values:
Substitute N by a digit between 0 and 9, inclusively. When specifying Substitute N by a digit between 0 and 9, inclusively. When specifying
the color value in hex, omit the leading hash (#). the color value in hex, omit the leading hash (#).
- name: console_bar_fill - name: console_bar_fill
desc: "A character to fill the console bars." desc: 'A character to fill the console bars.'
default: "#" default: '#'
- name: console_bar_unfill - name: console_bar_unfill
desc: "A character to unfill the console bars." desc: 'A character to unfill the console bars.'
default: "." default: '.'
- name: console_graph_ticks - name: console_graph_ticks
desc: |- desc: |-
A comma-separated list of strings to use as the bars of a A comma-separated list of strings to use as the bars of a
@ -175,7 +175,7 @@ values:
- name: hddtemp_host - name: hddtemp_host
desc: |- desc: |-
Hostname to connect to for hddtemp objects. Hostname to connect to for hddtemp objects.
default: "127.0.0.1" default: '127.0.0.1'
- name: hddtemp_port - name: hddtemp_port
desc: Port to use for hddtemp connections. desc: Port to use for hddtemp connections.
default: 7634 default: 7634
@ -406,7 +406,7 @@ values:
- name: own_window_title - name: own_window_title
desc: |- desc: |-
Manually set the window name. Manually set the window name.
default: "conky (<hostname>)" default: 'conky (<hostname>)'
- name: own_window_transparent - name: own_window_transparent
desc: |- desc: |-
Boolean, set transparency? If ARGB visual is enabled, sets Boolean, set transparency? If ARGB visual is enabled, sets
@ -517,7 +517,7 @@ values:
Zero makes Conky run forever. Zero makes Conky run forever.
- name: units_spacer - name: units_spacer
desc: String to place between values and units. desc: String to place between values and units.
default: "" default: ''
- name: update_interval - name: update_interval
desc: Update interval. desc: Update interval.
args: args:

View File

@ -1,7 +1,7 @@
pre-commit: pre-commit:
parallel: true
commands: commands:
web-linter: web-linter:
parallel: true
run: | run: |
npx eslint --fix {staged_files} \ npx eslint --fix {staged_files} \
&& git add {staged_files} && git add {staged_files}