2023-02-10 16:20:26 +00:00
|
|
|
# Example configuration.
|
2023-01-29 16:38:40 +00:00
|
|
|
# Everything after '#' is ignored
|
|
|
|
# Format of the variables:
|
|
|
|
# [variable]: [value]
|
|
|
|
# Whitespaces are ignored in the following locations:
|
|
|
|
# - Before the variable
|
|
|
|
# - After the ':'
|
|
|
|
# - After the value
|
|
|
|
|
|
|
|
# The CPU sensor to use
|
2023-01-28 17:04:12 +00:00
|
|
|
CPUThermalZone: /sys/devices/pci0000:00/0000:00:18.3/hwmon/hwmon2/temp1_input
|
2023-01-29 16:38:40 +00:00
|
|
|
|
|
|
|
# The command to execute on suspend
|
2023-01-28 17:04:12 +00:00
|
|
|
SuspendCommand: ~/.config/scripts/sys.sh suspend
|
2023-01-29 16:38:40 +00:00
|
|
|
|
|
|
|
# The command to execute on lock
|
2023-01-28 17:04:12 +00:00
|
|
|
LockCommand: ~/.config/scripts/sys.sh lock
|
2023-01-29 16:38:40 +00:00
|
|
|
|
|
|
|
# The command to execute on exit
|
2023-01-28 17:04:12 +00:00
|
|
|
ExitCommand: killall Hyprland
|
2023-01-29 16:38:40 +00:00
|
|
|
|
|
|
|
# The folder, where the battery sensors reside
|
2023-01-28 22:47:55 +00:00
|
|
|
BatteryFolder: /sys/class/power_supply/BAT1
|
2023-01-29 16:38:40 +00:00
|
|
|
|
|
|
|
# Overrides the icon of the nth (in this case the first) workspace
|
|
|
|
# WorkspaceSymbol-1:
|
|
|
|
|
|
|
|
# The default symbol for the workspaces
|
2023-01-29 11:07:24 +00:00
|
|
|
DefaultWorkspaceSymbol:
|
2023-01-29 20:31:00 +00:00
|
|
|
|
2023-02-12 13:57:32 +00:00
|
|
|
# Scroll through the workspaces of the current monitor instead of all workspaces
|
|
|
|
WorkspaceScrollOnMonitor: true
|
|
|
|
|
|
|
|
# When true: Scroll up -> Next workspace instead of previous workspace. Analogous with scroll down
|
|
|
|
WorkspaceScrollInvert: false
|
|
|
|
|
2023-03-10 23:24:50 +00:00
|
|
|
# Use Hyprland IPC instead of the ext_workspace protocol for workspace polling.
|
|
|
|
# Hyprland IPC is *slightly* less performant (+0.1% one core), but way less bug prone,
|
|
|
|
# since the protocol is not as feature complete as Hyprland IPC.
|
|
|
|
UseHyprlandIPC: false
|
|
|
|
|
2023-01-29 20:31:00 +00:00
|
|
|
# Forces the time to be centered.
|
|
|
|
# This can cause issues, if there is not enough space on screen (e.g. when opening the text)
|
|
|
|
CenterTime: true
|
2023-02-04 14:07:05 +00:00
|
|
|
|
2023-02-22 15:45:29 +00:00
|
|
|
# Adds a audio input(aka. microphone) widget
|
|
|
|
AudioInput: false
|
|
|
|
|
2023-02-04 14:46:54 +00:00
|
|
|
# Sets the audio slider to be on reveal (Just like the sensors) when true. Only affects the bar.
|
|
|
|
AudioRevealer: false
|
2023-02-10 16:20:26 +00:00
|
|
|
|
2023-02-20 22:04:37 +00:00
|
|
|
# Sets the rate of change of the slider on each scroll. In Percent
|
|
|
|
AudioScrollSpeed: 5
|
|
|
|
|
2023-02-10 16:20:26 +00:00
|
|
|
# The network adapter to use. You can query /sys/class/net for all possible values
|
|
|
|
NetworkAdapter: eno1
|
|
|
|
|
|
|
|
# Disables the network widget when set to false
|
|
|
|
NetworkWidget: true
|
|
|
|
|
|
|
|
# These set the range for the network widget. The widget changes colors at six intervals:
|
|
|
|
# - Below Min...Bytes ("under")
|
|
|
|
# - Between ]0%;25%]. 0% = Min...Bytes; 100% = Max...Bytes ("low")
|
|
|
|
# - Between ]25%;50%]. 0% = Min...Bytes; 100% = Max...Bytes ("mid-low")
|
|
|
|
# - Between ]50%;75%]. 0% = Min...Bytes; 100% = Max...Bytes ("mid-high")
|
|
|
|
# - Between ]75%;100%]. 0% = Min...Bytes; 100% = Max...Bytes ("high")
|
|
|
|
# - Above Max...Bytes ("over")
|
|
|
|
MinDownloadBytes: 0
|
|
|
|
MaxDownloadBytes: 10485760 # 10 * 1024 * 1024 = 10 MiB
|
|
|
|
MinUploadBytes: 0
|
|
|
|
MaxUploadBytes: 5242880 # 5 * 1024 * 1024 = 5 MiB
|