Skip to content

Commit 0fb7f50

Browse files
committed
update wf-shell.ini.example with even more options
1 parent c179eba commit 0fb7f50

1 file changed

Lines changed: 45 additions & 1 deletion

File tree

wf-shell.ini.example

Lines changed: 45 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ randomize = 0
1919
# to the word "spacing" and use it as a plugin
2020
widgets_left = menu spacing4 launchers window-list
2121
widgets_center = none
22-
widgets_right = tray notifications volume network battery clock
22+
widgets_right = command-output tray notifications volume network battery clock
2323

2424
# The minimal size of the panel. Note that some widgets might force panel bigger than this size.
2525
# All widgets also have individual settings for size
@@ -121,6 +121,50 @@ menu_logout_command = wayland-logout
121121
volume_display_timeout = 2.5
122122

123123

124+
# Configuration for the tray widget
125+
# Amount of smooth scrolling needed to trigger one scroll wheel step
126+
tray_smooth_scrolling_threshold = 5
127+
128+
# The icon size to use for tray icons
129+
tray_icon_size = 32
130+
131+
# Enable showing of the tray menu when using middle-click, otherwise, right-click is used
132+
tray_menu_on_middle_click = false
133+
134+
135+
# Configuration for the notifications widget
136+
notifications_autohide_timeout = 2.5
137+
138+
# Show criticial notifications in do-not-disturb mode, which is triggered by middle-clicking the DND button.
139+
notifications_critical_in_dnd = true
140+
notifications_icon_size = 32
141+
142+
143+
# Configuration for the command output widget, there may be multiple commands.
144+
# The command output widget is used to display the output of a shell command, which can be periodically refreshed.
145+
# For example, showing the current CPU temperature by parsing `sensors` output (command may need adjustment for your particular sensor name!)
146+
147+
# Maximum amount of characters to show in the panel, if the command's output is too long
148+
commands_output_max_chars = 10
149+
150+
# A list of commands + attributes, multiple commands can be declared after one another. The commands are numbered 1, 2, 3, etc.
151+
152+
# The command to be run, uncomment and adapt according to the output of sensors on your system
153+
#command_output_1 = sensors | grep Package | cut -d ' ' -f 5
154+
155+
# A command which is run and whose output is displayed in a tooltip when hovering the widget
156+
#command_output_tooltip_1 = sensors
157+
158+
# Refresh the output of the command ever 1s. Can be set to -1 for manual updates with the mouse, or 0 for a single update at startup.
159+
# command_output_period_1 = 1
160+
161+
# Optionally, an icon can be displayed next to the text. Leave empty (first option) for no icon.
162+
# command_output_icon_1 =
163+
# command_output_icon_1 = text-x-script
164+
165+
# Position and size for the icon, if it is not empty
166+
#command_output_icon_size_1 = 32
167+
#command_output_icon_position_1 = left # or right, top, bottom
124168

125169
[dock]
126170
# time in milliseconds to wait before hiding

0 commit comments

Comments
 (0)