switched to double quotes

This commit is contained in:
Noah Swerhun 2023-02-11 12:56:53 -06:00
parent 145d2cd24d
commit 43de4df4c4

View file

@ -6,7 +6,7 @@ bar:
config: config:
# Define a custom size of the bar. By default, this is different for every # Define a custom size of the bar. By default, this is different for every
# screen, so the format is shown below. # screen, so the format is shown below.
geometry: 'widthxheight+x+y' geometry: "widthxheight+x+y"
# Dock the bar at the bottom of the screen. # Dock the bar at the bottom of the screen.
bottom: false bottom: false
# Force the bar to dock (if your window manager is weird). # Force the bar to dock (if your window manager is weird).
@ -17,26 +17,26 @@ bar:
# assigned an index value 1-5 in the order you specify them (this will be # assigned an index value 1-5 in the order you specify them (this will be
# relevant later). The first font you list will be the default font for the # relevant later). The first font you list will be the default font for the
# bar. The basic format is shown below. # bar. The basic format is shown below.
font: 'Font Name-Size' font: "Font Name-Size"
#font: 'Second Font Name-Size' etc... #font: "Second Font Name-Size" etc...
# Set a custom Xorg WM_NAME. # Set a custom Xorg WM_NAME.
name: 'bar' name: "bar"
# Under/overline thickness in pixels. # Under/overline thickness in pixels.
line_thickness: 1 line_thickness: 1
# Background color of the bar. # Background color of the bar.
bg_color: '#000' bg_color: "#000"
# Color of text. # Color of text.
fg_color: '#FFF' fg_color: "#FFF"
# Vertical offset of the text in pixels (can be negative). # Vertical offset of the text in pixels (can be negative).
offset: 0 offset: 0
# Global under/overline color. # Global under/overline color.
line_color: '#FFF' line_color: "#FFF"
# Padding to the right and left of the text of any module. Formatting is # Padding to the right and left of the text of any module. Formatting is
# applied to the padding, too. # applied to the padding, too.
padding: ' ' padding: " "
# Seperator between modules. Module formatting options are not applied to # Seperator between modules. Module formatting options are not applied to
# the seperator. # the seperator.
seperator: '|' seperator: "|"
# Here is where you can define your individual modules. You can define as # Here is where you can define your individual modules. You can define as
# many modules as you want. Some fields are required; these will be indicated. # many modules as you want. Some fields are required; these will be indicated.
@ -50,12 +50,12 @@ bar:
# This command is run by `sh -c`, and whatever is sent to stdout is the # This command is run by `sh -c`, and whatever is sent to stdout is the
# text that will be displayed for this module. `date` here is used as an # text that will be displayed for this module. `date` here is used as an
# example. THIS IS A REQUIRED FIELD. # example. THIS IS A REQUIRED FIELD.
command: 'date' command: "date"
# How often to re-run the command and display the updated text. THIS IS A # How often to re-run the command and display the updated text. THIS IS A
# REQUIRED FIELD. # REQUIRED FIELD.
refresh: 1000 refresh: 1000
# Prefix to be printed before the text of the command. # Prefix to be printed before the text of the command.
prefix: 'DATE: ' prefix: "DATE: "
# Formatting options. These will only affect the text and padding of this # Formatting options. These will only affect the text and padding of this
# module. # module.
format: format:
@ -63,9 +63,9 @@ bar:
# `center`. THIS IS A REQUIRED FIELD. # `center`. THIS IS A REQUIRED FIELD.
align: left align: left
# Background color of the bar. # Background color of the bar.
bg_color: '#000' bg_color: "#000"
# Text color # Text color
fg_color: '#FFF' fg_color: "#FFF"
# INDEX of the font for this module to be displayed in (see above). # INDEX of the font for this module to be displayed in (see above).
font: 1 font: 1
# Set an underline or overline # Set an underline or overline
@ -74,7 +74,7 @@ bar:
# this is a required field. # this is a required field.
type: underline type: underline
# Set a custom color for the line. # Set a custom color for the line.
color: '#000' color: "#000"
# Make this module act like a button. Both of these fields are required # Make this module act like a button. Both of these fields are required
# if you are making a button. You may also define multiple buttons with # if you are making a button. You may also define multiple buttons with
# different activators for a single module. # different activators for a single module.
@ -84,11 +84,11 @@ bar:
# you scroll up or down with `scrup` and `scrdown.` # you scroll up or down with `scrup` and `scrdown.`
activator: left activator: left
# Command to be executed upon activation. Will be run with `sh -c`. # Command to be executed upon activation. Will be run with `sh -c`.
command: 'echo "hello" > ~/file.txt' command: "echo 'hello' > ~/file.txt"
# Here is a simpler example module showing only the required fields. # Here is a simpler example module showing only the required fields.
bare_minimum: bare_minimum:
command: 'whoami' command: "whoami"
refresh: 1000 refresh: 1000
format: format:
align: right align: right