polyabr and dunst
This commit is contained in:
parent
e7606ac72f
commit
0681030611
9 changed files with 563 additions and 308 deletions
|
@ -16,7 +16,7 @@ numlockx on &
|
||||||
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1 &
|
||||||
|
|
||||||
bspc monitor -d 1 2 3 4 5 6
|
bspc monitor -d 1 2 3 4 5 6
|
||||||
bspc monitor VGA1 7 8 9
|
bspc monitor VGA-0 7 8 9
|
||||||
|
|
||||||
|
|
||||||
bspc config focus_follows_pointer true
|
bspc config focus_follows_pointer true
|
||||||
|
@ -61,6 +61,7 @@ bspc rule -a Gimp desktop='^6' state=floating follow=on
|
||||||
bspc rule -a Pavucontrol state=floating
|
bspc rule -a Pavucontrol state=floating
|
||||||
bspc rule -a copyq state=floating
|
bspc rule -a copyq state=floating
|
||||||
bspc rule -a Blueman-manager state=floating
|
bspc rule -a Blueman-manager state=floating
|
||||||
|
bspc rule -a Arandr state=floating
|
||||||
bspc rule -a Screenkey manage=off
|
bspc rule -a Screenkey manage=off
|
||||||
bspc rule -a Firefox desktop='^1'
|
bspc rule -a Firefox desktop='^1'
|
||||||
bspc rule -a Discord desktop='^4'
|
bspc rule -a Discord desktop='^4'
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
|
|
||||||
sure() {
|
sure() {
|
||||||
options="Yes
|
options="Yes\nNo"
|
||||||
No"
|
|
||||||
|
|
||||||
chosen=`echo "$options" | dmenu -i -p "Are you sure?" -sb red -sf black`
|
chosen=`echo "$options" | dmenu -i -p "Are you sure?" -sb red -sf black`
|
||||||
case "$chosen" in
|
case "$chosen" in
|
||||||
|
|
BIN
dunst/critical.png
Normal file
BIN
dunst/critical.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 35 KiB |
|
@ -29,7 +29,7 @@
|
||||||
# the top and down respectively.
|
# the top and down respectively.
|
||||||
# The width can be negative. In this case the actual width is the
|
# The width can be negative. In this case the actual width is the
|
||||||
# screen width minus the width defined in within the geometry option.
|
# screen width minus the width defined in within the geometry option.
|
||||||
geometry = "300x5-30+20"
|
geometry = "0x0-30+20"
|
||||||
|
|
||||||
# Show how many messages are currently hidden (because of geometry).
|
# Show how many messages are currently hidden (because of geometry).
|
||||||
indicate_hidden = yes
|
indicate_hidden = yes
|
||||||
|
@ -72,7 +72,7 @@
|
||||||
# * foreground: use the same color as the foreground;
|
# * foreground: use the same color as the foreground;
|
||||||
# * frame: use the same color as the frame;
|
# * frame: use the same color as the frame;
|
||||||
# * anything else will be interpreted as a X color.
|
# * anything else will be interpreted as a X color.
|
||||||
separator_color = frame
|
separator_color = auto
|
||||||
|
|
||||||
# Sort messages by urgency.
|
# Sort messages by urgency.
|
||||||
sort = yes
|
sort = yes
|
||||||
|
@ -85,8 +85,7 @@
|
||||||
idle_threshold = 120
|
idle_threshold = 120
|
||||||
|
|
||||||
### Text ###
|
### Text ###
|
||||||
|
font = JetBrains Mono Medium 10
|
||||||
font = Monospace 8
|
|
||||||
|
|
||||||
# The spacing between lines. If the height is smaller than the
|
# The spacing between lines. If the height is smaller than the
|
||||||
# font height, it will get raised to the font height.
|
# font height, it will get raised to the font height.
|
||||||
|
@ -100,7 +99,7 @@
|
||||||
# <u>underline</u>
|
# <u>underline</u>
|
||||||
#
|
#
|
||||||
# For a complete reference see
|
# For a complete reference see
|
||||||
# <https://developer.gnome.org/pango/stable/pango-Markup.html>.
|
# <http://developer.gnome.org/pango/stable/PangoMarkupFormat.html>.
|
||||||
#
|
#
|
||||||
# strip: This setting is provided for compatibility with some broken
|
# strip: This setting is provided for compatibility with some broken
|
||||||
# clients that send markup even though it's not enabled on the
|
# clients that send markup even though it's not enabled on the
|
||||||
|
@ -130,11 +129,7 @@
|
||||||
|
|
||||||
# Alignment of message text.
|
# Alignment of message text.
|
||||||
# Possible values are "left", "center" and "right".
|
# Possible values are "left", "center" and "right".
|
||||||
alignment = left
|
alignment = center
|
||||||
|
|
||||||
# Vertical alignment of message text and icon.
|
|
||||||
# Possible values are "top", "center" and "bottom".
|
|
||||||
vertical_alignment = center
|
|
||||||
|
|
||||||
# Show age of message if message is older than show_age_threshold
|
# Show age of message if message is older than show_age_threshold
|
||||||
# seconds.
|
# seconds.
|
||||||
|
@ -166,11 +161,6 @@
|
||||||
# Align icons left/right/off
|
# Align icons left/right/off
|
||||||
icon_position = left
|
icon_position = left
|
||||||
|
|
||||||
# Scale small icons up to this size, set to 0 to disable. Helpful
|
|
||||||
# for e.g. small files or high-dpi screens. In case of conflict,
|
|
||||||
# max_icon_size takes precedence over this.
|
|
||||||
min_icon_size = 0
|
|
||||||
|
|
||||||
# Scale larger icons down to this size, set to 0 to disable
|
# Scale larger icons down to this size, set to 0 to disable
|
||||||
max_icon_size = 32
|
max_icon_size = 32
|
||||||
|
|
||||||
|
@ -192,7 +182,7 @@
|
||||||
dmenu = /usr/bin/dmenu -p dunst:
|
dmenu = /usr/bin/dmenu -p dunst:
|
||||||
|
|
||||||
# Browser for opening urls in context menu.
|
# Browser for opening urls in context menu.
|
||||||
browser = /usr/bin/firefox -new-tab
|
browser = /usr/bin/brave
|
||||||
|
|
||||||
# Always run rule-defined scripts, even if the notification is suppressed
|
# Always run rule-defined scripts, even if the notification is suppressed
|
||||||
always_run_script = true
|
always_run_script = true
|
||||||
|
@ -222,13 +212,7 @@
|
||||||
# corners.
|
# corners.
|
||||||
# The radius will be automatically lowered if it exceeds half of the
|
# The radius will be automatically lowered if it exceeds half of the
|
||||||
# notification height to avoid clipping text and/or icons.
|
# notification height to avoid clipping text and/or icons.
|
||||||
corner_radius = 0
|
corner_radius = 5
|
||||||
|
|
||||||
# Ignore the dbus closeNotification message.
|
|
||||||
# Useful to enforce the timeout set by dunst configuration. Without this
|
|
||||||
# parameter, an application may close the notification sent before the
|
|
||||||
# user defined timeout.
|
|
||||||
ignore_dbusclose = false
|
|
||||||
|
|
||||||
### Legacy
|
### Legacy
|
||||||
|
|
||||||
|
@ -244,18 +228,16 @@
|
||||||
|
|
||||||
### mouse
|
### mouse
|
||||||
|
|
||||||
# Defines list of actions for each mouse event
|
# Defines action of mouse event
|
||||||
# Possible values are:
|
# Possible values are:
|
||||||
# * none: Don't do anything.
|
# * none: Don't do anything.
|
||||||
# * do_action: If the notification has exactly one action, or one is marked as default,
|
# * do_action: If the notification has exactly one action, or one is marked as default,
|
||||||
# invoke it. If there are multiple and no default, open the context menu.
|
# invoke it. If there are multiple and no default, open the context menu.
|
||||||
# * close_current: Close current notification.
|
# * close_current: Close current notification.
|
||||||
# * close_all: Close all notifications.
|
# * close_all: Close all notifications.
|
||||||
# These values can be strung together for each mouse event, and
|
mouse_left_click = do_action
|
||||||
# will be executed in sequence.
|
mouse_middle_click = close_all
|
||||||
mouse_left_click = close_current
|
mouse_right_click = close_current
|
||||||
mouse_middle_click = do_action, close_current
|
|
||||||
mouse_right_click = close_all
|
|
||||||
|
|
||||||
# Experimental features that may or may not work correctly. Do not expect them
|
# Experimental features that may or may not work correctly. Do not expect them
|
||||||
# to have a consistent behaviour across releases.
|
# to have a consistent behaviour across releases.
|
||||||
|
@ -292,26 +274,26 @@
|
||||||
[urgency_low]
|
[urgency_low]
|
||||||
# IMPORTANT: colors have to be defined in quotation marks.
|
# IMPORTANT: colors have to be defined in quotation marks.
|
||||||
# Otherwise the "#" and following would be interpreted as a comment.
|
# Otherwise the "#" and following would be interpreted as a comment.
|
||||||
background = "#222222"
|
background = "#2b2b2b"
|
||||||
foreground = "#888888"
|
foreground = "#ffffff"
|
||||||
timeout = 10
|
timeout = 5
|
||||||
# Icon for notifications with low urgency, uncomment to enable
|
# Icon for notifications with low urgency, uncomment to enable
|
||||||
#icon = /path/to/icon
|
icon = /home/brodie/.config/dunst/normal.png
|
||||||
|
|
||||||
[urgency_normal]
|
[urgency_normal]
|
||||||
background = "#285577"
|
background = "#2b2b2b"
|
||||||
foreground = "#ffffff"
|
foreground = "#ffffff"
|
||||||
timeout = 10
|
timeout = 5
|
||||||
# Icon for notifications with normal urgency, uncomment to enable
|
# Icon for notifications with normal urgency, uncomment to enable
|
||||||
#icon = /path/to/icon
|
icon = /home/brodie/.config/dunst/normal.png
|
||||||
|
|
||||||
[urgency_critical]
|
[urgency_critical]
|
||||||
background = "#900000"
|
background = "#900000"
|
||||||
foreground = "#ffffff"
|
foreground = "#ffffff"
|
||||||
frame_color = "#ff0000"
|
frame_color = "#ff0000"
|
||||||
timeout = 0
|
timeout = 5
|
||||||
# Icon for notifications with critical urgency, uncomment to enable
|
# Icon for notifications with critical urgency, uncomment to enable
|
||||||
#icon = /path/to/icon
|
icon = /home/brodie/.config/dunst/critical.png
|
||||||
|
|
||||||
# Every section that isn't one of the above is interpreted as a rules to
|
# Every section that isn't one of the above is interpreted as a rules to
|
||||||
# override settings for certain messages.
|
# override settings for certain messages.
|
||||||
|
|
431
dunst/dunstrc.default
Normal file
431
dunst/dunstrc.default
Normal file
|
@ -0,0 +1,431 @@
|
||||||
|
[global]
|
||||||
|
### Display ###
|
||||||
|
|
||||||
|
# Which monitor should the notifications be displayed on.
|
||||||
|
monitor = 0
|
||||||
|
|
||||||
|
# Display notification on focused monitor. Possible modes are:
|
||||||
|
# mouse: follow mouse pointer
|
||||||
|
# keyboard: follow window with keyboard focus
|
||||||
|
# none: don't follow anything
|
||||||
|
#
|
||||||
|
# "keyboard" needs a window manager that exports the
|
||||||
|
# _NET_ACTIVE_WINDOW property.
|
||||||
|
# This should be the case for almost all modern window managers.
|
||||||
|
#
|
||||||
|
# If this option is set to mouse or keyboard, the monitor option
|
||||||
|
# will be ignored.
|
||||||
|
follow = mouse
|
||||||
|
|
||||||
|
# The geometry of the window:
|
||||||
|
# [{width}]x{height}[+/-{x}+/-{y}]
|
||||||
|
# The geometry of the message window.
|
||||||
|
# The height is measured in number of notifications everything else
|
||||||
|
# in pixels. If the width is omitted but the height is given
|
||||||
|
# ("-geometry x2"), the message window expands over the whole screen
|
||||||
|
# (dmenu-like). If width is 0, the window expands to the longest
|
||||||
|
# message displayed. A positive x is measured from the left, a
|
||||||
|
# negative from the right side of the screen. Y is measured from
|
||||||
|
# the top and down respectively.
|
||||||
|
# The width can be negative. In this case the actual width is the
|
||||||
|
# screen width minus the width defined in within the geometry option.
|
||||||
|
geometry = "300x5-30+20"
|
||||||
|
|
||||||
|
# Show how many messages are currently hidden (because of geometry).
|
||||||
|
indicate_hidden = yes
|
||||||
|
|
||||||
|
# Shrink window if it's smaller than the width. Will be ignored if
|
||||||
|
# width is 0.
|
||||||
|
shrink = no
|
||||||
|
|
||||||
|
# The transparency of the window. Range: [0; 100].
|
||||||
|
# This option will only work if a compositing window manager is
|
||||||
|
# present (e.g. xcompmgr, compiz, etc.).
|
||||||
|
transparency = 0
|
||||||
|
|
||||||
|
# The height of the entire notification. If the height is smaller
|
||||||
|
# than the font height and padding combined, it will be raised
|
||||||
|
# to the font height and padding.
|
||||||
|
notification_height = 0
|
||||||
|
|
||||||
|
# Draw a line of "separator_height" pixel height between two
|
||||||
|
# notifications.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
separator_height = 2
|
||||||
|
|
||||||
|
# Padding between text and separator.
|
||||||
|
padding = 8
|
||||||
|
|
||||||
|
# Horizontal padding.
|
||||||
|
horizontal_padding = 8
|
||||||
|
|
||||||
|
# Defines width in pixels of frame around the notification window.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
frame_width = 3
|
||||||
|
|
||||||
|
# Defines color of the frame around the notification window.
|
||||||
|
frame_color = "#aaaaaa"
|
||||||
|
|
||||||
|
# Define a color for the separator.
|
||||||
|
# possible values are:
|
||||||
|
# * auto: dunst tries to find a color fitting to the background;
|
||||||
|
# * foreground: use the same color as the foreground;
|
||||||
|
# * frame: use the same color as the frame;
|
||||||
|
# * anything else will be interpreted as a X color.
|
||||||
|
separator_color = frame
|
||||||
|
|
||||||
|
# Sort messages by urgency.
|
||||||
|
sort = yes
|
||||||
|
|
||||||
|
# Don't remove messages, if the user is idle (no mouse or keyboard input)
|
||||||
|
# for longer than idle_threshold seconds.
|
||||||
|
# Set to 0 to disable.
|
||||||
|
# A client can set the 'transient' hint to bypass this. See the rules
|
||||||
|
# section for how to disable this if necessary
|
||||||
|
idle_threshold = 120
|
||||||
|
|
||||||
|
### Text ###
|
||||||
|
|
||||||
|
font = Monospace 8
|
||||||
|
|
||||||
|
# The spacing between lines. If the height is smaller than the
|
||||||
|
# font height, it will get raised to the font height.
|
||||||
|
line_height = 0
|
||||||
|
|
||||||
|
# Possible values are:
|
||||||
|
# full: Allow a small subset of html markup in notifications:
|
||||||
|
# <b>bold</b>
|
||||||
|
# <i>italic</i>
|
||||||
|
# <s>strikethrough</s>
|
||||||
|
# <u>underline</u>
|
||||||
|
#
|
||||||
|
# For a complete reference see
|
||||||
|
# <https://developer.gnome.org/pango/stable/pango-Markup.html>.
|
||||||
|
#
|
||||||
|
# strip: This setting is provided for compatibility with some broken
|
||||||
|
# clients that send markup even though it's not enabled on the
|
||||||
|
# server. Dunst will try to strip the markup but the parsing is
|
||||||
|
# simplistic so using this option outside of matching rules for
|
||||||
|
# specific applications *IS GREATLY DISCOURAGED*.
|
||||||
|
#
|
||||||
|
# no: Disable markup parsing, incoming notifications will be treated as
|
||||||
|
# plain text. Dunst will not advertise that it has the body-markup
|
||||||
|
# capability if this is set as a global setting.
|
||||||
|
#
|
||||||
|
# It's important to note that markup inside the format option will be parsed
|
||||||
|
# regardless of what this is set to.
|
||||||
|
markup = full
|
||||||
|
|
||||||
|
# The format of the message. Possible variables are:
|
||||||
|
# %a appname
|
||||||
|
# %s summary
|
||||||
|
# %b body
|
||||||
|
# %i iconname (including its path)
|
||||||
|
# %I iconname (without its path)
|
||||||
|
# %p progress value if set ([ 0%] to [100%]) or nothing
|
||||||
|
# %n progress value if set without any extra characters
|
||||||
|
# %% Literal %
|
||||||
|
# Markup is allowed
|
||||||
|
format = "<b>%s</b>\n%b"
|
||||||
|
|
||||||
|
# Alignment of message text.
|
||||||
|
# Possible values are "left", "center" and "right".
|
||||||
|
alignment = left
|
||||||
|
|
||||||
|
# Vertical alignment of message text and icon.
|
||||||
|
# Possible values are "top", "center" and "bottom".
|
||||||
|
vertical_alignment = center
|
||||||
|
|
||||||
|
# Show age of message if message is older than show_age_threshold
|
||||||
|
# seconds.
|
||||||
|
# Set to -1 to disable.
|
||||||
|
show_age_threshold = 60
|
||||||
|
|
||||||
|
# Split notifications into multiple lines if they don't fit into
|
||||||
|
# geometry.
|
||||||
|
word_wrap = yes
|
||||||
|
|
||||||
|
# When word_wrap is set to no, specify where to make an ellipsis in long lines.
|
||||||
|
# Possible values are "start", "middle" and "end".
|
||||||
|
ellipsize = middle
|
||||||
|
|
||||||
|
# Ignore newlines '\n' in notifications.
|
||||||
|
ignore_newline = no
|
||||||
|
|
||||||
|
# Stack together notifications with the same content
|
||||||
|
stack_duplicates = true
|
||||||
|
|
||||||
|
# Hide the count of stacked notifications with the same content
|
||||||
|
hide_duplicate_count = false
|
||||||
|
|
||||||
|
# Display indicators for URLs (U) and actions (A).
|
||||||
|
show_indicators = yes
|
||||||
|
|
||||||
|
### Icons ###
|
||||||
|
|
||||||
|
# Align icons left/right/off
|
||||||
|
icon_position = left
|
||||||
|
|
||||||
|
# Scale small icons up to this size, set to 0 to disable. Helpful
|
||||||
|
# for e.g. small files or high-dpi screens. In case of conflict,
|
||||||
|
# max_icon_size takes precedence over this.
|
||||||
|
min_icon_size = 0
|
||||||
|
|
||||||
|
# Scale larger icons down to this size, set to 0 to disable
|
||||||
|
max_icon_size = 32
|
||||||
|
|
||||||
|
# Paths to default icons.
|
||||||
|
icon_path = /usr/share/icons/gnome/16x16/status/:/usr/share/icons/gnome/16x16/devices/
|
||||||
|
|
||||||
|
### History ###
|
||||||
|
|
||||||
|
# Should a notification popped up from history be sticky or timeout
|
||||||
|
# as if it would normally do.
|
||||||
|
sticky_history = yes
|
||||||
|
|
||||||
|
# Maximum amount of notifications kept in history
|
||||||
|
history_length = 20
|
||||||
|
|
||||||
|
### Misc/Advanced ###
|
||||||
|
|
||||||
|
# dmenu path.
|
||||||
|
dmenu = /usr/bin/dmenu -p dunst:
|
||||||
|
|
||||||
|
# Browser for opening urls in context menu.
|
||||||
|
browser = /usr/bin/firefox -new-tab
|
||||||
|
|
||||||
|
# Always run rule-defined scripts, even if the notification is suppressed
|
||||||
|
always_run_script = true
|
||||||
|
|
||||||
|
# Define the title of the windows spawned by dunst
|
||||||
|
title = Dunst
|
||||||
|
|
||||||
|
# Define the class of the windows spawned by dunst
|
||||||
|
class = Dunst
|
||||||
|
|
||||||
|
# Print a notification on startup.
|
||||||
|
# This is mainly for error detection, since dbus (re-)starts dunst
|
||||||
|
# automatically after a crash.
|
||||||
|
startup_notification = false
|
||||||
|
|
||||||
|
# Manage dunst's desire for talking
|
||||||
|
# Can be one of the following values:
|
||||||
|
# crit: Critical features. Dunst aborts
|
||||||
|
# warn: Only non-fatal warnings
|
||||||
|
# mesg: Important Messages
|
||||||
|
# info: all unimportant stuff
|
||||||
|
# debug: all less than unimportant stuff
|
||||||
|
verbosity = mesg
|
||||||
|
|
||||||
|
# Define the corner radius of the notification window
|
||||||
|
# in pixel size. If the radius is 0, you have no rounded
|
||||||
|
# corners.
|
||||||
|
# The radius will be automatically lowered if it exceeds half of the
|
||||||
|
# notification height to avoid clipping text and/or icons.
|
||||||
|
corner_radius = 0
|
||||||
|
|
||||||
|
# Ignore the dbus closeNotification message.
|
||||||
|
# Useful to enforce the timeout set by dunst configuration. Without this
|
||||||
|
# parameter, an application may close the notification sent before the
|
||||||
|
# user defined timeout.
|
||||||
|
ignore_dbusclose = false
|
||||||
|
|
||||||
|
### Legacy
|
||||||
|
|
||||||
|
# Use the Xinerama extension instead of RandR for multi-monitor support.
|
||||||
|
# This setting is provided for compatibility with older nVidia drivers that
|
||||||
|
# do not support RandR and using it on systems that support RandR is highly
|
||||||
|
# discouraged.
|
||||||
|
#
|
||||||
|
# By enabling this setting dunst will not be able to detect when a monitor
|
||||||
|
# is connected or disconnected which might break follow mode if the screen
|
||||||
|
# layout changes.
|
||||||
|
force_xinerama = false
|
||||||
|
|
||||||
|
### mouse
|
||||||
|
|
||||||
|
# Defines list of actions for each mouse event
|
||||||
|
# Possible values are:
|
||||||
|
# * none: Don't do anything.
|
||||||
|
# * do_action: If the notification has exactly one action, or one is marked as default,
|
||||||
|
# invoke it. If there are multiple and no default, open the context menu.
|
||||||
|
# * close_current: Close current notification.
|
||||||
|
# * close_all: Close all notifications.
|
||||||
|
# These values can be strung together for each mouse event, and
|
||||||
|
# will be executed in sequence.
|
||||||
|
mouse_left_click = close_current
|
||||||
|
mouse_middle_click = do_action, close_current
|
||||||
|
mouse_right_click = close_all
|
||||||
|
|
||||||
|
# Experimental features that may or may not work correctly. Do not expect them
|
||||||
|
# to have a consistent behaviour across releases.
|
||||||
|
[experimental]
|
||||||
|
# Calculate the dpi to use on a per-monitor basis.
|
||||||
|
# If this setting is enabled the Xft.dpi value will be ignored and instead
|
||||||
|
# dunst will attempt to calculate an appropriate dpi value for each monitor
|
||||||
|
# using the resolution and physical size. This might be useful in setups
|
||||||
|
# where there are multiple screens with very different dpi values.
|
||||||
|
per_monitor_dpi = false
|
||||||
|
|
||||||
|
[shortcuts]
|
||||||
|
|
||||||
|
# Shortcuts are specified as [modifier+][modifier+]...key
|
||||||
|
# Available modifiers are "ctrl", "mod1" (the alt-key), "mod2",
|
||||||
|
# "mod3" and "mod4" (windows-key).
|
||||||
|
# Xev might be helpful to find names for keys.
|
||||||
|
|
||||||
|
# Close notification.
|
||||||
|
close = ctrl+space
|
||||||
|
|
||||||
|
# Close all notifications.
|
||||||
|
close_all = ctrl+shift+space
|
||||||
|
|
||||||
|
# Redisplay last message(s).
|
||||||
|
# On the US keyboard layout "grave" is normally above TAB and left
|
||||||
|
# of "1". Make sure this key actually exists on your keyboard layout,
|
||||||
|
# e.g. check output of 'xmodmap -pke'
|
||||||
|
history = ctrl+grave
|
||||||
|
|
||||||
|
# Context menu.
|
||||||
|
context = ctrl+shift+period
|
||||||
|
|
||||||
|
[urgency_low]
|
||||||
|
# IMPORTANT: colors have to be defined in quotation marks.
|
||||||
|
# Otherwise the "#" and following would be interpreted as a comment.
|
||||||
|
background = "#222222"
|
||||||
|
foreground = "#888888"
|
||||||
|
timeout = 10
|
||||||
|
# Icon for notifications with low urgency, uncomment to enable
|
||||||
|
#icon = /path/to/icon
|
||||||
|
|
||||||
|
[urgency_normal]
|
||||||
|
background = "#285577"
|
||||||
|
foreground = "#ffffff"
|
||||||
|
timeout = 10
|
||||||
|
# Icon for notifications with normal urgency, uncomment to enable
|
||||||
|
#icon = /path/to/icon
|
||||||
|
|
||||||
|
[urgency_critical]
|
||||||
|
background = "#900000"
|
||||||
|
foreground = "#ffffff"
|
||||||
|
frame_color = "#ff0000"
|
||||||
|
timeout = 0
|
||||||
|
# Icon for notifications with critical urgency, uncomment to enable
|
||||||
|
#icon = /path/to/icon
|
||||||
|
|
||||||
|
# Every section that isn't one of the above is interpreted as a rules to
|
||||||
|
# override settings for certain messages.
|
||||||
|
#
|
||||||
|
# Messages can be matched by
|
||||||
|
# appname (discouraged, see desktop_entry)
|
||||||
|
# body
|
||||||
|
# category
|
||||||
|
# desktop_entry
|
||||||
|
# icon
|
||||||
|
# match_transient
|
||||||
|
# msg_urgency
|
||||||
|
# stack_tag
|
||||||
|
# summary
|
||||||
|
#
|
||||||
|
# and you can override the
|
||||||
|
# background
|
||||||
|
# foreground
|
||||||
|
# format
|
||||||
|
# frame_color
|
||||||
|
# fullscreen
|
||||||
|
# new_icon
|
||||||
|
# set_stack_tag
|
||||||
|
# set_transient
|
||||||
|
# timeout
|
||||||
|
# urgency
|
||||||
|
#
|
||||||
|
# Shell-like globbing will get expanded.
|
||||||
|
#
|
||||||
|
# Instead of the appname filter, it's recommended to use the desktop_entry filter.
|
||||||
|
# GLib based applications export their desktop-entry name. In comparison to the appname,
|
||||||
|
# the desktop-entry won't get localized.
|
||||||
|
#
|
||||||
|
# SCRIPTING
|
||||||
|
# You can specify a script that gets run when the rule matches by
|
||||||
|
# setting the "script" option.
|
||||||
|
# The script will be called as follows:
|
||||||
|
# script appname summary body icon urgency
|
||||||
|
# where urgency can be "LOW", "NORMAL" or "CRITICAL".
|
||||||
|
#
|
||||||
|
# NOTE: if you don't want a notification to be displayed, set the format
|
||||||
|
# to "".
|
||||||
|
# NOTE: It might be helpful to run dunst -print in a terminal in order
|
||||||
|
# to find fitting options for rules.
|
||||||
|
|
||||||
|
# Disable the transient hint so that idle_threshold cannot be bypassed from the
|
||||||
|
# client
|
||||||
|
#[transient_disable]
|
||||||
|
# match_transient = yes
|
||||||
|
# set_transient = no
|
||||||
|
#
|
||||||
|
# Make the handling of transient notifications more strict by making them not
|
||||||
|
# be placed in history.
|
||||||
|
#[transient_history_ignore]
|
||||||
|
# match_transient = yes
|
||||||
|
# history_ignore = yes
|
||||||
|
|
||||||
|
# fullscreen values
|
||||||
|
# show: show the notifications, regardless if there is a fullscreen window opened
|
||||||
|
# delay: displays the new notification, if there is no fullscreen window active
|
||||||
|
# If the notification is already drawn, it won't get undrawn.
|
||||||
|
# pushback: same as delay, but when switching into fullscreen, the notification will get
|
||||||
|
# withdrawn from screen again and will get delayed like a new notification
|
||||||
|
#[fullscreen_delay_everything]
|
||||||
|
# fullscreen = delay
|
||||||
|
#[fullscreen_show_critical]
|
||||||
|
# msg_urgency = critical
|
||||||
|
# fullscreen = show
|
||||||
|
|
||||||
|
#[espeak]
|
||||||
|
# summary = "*"
|
||||||
|
# script = dunst_espeak.sh
|
||||||
|
|
||||||
|
#[script-test]
|
||||||
|
# summary = "*script*"
|
||||||
|
# script = dunst_test.sh
|
||||||
|
|
||||||
|
#[ignore]
|
||||||
|
# # This notification will not be displayed
|
||||||
|
# summary = "foobar"
|
||||||
|
# format = ""
|
||||||
|
|
||||||
|
#[history-ignore]
|
||||||
|
# # This notification will not be saved in history
|
||||||
|
# summary = "foobar"
|
||||||
|
# history_ignore = yes
|
||||||
|
|
||||||
|
#[skip-display]
|
||||||
|
# # This notification will not be displayed, but will be included in the history
|
||||||
|
# summary = "foobar"
|
||||||
|
# skip_display = yes
|
||||||
|
|
||||||
|
#[signed_on]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = "*signed on*"
|
||||||
|
# urgency = low
|
||||||
|
#
|
||||||
|
#[signed_off]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *signed off*
|
||||||
|
# urgency = low
|
||||||
|
#
|
||||||
|
#[says]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *says*
|
||||||
|
# urgency = critical
|
||||||
|
#
|
||||||
|
#[twitter]
|
||||||
|
# appname = Pidgin
|
||||||
|
# summary = *twitter.com*
|
||||||
|
# urgency = normal
|
||||||
|
#
|
||||||
|
#[stack-volumes]
|
||||||
|
# appname = "some_volume_notifiers"
|
||||||
|
# set_stack_tag = "volume"
|
||||||
|
#
|
||||||
|
# vim: ft=cfg
|
BIN
dunst/normal.png
Normal file
BIN
dunst/normal.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.8 KiB |
|
@ -27,18 +27,13 @@ margin-top = 0
|
||||||
;; Bar Settings
|
;; Bar Settings
|
||||||
|
|
||||||
[bar/main]
|
[bar/main]
|
||||||
; Use either of the following command to list available outputs:
|
monitor = ${env:MONITOR:}
|
||||||
; If unspecified, the application will pick the first one it finds.
|
|
||||||
; $ polybar -m | cut -d ':' -f 1
|
|
||||||
; $ xrandr -q | grep " connected" | cut -d ' ' -f1
|
|
||||||
monitor =
|
|
||||||
|
|
||||||
; Use the specified monitor as a fallback if the main one is not found.
|
|
||||||
monitor-fallback =
|
monitor-fallback =
|
||||||
|
|
||||||
; Require the monitor to be in connected state
|
; Require the monitor to be in connected state
|
||||||
; XRandR sometimes reports my monitor as being disconnected (when in use)
|
; XRandR sometimes reports my monitor as being disconnected (when in use)
|
||||||
monitor-strict = false
|
monitor-strict = true
|
||||||
|
|
||||||
; Tell the Window Manager not to configure the window.
|
; Tell the Window Manager not to configure the window.
|
||||||
; Use this to detach the bar if your WM is locking its size/position.
|
; Use this to detach the bar if your WM is locking its size/position.
|
||||||
|
@ -55,14 +50,14 @@ fixed-center = true
|
||||||
; the percentage can optionally be extended with a pixel offset like so:
|
; the percentage can optionally be extended with a pixel offset like so:
|
||||||
; 50%:-10, this will result in a width or height of 50% minus 10 pixels
|
; 50%:-10, this will result in a width or height of 50% minus 10 pixels
|
||||||
width = 99%
|
width = 99%
|
||||||
height = 20
|
height = 30
|
||||||
|
|
||||||
; Offset defined as pixel value (e.g. 35) or percentage (e.g. 50%)
|
; Offset defined as pixel value (e.g. 35) or percentage (e.g. 50%)
|
||||||
; the percentage can optionally be extended with a pixel offset like so:
|
; the percentage can optionally be extended with a pixel offset like so:
|
||||||
; 50%:-10, this will result in an offset in the x or y direction
|
; 50%:-10, this will result in an offset in the x or y direction
|
||||||
; of 50% minus 10 pixels
|
; of 50% minus 10 pixels
|
||||||
offset-x = 0.5%
|
offset-x = 0.5%
|
||||||
offset-y = 1%
|
offset-y = 0%
|
||||||
|
|
||||||
; Background ARGB color (e.g. #f00, #ff992a, #ddff1023)
|
; Background ARGB color (e.g. #f00, #ff992a, #ddff1023)
|
||||||
background = ${color.alpha}
|
background = ${color.alpha}
|
||||||
|
@ -70,10 +65,6 @@ background = ${color.alpha}
|
||||||
; Foreground ARGB color (e.g. #f00, #ff992a, #ddff1023)
|
; Foreground ARGB color (e.g. #f00, #ff992a, #ddff1023)
|
||||||
foreground = ${color.fg}
|
foreground = ${color.fg}
|
||||||
|
|
||||||
; Background gradient (vertical steps)
|
|
||||||
; background-[0-9]+ = #aarrggbb
|
|
||||||
;;background-0 =
|
|
||||||
|
|
||||||
; Value used for drawing rounded corners
|
; Value used for drawing rounded corners
|
||||||
; Note: This shouldn't be used together with border-size because the border
|
; Note: This shouldn't be used together with border-size because the border
|
||||||
; doesn't get rounded
|
; doesn't get rounded
|
||||||
|
@ -89,186 +80,35 @@ radius-bottom = 0.0
|
||||||
line-size = 2
|
line-size = 2
|
||||||
line-color = ${color.shade5}
|
line-color = ${color.shade5}
|
||||||
|
|
||||||
; Values applied to all borders
|
font-0 = "scientifica:size=8;2"
|
||||||
; Individual side values can be defined using:
|
font-1 = "FontAwesome:size=10"
|
||||||
; border-{left,top,right,bottom}-size
|
font-2 = "Siji:size=8;2"
|
||||||
; border-{left,top,right,bottom}-color
|
|
||||||
; The top and bottom borders are added to the bar height, so the effective
|
|
||||||
; window height is:
|
|
||||||
; height + border-top-size + border-bottom-size
|
|
||||||
; Meanwhile the effective window width is defined entirely by the width key and
|
|
||||||
; the border is placed withing this area. So you effectively only have the
|
|
||||||
; following horizontal space on the bar:
|
|
||||||
; width - border-right-size - border-left-size
|
|
||||||
border-top-size = 0
|
|
||||||
border-color = ${color.shade5}
|
|
||||||
|
|
||||||
; Number of spaces to add at the beginning/end of the bar
|
modules-left = xwindow sep
|
||||||
; Individual side values can be defined using:
|
modules-center = workspaces
|
||||||
; padding-{left,right}
|
modules-right = sep memory cpu pulseaudio battery date
|
||||||
padding = 0
|
|
||||||
|
|
||||||
; Number of spaces to add before/after each module
|
|
||||||
; Individual side values can be defined using:
|
|
||||||
; module-margin-{left,right}
|
|
||||||
module-margin-left = 0
|
|
||||||
module-margin-right = 0
|
|
||||||
|
|
||||||
; Fonts are defined using <font-name>;<vertical-offset>
|
|
||||||
; Font names are specified using a fontconfig pattern.
|
|
||||||
; font-0 = NotoSans-Regular:size=8;2
|
|
||||||
; font-1 = MaterialIcons:size=10
|
|
||||||
; font-2 = Termsynu:size=8;-1
|
|
||||||
; font-3 = FontAwesome:size=10
|
|
||||||
; See the Fonts wiki page for more details
|
|
||||||
|
|
||||||
font-0 = "Hack Nerd Font:size=8;2"
|
|
||||||
font-1 = "Siji:size=10;2"
|
|
||||||
|
|
||||||
; Modules are added to one of the available blocks
|
|
||||||
; modules-left = cpu ram
|
|
||||||
; modules-center = xwindow xbacklight
|
|
||||||
; modules-right = ipc clock
|
|
||||||
|
|
||||||
;; Available modules
|
|
||||||
;;
|
|
||||||
;alsa backlight battery
|
|
||||||
;bspwm cpu date
|
|
||||||
;filesystem github i3
|
|
||||||
;subscriber demo memory
|
|
||||||
;menu-apps mpd wired-network
|
|
||||||
;wireless-network network pulseaudio
|
|
||||||
;name_you_want temperature my-text-label
|
|
||||||
;backlight keyboard title workspaces
|
|
||||||
;;
|
|
||||||
;; User modules
|
|
||||||
;checknetwork updates window_switch launcher powermenu sysmenu menu
|
|
||||||
;;
|
|
||||||
;; Bars
|
|
||||||
;cpu_bar memory_bar filesystem_bar mpd_bar
|
|
||||||
;volume brightness battery_bar
|
|
||||||
|
|
||||||
modules-left = workspaces sep
|
|
||||||
modules-center =
|
|
||||||
modules-right = sep memory cpu alsa battery network date
|
|
||||||
|
|
||||||
; The separator will be inserted between the output of each module
|
|
||||||
separator =
|
|
||||||
|
|
||||||
; This value is used to add extra spacing between elements
|
|
||||||
; @deprecated: This parameter will be removed in an upcoming version
|
|
||||||
spacing = 0
|
|
||||||
|
|
||||||
; Opacity value between 0.0 and 1.0 used on fade in/out
|
|
||||||
dim-value = 1.0
|
|
||||||
|
|
||||||
; Value to be used to set the WM_NAME atom
|
|
||||||
; If the value is empty or undefined, the atom value
|
|
||||||
; will be created from the following template: polybar-[BAR]_[MONITOR]
|
|
||||||
; NOTE: The placeholders are not available for custom values
|
|
||||||
wm-name = bspwm
|
wm-name = bspwm
|
||||||
|
|
||||||
; Locale used to localize various module data (e.g. date)
|
|
||||||
; Expects a valid libc locale, for example: sv_SE.UTF-8
|
|
||||||
locale = ro_RO.UTF-8
|
locale = ro_RO.UTF-8
|
||||||
|
|
||||||
; Position of the system tray window
|
|
||||||
; If empty or undefined, tray support will be disabled
|
|
||||||
; NOTE: A center aligned tray will cover center aligned modules
|
|
||||||
;
|
|
||||||
; Available positions:
|
|
||||||
; left
|
|
||||||
; center
|
|
||||||
; right
|
|
||||||
; none
|
|
||||||
tray-position = right
|
tray-position = right
|
||||||
|
|
||||||
; If true, the bar will not shift its
|
|
||||||
; contents when the tray changes
|
|
||||||
tray-detached = false
|
tray-detached = false
|
||||||
|
|
||||||
; Tray icon max size
|
|
||||||
tray-maxsize = 16
|
tray-maxsize = 16
|
||||||
|
tray-background = ${color.bg}
|
||||||
; DEPRECATED! Since 3.3.0 the tray always uses pseudo-transparency
|
|
||||||
; Enable pseudo transparency
|
|
||||||
; Will automatically be enabled if a fully transparent
|
|
||||||
; background color is defined using `tray-background`
|
|
||||||
tray-transparent = false
|
|
||||||
|
|
||||||
; Background color for the tray container
|
|
||||||
; ARGB color (e.g. #f00, #ff992a, #ddff1023)
|
|
||||||
; By default the tray container will use the bar
|
|
||||||
; background color.
|
|
||||||
tray-background = ${root.background}
|
|
||||||
|
|
||||||
; Tray offset defined as pixel value (e.g. 35) or percentage (e.g. 50%)
|
|
||||||
tray-offset-x = 0
|
tray-offset-x = 0
|
||||||
tray-offset-y = 0
|
tray-offset-y = 0
|
||||||
|
|
||||||
; Pad the sides of each tray icon
|
|
||||||
tray-padding = 0
|
tray-padding = 0
|
||||||
|
|
||||||
; Scale factor for tray clients
|
|
||||||
tray-scale = 1.0
|
tray-scale = 1.0
|
||||||
|
|
||||||
; Restack the bar window and put it above the
|
|
||||||
; selected window manager's root
|
|
||||||
;
|
|
||||||
; Fixes the issue where the bar is being drawn
|
|
||||||
; on top of fullscreen window's
|
|
||||||
;
|
|
||||||
; Currently supported WM's:
|
|
||||||
; bspwm
|
|
||||||
; i3 (requires: `override-redirect = true`)
|
|
||||||
; wm-restack =
|
|
||||||
|
|
||||||
; Set a DPI values used when rendering text
|
|
||||||
; This only affects scalable fonts
|
|
||||||
; dpi =
|
|
||||||
|
|
||||||
; Enable support for inter-process messaging
|
|
||||||
; See the Messaging wiki page for more details.
|
|
||||||
enable-ipc = true
|
enable-ipc = true
|
||||||
|
|
||||||
; Fallback click handlers that will be called if
|
|
||||||
; there's no matching module handler found.
|
|
||||||
click-left =
|
|
||||||
click-middle =
|
|
||||||
click-right =
|
|
||||||
scroll-up =
|
|
||||||
scroll-down =
|
|
||||||
double-click-left =
|
|
||||||
double-click-middle =
|
|
||||||
double-click-right =
|
|
||||||
|
|
||||||
; Requires polybar to be built with xcursor support (xcb-util-cursor)
|
; Requires polybar to be built with xcursor support (xcb-util-cursor)
|
||||||
; Possible values are:
|
; Possible values are:
|
||||||
; - default : The default pointer as before, can also be an empty string (default)
|
; - default : The default pointer as before, can also be an empty string (default)
|
||||||
; - pointer : Typically in the form of a hand
|
; - pointer : Typically in the form of a hand
|
||||||
; - ns-resize : Up and down arrows, can be used to indicate scrolling
|
; - ns-resize : Up and down arrows, can be used to indicate scrolling
|
||||||
cursor-click =
|
cursor-click = pointer
|
||||||
cursor-scroll =
|
cursor-scroll = default
|
||||||
|
|
||||||
;; WM Workspace Specific
|
|
||||||
|
|
||||||
; bspwm
|
|
||||||
;;scroll-up = bspwm-desknext
|
|
||||||
;;scroll-down = bspwm-deskprev
|
|
||||||
;;scroll-up = bspc desktop -f prev.local
|
|
||||||
;;scroll-down = bspc desktop -f next.local
|
|
||||||
|
|
||||||
;i3
|
|
||||||
;;scroll-up = i3wm-wsnext
|
|
||||||
;;scroll-down = i3wm-wsprev
|
|
||||||
;;scroll-up = i3-msg workspace next_on_output
|
|
||||||
;;scroll-down = i3-msg workspace prev_on_output
|
|
||||||
|
|
||||||
;openbox
|
|
||||||
;awesome
|
|
||||||
;etc
|
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
|
||||||
|
|
||||||
;; Application Settings
|
;; Application Settings
|
||||||
|
|
||||||
|
@ -327,7 +167,8 @@ pseudo-transparency = false
|
||||||
[color]
|
[color]
|
||||||
|
|
||||||
bg = #141C21
|
bg = #141C21
|
||||||
fg = #D9DBDF
|
; fg = #D9DBDF this is something white
|
||||||
|
fg = #AFB42B
|
||||||
fg-alt = #141C21
|
fg-alt = #141C21
|
||||||
|
|
||||||
alpha = #00000000
|
alpha = #00000000
|
||||||
|
@ -351,30 +192,27 @@ shade6 = #E6EE9C
|
||||||
;;
|
;;
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
[module/alsa]
|
[module/pulseaudio]
|
||||||
type = internal/alsa
|
type = internal/pulseaudio
|
||||||
|
|
||||||
|
use-ui-max = true
|
||||||
|
|
||||||
format-volume = <ramp-volume> <label-volume>
|
format-volume = <ramp-volume> <label-volume>
|
||||||
format-volume-background = ${color.shade4}
|
format-volume-background = ${color.shade4}
|
||||||
format-volume-foreground = ${color.fg-alt}
|
format-volume-foreground = ${color.fg-alt}
|
||||||
format-volume-padding = 2
|
format-volume-padding = 2
|
||||||
|
|
||||||
label-volume = %percentage%%
|
# Shows percentage and launches pavucntrol on left click
|
||||||
|
label-volume = %{A3:pavucontrol &:}%percentage%%%{A}
|
||||||
|
|
||||||
format-muted-prefix = " "
|
|
||||||
format-muted-background = ${color.shade4}
|
format-muted-background = ${color.shade4}
|
||||||
format-muted-foreground = ${color.fg-alt}
|
format-muted-foreground = ${color.fg-alt}
|
||||||
format-muted-padding = 2
|
format-muted-padding = 2
|
||||||
label-muted = "Muted"
|
label-muted = %{A3:pavucntrol &:}"Muted"%{A}
|
||||||
|
|
||||||
ramp-volume-0 =
|
ramp-volume-0 =
|
||||||
ramp-volume-1 =
|
ramp-volume-1 =
|
||||||
ramp-volume-2 =
|
ramp-volume-2 =
|
||||||
ramp-volume-3 =
|
|
||||||
ramp-volume-4 =
|
|
||||||
|
|
||||||
ramp-headphones-0 =
|
|
||||||
ramp-headphones-1 =
|
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
|
@ -382,12 +220,12 @@ ramp-headphones-1 =
|
||||||
type = internal/battery
|
type = internal/battery
|
||||||
|
|
||||||
full-at = 99
|
full-at = 99
|
||||||
battery = BAT1
|
battery = BAT0
|
||||||
adapter = ACAD
|
adapter = AC
|
||||||
poll-interval = 2
|
poll-interval = 5
|
||||||
time-format = %H:%M
|
time-format = %H:%M
|
||||||
|
|
||||||
format-charging = <animation-charging> <label-charging>
|
format-charging = <label-charging>
|
||||||
format-charging-background = ${color.shade3}
|
format-charging-background = ${color.shade3}
|
||||||
format-charging-foreground = ${color.fg-alt}
|
format-charging-foreground = ${color.fg-alt}
|
||||||
format-charging-padding = 2
|
format-charging-padding = 2
|
||||||
|
@ -402,37 +240,27 @@ format-full-background = ${color.shade3}
|
||||||
format-full-foreground = ${color.fg-alt}
|
format-full-foreground = ${color.fg-alt}
|
||||||
format-full-padding = 2
|
format-full-padding = 2
|
||||||
|
|
||||||
label-charging = %percentage%%
|
label-charging = %{A1:xfce4-power-manager-settings &:}%percentage%%%{A}
|
||||||
label-discharging = %percentage%%
|
label-discharging = %{A1:xfce4-power-manager-settings &:}%percentage%%%{A}
|
||||||
label-full = 100% Charged
|
label-full = %{A1:xfce4-power-manager-settings &:}100%%{A}
|
||||||
|
|
||||||
; Only applies if <ramp-capacity> is used
|
; Only applies if <ramp-capacity> is used
|
||||||
ramp-capacity-0 =
|
ramp-capacity-0 =
|
||||||
ramp-capacity-1 =
|
ramp-capacity-1 =
|
||||||
ramp-capacity-2 =
|
ramp-capacity-2 =
|
||||||
ramp-capacity-3 =
|
ramp-capacity-3 =
|
||||||
ramp-capacity-4 =
|
ramp-capacity-4 =
|
||||||
ramp-capacity-5 =
|
ramp-capacity-5 =
|
||||||
ramp-capacity-6 =
|
ramp-capacity-6 =
|
||||||
ramp-capacity-7 =
|
ramp-capacity-7 =
|
||||||
ramp-capacity-8 =
|
ramp-capacity-8 =
|
||||||
ramp-capacity-9 =
|
|
||||||
|
|
||||||
; Only applies if <animation-charging> is used
|
|
||||||
animation-charging-0 =
|
|
||||||
animation-charging-1 =
|
|
||||||
animation-charging-2 =
|
|
||||||
animation-charging-3 =
|
|
||||||
|
|
||||||
; Framerate in milliseconds
|
|
||||||
animation-charging-framerate = 750
|
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
[module/cpu]
|
[module/cpu]
|
||||||
type = internal/cpu
|
type = internal/cpu
|
||||||
|
|
||||||
interval = 0.5
|
interval = 5
|
||||||
|
|
||||||
format = <label>
|
format = <label>
|
||||||
format-prefix =
|
format-prefix =
|
||||||
|
@ -449,14 +277,14 @@ type = internal/date
|
||||||
|
|
||||||
interval = 1.0
|
interval = 1.0
|
||||||
|
|
||||||
time = %I:%M %p
|
time = %H:%M
|
||||||
time-alt = %Y-%m-%d%
|
time-alt = %Y-%m-%d%
|
||||||
|
|
||||||
format = <label>
|
format = <label>
|
||||||
format-background = ${color.bg}
|
format-background = ${color.bg}
|
||||||
format-foreground = ${color.shade1}
|
format-foreground = ${color.fg}
|
||||||
format-padding = 2
|
format-padding = 2
|
||||||
|
;TODO on-click calendar (`cal` output) similar to what's used in awesomewm
|
||||||
label = %time%
|
label = %time%
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
@ -464,7 +292,7 @@ label = %time%
|
||||||
[module/memory]
|
[module/memory]
|
||||||
type = internal/memory
|
type = internal/memory
|
||||||
|
|
||||||
interval = 3
|
interval = 5
|
||||||
|
|
||||||
format = <label>
|
format = <label>
|
||||||
format-prefix =
|
format-prefix =
|
||||||
|
@ -472,7 +300,7 @@ format-background = ${color.shade6}
|
||||||
format-foreground = ${color.fg-alt}
|
format-foreground = ${color.fg-alt}
|
||||||
format-padding = 2
|
format-padding = 2
|
||||||
|
|
||||||
label = " %mb_used%"
|
label = " %gb_used%"
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
|
@ -513,65 +341,47 @@ icon-next =
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
[module/network]
|
|
||||||
type = internal/network
|
|
||||||
interface = wlan0
|
|
||||||
|
|
||||||
interval = 1.0
|
|
||||||
accumulate-stats = true
|
|
||||||
unknown-as-up = true
|
|
||||||
|
|
||||||
format-connected = <ramp-signal> <label-connected>
|
|
||||||
format-connected-background = ${color.shade2}
|
|
||||||
format-connected-foreground = ${color.fg-alt}
|
|
||||||
format-connected-padding = 2
|
|
||||||
|
|
||||||
format-disconnected = <label-disconnected>
|
|
||||||
format-disconnected-background = ${color.shade2}
|
|
||||||
format-disconnected-foreground = ${color.fg-alt}
|
|
||||||
format-disconnected-padding = 2
|
|
||||||
|
|
||||||
label-connected = %essid%
|
|
||||||
label-disconnected = Disconnected
|
|
||||||
|
|
||||||
; Only applies if <ramp-signal> is used
|
|
||||||
ramp-signal-0 =
|
|
||||||
ramp-signal-1 =
|
|
||||||
ramp-signal-2 =
|
|
||||||
ramp-signal-3 =
|
|
||||||
ramp-signal-4 =
|
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
|
||||||
|
|
||||||
[module/workspaces]
|
[module/workspaces]
|
||||||
type = internal/xworkspaces
|
type = internal/bspwm
|
||||||
|
|
||||||
pin-workspaces = true
|
pin-workspaces = true
|
||||||
|
|
||||||
enable-click = true
|
enable-click = true
|
||||||
enable-scroll = true
|
enable-scroll = true
|
||||||
|
reverse-scroll = true
|
||||||
|
|
||||||
format = <label-state>
|
format = <label-state>
|
||||||
format-padding = 0
|
|
||||||
|
ws-icon-0 = 1;I
|
||||||
|
ws-icon-1 = 2;II
|
||||||
|
ws-icon-2 = 3;III
|
||||||
|
ws-icon-3 = 4;IV
|
||||||
|
ws-icon-4 = 5;V
|
||||||
|
ws-icon-5 = 6;VI
|
||||||
|
ws-icon-6 = 7;VII
|
||||||
|
ws-icon-7 = 8;VIII
|
||||||
|
ws-icon-8 = 9;IX
|
||||||
|
ws-icon-default = o
|
||||||
|
|
||||||
label-monitor = %name%
|
label-monitor = %name%
|
||||||
|
|
||||||
label-active = %name%
|
label-focused = %icon%
|
||||||
label-active-foreground = ${color.fg-alt}
|
label-focused-foreground = ${color.fg-alt}
|
||||||
label-active-background = ${color.shade6}
|
label-focused-background = ${color.shade6}
|
||||||
|
|
||||||
label-occupied = %icon%
|
label-occupied = %icon%
|
||||||
label-occupied-underline = ${color.fg}
|
label-occupied-underline = ${color.shade4}
|
||||||
|
label-occupied-background = ${color.bg}
|
||||||
|
|
||||||
label-urgent = %icon%
|
label-urgent = %icon%
|
||||||
label-urgent-foreground = ${color.bg}
|
label-urgent-foreground = ${color.fg}
|
||||||
label-urgent-background = ${color.bg}
|
label-urgent-background = ${color.bg}
|
||||||
|
|
||||||
label-empty = %name%
|
label-empty = %icon%
|
||||||
label-empty-background = ${color.bg}
|
|
||||||
label-empty-foreground = ${color.fg}
|
label-empty-foreground = ${color.fg}
|
||||||
|
label-empty-background = ${color.bg}
|
||||||
|
|
||||||
label-active-padding = 2
|
label-focused-padding = 2
|
||||||
label-urgent-padding = 2
|
label-urgent-padding = 2
|
||||||
label-occupied-padding = 2
|
label-occupied-padding = 2
|
||||||
label-empty-padding = 2
|
label-empty-padding = 2
|
||||||
|
@ -597,6 +407,24 @@ content-padding = 2
|
||||||
|
|
||||||
click-left = ~/.config/polybar/scripts/colors_rofi.sh &
|
click-left = ~/.config/polybar/scripts/colors_rofi.sh &
|
||||||
|
|
||||||
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
|
|
||||||
|
[module/xwindow]
|
||||||
|
type = internal/xwindow
|
||||||
|
format = <label>
|
||||||
|
format-background = ${color.bg}
|
||||||
|
format-foreground = ${color.fg}
|
||||||
|
format-padding = 4
|
||||||
|
|
||||||
|
label = %title%
|
||||||
|
label-maxlen = 50
|
||||||
|
|
||||||
|
; Used instead of label when there is no window title
|
||||||
|
; Available tokens:
|
||||||
|
; None
|
||||||
|
label-empty =
|
||||||
|
label-empty-foreground = #707880
|
||||||
|
|
||||||
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
;; _-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
|
||||||
;; __________ ______
|
;; __________ ______
|
||||||
;; / ____/ __ \/ ____/
|
;; / ____/ __ \/ ____/
|
||||||
|
|
|
@ -1,12 +1,26 @@
|
||||||
#!/usr/bin/env sh
|
#!/usr/bin/sh
|
||||||
|
|
||||||
## Add this to your wm startup file.
|
## Add this to your wm startup file.
|
||||||
|
|
||||||
# Terminate already running bar instances
|
# Terminate already running bar instances
|
||||||
killall -q polybar
|
#killall -q polybar
|
||||||
|
|
||||||
# Wait until the processes have been shut down
|
# Wait until the processes have been shut down
|
||||||
while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
#while pgrep -u $UID -x polybar >/dev/null; do sleep 1; done
|
||||||
|
|
||||||
# Launch bar1 and bar2
|
# Launch bar1 and bar2
|
||||||
polybar main -c ~/.config/polybar/config.ini &
|
#polybar main -c ~/.config/polybar/config.ini &
|
||||||
|
|
||||||
|
|
||||||
|
if [ -z "`pgrep -x polybar`" ]; then
|
||||||
|
BAR="main"
|
||||||
|
#Detect if DP or internal laptop displays are connected and show a polybar for them
|
||||||
|
#TODO look at the other laptop for the name of the HDMI output
|
||||||
|
for m in $(polybar -m | grep "\(DP\|LVDS\|eDP\|DisplayPort\)" | cut -d ':' -f1); do
|
||||||
|
MONITOR=$m
|
||||||
|
polybar --reload $BAR -c ~/.config/polybar/config.ini &
|
||||||
|
sleep 1
|
||||||
|
done
|
||||||
|
else
|
||||||
|
polybar-msg cmd restart
|
||||||
|
fi
|
||||||
|
|
|
@ -44,11 +44,11 @@ super + alt + c
|
||||||
|
|
||||||
# dmenu display selector
|
# dmenu display selector
|
||||||
super + p
|
super + p
|
||||||
./display.sh
|
~/.config/bspwm/display.sh
|
||||||
|
|
||||||
#dmenu wacom area set
|
#dmenu wacom area set
|
||||||
super + w
|
super + w
|
||||||
./wacom.sh
|
~/.config/bspwm/wacom.sh
|
||||||
|
|
||||||
#Take a screenshot
|
#Take a screenshot
|
||||||
Print
|
Print
|
||||||
|
@ -91,7 +91,7 @@ super + {_,shift + }c
|
||||||
bspc node -{c,k}
|
bspc node -{c,k}
|
||||||
|
|
||||||
# alternate between the tiled and monocle layout
|
# alternate between the tiled and monocle layout
|
||||||
super + alt + f
|
super + f
|
||||||
bspc desktop -l next
|
bspc desktop -l next
|
||||||
|
|
||||||
# send the newest marked node to the newest preselected node
|
# send the newest marked node to the newest preselected node
|
||||||
|
@ -107,7 +107,7 @@ super + m
|
||||||
#
|
#
|
||||||
|
|
||||||
# set the window state
|
# set the window state
|
||||||
super + {t,alt + t,s,f}
|
super + {t,alt + t,s,alt + f}
|
||||||
bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
|
bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
|
||||||
|
|
||||||
# set the node flags
|
# set the node flags
|
||||||
|
|
Loading…
Reference in a new issue