Changes in: bin,dunst,gtk-3.0,gtk-4.0,hypr,waybar,
|
@ -1,22 +1,52 @@
|
|||
#!/bin/sh
|
||||
# #!/bin/bash
|
||||
# # I copied this script from JaKooLit. https://github.com/JaKooLit. Because I do not have any laptop to test these kinds of features.
|
||||
|
||||
# Use brightnessctl to naturally adjust laptop screen brightness and send a notification
|
||||
iDIR="$HOME/.config/dunst/icons/brightness"
|
||||
notification_timeout=1000
|
||||
|
||||
currentbrightness=$(brightnessctl -e4 -m | awk -F, '{print substr($4, 0, length($4)-1)}')
|
||||
if [ "$currentbrightness" -lt 30 ] && [ "$1" = "down" ]; then exit 1; fi
|
||||
|
||||
send_notification() {
|
||||
brightness=$(brightnessctl -e4 -m | awk -F, '{print substr($4, 0, length($4)-1)}')
|
||||
dunstify -a "Backlight" -u critical -h int:value:"$brightness" -i "brightness" "Brightness" -t 1000
|
||||
# Get brightness
|
||||
get_backlight() {
|
||||
echo $(brightnessctl -m | cut -d, -f4)
|
||||
}
|
||||
|
||||
case $1 in
|
||||
up)
|
||||
brightnessctl -e4 set 1%+
|
||||
send_notification "$1"
|
||||
# Get icons
|
||||
get_icon() {
|
||||
current=$(get_backlight | sed 's/%//')
|
||||
if [ "$current" -le "20" ]; then
|
||||
icon="$iDIR/brightness-20.png"
|
||||
elif [ "$current" -le "40" ]; then
|
||||
icon="$iDIR/brightness-40.png"
|
||||
elif [ "$current" -le "60" ]; then
|
||||
icon="$iDIR/brightness-60.png"
|
||||
elif [ "$current" -le "80" ]; then
|
||||
icon="$iDIR/brightness-80.png"
|
||||
else
|
||||
icon="$iDIR/brightness-100.png"
|
||||
fi
|
||||
}
|
||||
|
||||
# Notify
|
||||
notify_user() {
|
||||
notify-send -e -h string:x-canonical-private-synchronous:brightness_notif -h int:value:$current -u low -i "$icon" "Brightness : $current%"
|
||||
}
|
||||
|
||||
# Change brightness
|
||||
change_backlight() {
|
||||
brightnessctl set "$1" -n && get_icon && notify_user
|
||||
}
|
||||
|
||||
# Execute accordingly
|
||||
case "$1" in
|
||||
"--get")
|
||||
get_backlight
|
||||
;;
|
||||
down)
|
||||
brightnessctl -e4 set 1%-
|
||||
send_notification "$1"
|
||||
"up")
|
||||
change_backlight "+10%"
|
||||
;;
|
||||
"down")
|
||||
change_backlight "10%-"
|
||||
;;
|
||||
*)
|
||||
get_backlight
|
||||
;;
|
||||
esac
|
||||
|
|
213
bin/volume.sh
|
@ -1,55 +1,170 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
iDIR="$HOME/.config/dunst/icons/vol"
|
||||
|
||||
case $1 in
|
||||
up)
|
||||
wpctl set-mute @DEFAULT_AUDIO_SINK@ 0
|
||||
wpctl set-volume -l 2.0 @DEFAULT_AUDIO_SINK@ 2%+
|
||||
;;
|
||||
down)
|
||||
wpctl set-mute @DEFAULT_AUDIO_SINK@ 0
|
||||
wpctl set-volume -l 2.0 @DEFAULT_AUDIO_SINK@ 2%-
|
||||
;;
|
||||
mute)
|
||||
wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {up|down|mute}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
VOLUME=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print int($2 * 100)}')
|
||||
|
||||
NORMALIZED_VOLUME=$((VOLUME / 2))
|
||||
|
||||
send_notification() {
|
||||
# if [ "$1" = "mute" ]; then
|
||||
# ICON='' # Mute icon
|
||||
# MSG="Muted"
|
||||
# elif [ "$NORMALIZED_VOLUME" -lt 50 ]; then
|
||||
# ICON='' # Low volume icon
|
||||
# MSG="Volume: $NORMALIZED_VOLUME%"
|
||||
# elif [ "$NORMALIZED_VOLUME" -lt 90 ]; then
|
||||
# ICON='' # Medium volume icon
|
||||
# MSG="Volume: $NORMALIZED_VOLUME%"
|
||||
# else
|
||||
# ICON='' # High volume icon
|
||||
# MSG="Volume: $NORMALIZED_VOLUME%"
|
||||
# fi
|
||||
|
||||
dunstify -u normal -h "int:value:$NORMALIZED_VOLUME" -a "Volume" "Volume" -t 2000
|
||||
# Get Volume
|
||||
get_volume() {
|
||||
volume=$(pamixer --get-volume)
|
||||
if [[ "$volume" -eq "0" ]]; then
|
||||
echo "Muted"
|
||||
else
|
||||
echo "$volume%"
|
||||
fi
|
||||
}
|
||||
|
||||
case $1 in
|
||||
mute)
|
||||
if wpctl get-volume @DEFAULT_AUDIO_SINK@ | grep -q "MUTED"; then
|
||||
send_notification mute
|
||||
# Get icons
|
||||
get_icon() {
|
||||
current=$(get_volume)
|
||||
if [[ "$current" == "Muted" ]]; then
|
||||
echo "$iDIR/muted-speaker.svg"
|
||||
elif [[ "${current%\%}" = 5 ]]; then
|
||||
echo "$iDIR/vol-5.svg"
|
||||
elif [[ "${current%\%}" = 10 ]]; then
|
||||
echo "$iDIR/vol-10.svg"
|
||||
elif [[ "${current%\%}" = 15 ]]; then
|
||||
echo "$iDIR/vol-15.svg"
|
||||
elif [[ "${current%\%}" = 20 ]]; then
|
||||
echo "$iDIR/vol-20.svg"
|
||||
elif [[ "${current%\%}" = 25 ]]; then
|
||||
echo "$iDIR/vol-25.svg"
|
||||
elif [[ "${current%\%}" = 30 ]]; then
|
||||
echo "$iDIR/vol-30.svg"
|
||||
elif [[ "${current%\%}" = 35 ]]; then
|
||||
echo "$iDIR/vol-35.svg"
|
||||
elif [[ "${current%\%}" = 40 ]]; then
|
||||
echo "$iDIR/vol-40.svg"
|
||||
elif [[ "${current%\%}" = 45 ]]; then
|
||||
echo "$iDIR/vol-45.svg"
|
||||
elif [[ "${current%\%}" = 50 ]]; then
|
||||
echo "$iDIR/vol-50.svg"
|
||||
elif [[ "${current%\%}" = 55 ]]; then
|
||||
echo "$iDIR/vol-55.svg"
|
||||
elif [[ "${current%\%}" = 60 ]]; then
|
||||
echo "$iDIR/vol-60.svg"
|
||||
elif [[ "${current%\%}" = 65 ]]; then
|
||||
echo "$iDIR/vol-65.svg"
|
||||
elif [[ "${current%\%}" = 70 ]]; then
|
||||
echo "$iDIR/vol-70.svg"
|
||||
elif [[ "${current%\%}" = 75 ]]; then
|
||||
echo "$iDIR/vol-75.svg"
|
||||
elif [[ "${current%\%}" = 80 ]]; then
|
||||
echo "$iDIR/vol-80.svg"
|
||||
elif [[ "${current%\%}" = 85 ]]; then
|
||||
echo "$iDIR/vol-85.svg"
|
||||
elif [[ "${current%\%}" = 90 ]]; then
|
||||
echo "$iDIR/vol-90.svg"
|
||||
elif [[ "${current%\%}" = 95 ]]; then
|
||||
echo "$iDIR/vol-95.svg"
|
||||
else
|
||||
send_notification
|
||||
echo "$iDIR/vol-100.svg"
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
send_notification
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
# Notify
|
||||
notify_user() {
|
||||
if [[ "$(get_volume)" == " " ]]; then
|
||||
notify-send -a -r -h string:x-dunst-stack-tag:volume_notif -i "$(get_icon)" "Volume: Muted"
|
||||
else
|
||||
notify-send -a -r -h string:x-dunst-stack-tag:volume_notif -i "$(get_icon)" "Volume: $(get_volume)"
|
||||
fi
|
||||
}
|
||||
|
||||
# Increase Volume
|
||||
inc_volume() {
|
||||
if [ "$(pamixer --get-mute)" == "true" ]; then
|
||||
pamixer -u && notify_user
|
||||
fi
|
||||
pamixer -i 5 && notify_user
|
||||
}
|
||||
|
||||
# Decrease Volume
|
||||
dec_volume() {
|
||||
if [ "$(pamixer --get-mute)" == "true" ]; then
|
||||
pamixer -u && notify_user
|
||||
fi
|
||||
pamixer -d 5 && notify_user
|
||||
}
|
||||
|
||||
# Toggle Mute
|
||||
toggle_mute() {
|
||||
if [ "$(pamixer --get-mute)" == "false" ]; then
|
||||
pamixer -m && notify-send -a -h -i "$iDIR/muted-speaker.svg" "Volume Switched OFF"
|
||||
elif [ "$(pamixer --get-mute)" == "true" ]; then
|
||||
pamixer -u && notify-send -a -h -i "$iDIR/unmuted-speaker.svg" "Volume Switched ON"
|
||||
fi
|
||||
}
|
||||
|
||||
# Toggle Mic
|
||||
toggle_mic() {
|
||||
if [ "$(pamixer --default-source --get-mute)" == "false" ]; then
|
||||
pamixer --default-source -m && notify-send -e -u low -i "$iDIR/muted-mic.svg" "Microphone Switched OFF"
|
||||
elif [ "$(pamixer --default-source --get-mute)" == "true" ]; then
|
||||
pamixer --default-source -u && notify-send -e -u low -i "$iDIR/unmuted-mic.svg" "Microphone Switched ON"
|
||||
fi
|
||||
}
|
||||
|
||||
# Get Mic Icon
|
||||
get_mic_icon() {
|
||||
current=$(pamixer --default-source --get-volume)
|
||||
if [[ "$current" -eq "0" ]]; then
|
||||
echo "$iDIR/muted-mic.svg"
|
||||
else
|
||||
echo "$iDIR/unmuted-mic.svg"
|
||||
fi
|
||||
}
|
||||
|
||||
# Get Microphone Volume
|
||||
get_mic_volume() {
|
||||
volume=$(pamixer --default-source --get-volume)
|
||||
if [[ "$volume" -eq "0" ]]; then
|
||||
echo "Muted"
|
||||
else
|
||||
echo "$volume%"
|
||||
fi
|
||||
}
|
||||
|
||||
# Notify for Microphone
|
||||
notify_mic_user() {
|
||||
volume=$(get_mic_volume)
|
||||
icon=$(get_mic_icon)
|
||||
notify-send -a -r 91190 -t 800 -i "$icon" "Mic=vel: $volume"
|
||||
}
|
||||
|
||||
# Increase MIC Volume
|
||||
inc_mic_volume() {
|
||||
if [ "$(pamixer --default-source --get-mute)" == "true" ]; then
|
||||
pamixer --default-source -u && notify_mic_user
|
||||
fi
|
||||
pamixer --default-source -i 5 && notify_mic_user
|
||||
}
|
||||
|
||||
# Decrease MIC Volume
|
||||
dec_mic_volume() {
|
||||
if [ "$(pamixer --default-source --get-mute)" == "true" ]; then
|
||||
pamixer --default-source -u && notify_mic_user
|
||||
fi
|
||||
pamixer --default-source -d 5 && notify_mic_user
|
||||
}
|
||||
|
||||
# Execute accordingly
|
||||
if [[ "$1" == "--get" ]]; then
|
||||
get_volume
|
||||
elif [[ "$1" == "--inc" ]]; then
|
||||
inc_volume
|
||||
elif [[ "$1" == "--dec" ]]; then
|
||||
dec_volume
|
||||
elif [[ "$1" == "--toggle" ]]; then
|
||||
toggle_mute
|
||||
elif [[ "$1" == "--toggle-mic" ]]; then
|
||||
toggle_mic
|
||||
elif [[ "$1" == "--get-icon" ]]; then
|
||||
get_icon
|
||||
elif [[ "$1" == "--get-mic-icon" ]]; then
|
||||
get_mic_icon
|
||||
elif [[ "$1" == "--mic-inc" ]]; then
|
||||
inc_mic_volume
|
||||
elif [[ "$1" == "--mic-dec" ]]; then
|
||||
dec_mic_volume
|
||||
else
|
||||
get_volume
|
||||
fi
|
||||
|
|
55
bin/volume_bak.sh
Executable file
|
@ -0,0 +1,55 @@
|
|||
#!/bin/sh
|
||||
|
||||
|
||||
case $1 in
|
||||
up)
|
||||
wpctl set-mute @DEFAULT_AUDIO_SINK@ 0
|
||||
wpctl set-volume -l 2.0 @DEFAULT_AUDIO_SINK@ 2%+
|
||||
;;
|
||||
down)
|
||||
wpctl set-mute @DEFAULT_AUDIO_SINK@ 0
|
||||
wpctl set-volume -l 2.0 @DEFAULT_AUDIO_SINK@ 2%-
|
||||
;;
|
||||
mute)
|
||||
wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle
|
||||
;;
|
||||
*)
|
||||
echo "Usage: $0 {up|down|mute}"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
VOLUME=$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | awk '{print int($2 * 100)}')
|
||||
|
||||
NORMALIZED_VOLUME=$((VOLUME / 2))
|
||||
|
||||
send_notification() {
|
||||
# if [ "$1" = "mute" ]; then
|
||||
# ICON='' # Mute icon
|
||||
# MSG="Muted"
|
||||
# elif [ "$NORMALIZED_VOLUME" -lt 50 ]; then
|
||||
# ICON='' # Low volume icon
|
||||
# MSG="Volume: $NORMALIZED_VOLUME%"
|
||||
# elif [ "$NORMALIZED_VOLUME" -lt 90 ]; then
|
||||
# ICON='' # Medium volume icon
|
||||
# MSG="Volume: $NORMALIZED_VOLUME%"
|
||||
# else
|
||||
# ICON='' # High volume icon
|
||||
# MSG="Volume: $NORMALIZED_VOLUME%"
|
||||
# fi
|
||||
|
||||
dunstify -u normal -h "int:value:$NORMALIZED_VOLUME" -a "Volume" "Volume" -t 2000
|
||||
}
|
||||
|
||||
case $1 in
|
||||
mute)
|
||||
if wpctl get-volume @DEFAULT_AUDIO_SINK@ | grep -q "MUTED"; then
|
||||
send_notification mute
|
||||
else
|
||||
send_notification
|
||||
fi
|
||||
;;
|
||||
*)
|
||||
send_notification
|
||||
;;
|
||||
esac
|
446
dunst/dunstrc
|
@ -1,107 +1,413 @@
|
|||
# See dunst(5) for all configuration options
|
||||
|
||||
[global]
|
||||
### Display ###
|
||||
monitor = 0
|
||||
follow = mouse
|
||||
width = 350
|
||||
height = (0,100)
|
||||
follow = none
|
||||
|
||||
### Geometry ###
|
||||
width = auto
|
||||
height = 300
|
||||
origin = top-right
|
||||
offset = 18x18
|
||||
|
||||
# Progress Bar
|
||||
offset = 10x50
|
||||
|
||||
scale = 0
|
||||
|
||||
notification_limit = 20
|
||||
|
||||
### Progress bar ###
|
||||
progress_bar = true
|
||||
progress_bar_height = 8
|
||||
progress_bar_frame_width = 2
|
||||
progress_bar_height = 10
|
||||
progress_bar_frame_width = 3
|
||||
progress_bar_min_width = 150
|
||||
progress_bar_max_width = 1000
|
||||
progress_bar_corner_radius = 2
|
||||
progress_bar_background = "#313244"
|
||||
progress_bar_color = "#a6e3a1"
|
||||
progress_bar_max_width = 300
|
||||
progress_bar_corner_radius = 20
|
||||
progress_bar_corners = all
|
||||
|
||||
# Corner radius for the icon image.
|
||||
icon_corner_radius = 5
|
||||
icon_corners = all
|
||||
indicate_hidden = yes
|
||||
|
||||
# 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.). (X11 only)
|
||||
transparency = 100
|
||||
|
||||
# Notification Layout
|
||||
notification_limit = 2
|
||||
indicate_hidden = true
|
||||
shrink = no
|
||||
separator_height = 2
|
||||
separator_color = "#313244"
|
||||
padding = 15
|
||||
horizontal_padding = 15
|
||||
frame_width = 1
|
||||
frame_color = "#cdd6f4"
|
||||
corner_radius = 6
|
||||
|
||||
# Padding between text and separator.
|
||||
padding = 8
|
||||
|
||||
# Horizontal padding.
|
||||
horizontal_padding = 8
|
||||
|
||||
# Padding between text and icon.
|
||||
text_icon_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 = "#a6c1c7"
|
||||
|
||||
gap_size = 5
|
||||
|
||||
separator_color = auto
|
||||
|
||||
# Sort type.
|
||||
sort = yes
|
||||
idle_threshold = 120
|
||||
|
||||
# Font and Text
|
||||
font = JetbrainsMono Nerd Font Mono 12
|
||||
line_height = 1.2
|
||||
# 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 = JetBrainsMono Nerd Font 12
|
||||
# font = Cascadia Code 12
|
||||
|
||||
# The spacing between lines. If the height is smaller than the
|
||||
# font height, it will get raised to the font height.
|
||||
line_height = 3
|
||||
|
||||
# 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://docs.gtk.org/Pango/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
|
||||
format = "<span weight='bold' font='14' color='#cdd6f4'>%s</span>\n<span font='12' color='#a6adc8'>%b</span>"
|
||||
alignment = left
|
||||
|
||||
# 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 = "%s\n%b"
|
||||
|
||||
# Alignment of message text.
|
||||
# Possible values are "left", "center" and "right".
|
||||
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
|
||||
# seconds.
|
||||
# Set to -1 to disable.
|
||||
show_age_threshold = 60
|
||||
word_wrap = yes
|
||||
|
||||
# Specify where to make an ellipsis in long lines.
|
||||
# Possible values are "start", "middle" and "end".
|
||||
ellipsize = middle
|
||||
ignore_newline = yes
|
||||
|
||||
# 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
|
||||
show_indicators = false
|
||||
|
||||
# Icons
|
||||
icon_position = right
|
||||
min_icon_size = 50
|
||||
max_icon_size = 70
|
||||
icon_path = $HOME/.local/share/fonts/
|
||||
# Display indicators for URLs (U) and actions (A).
|
||||
show_indicators = yes
|
||||
|
||||
# Behavior
|
||||
sticky_history = no
|
||||
### Icons ###
|
||||
|
||||
# Recursive icon lookup. You can set a single theme, instead of having to
|
||||
# define all lookup paths.
|
||||
enable_recursive_icon_lookup = true
|
||||
|
||||
# Set icon theme (only used for recursive icon lookup)
|
||||
icon_theme = Tela-circle-dracula
|
||||
# You can also set multiple icon themes, with the leftmost one being used first.
|
||||
# icon_theme = "Adwaita, breeze"
|
||||
|
||||
# Align icons left/right/top/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 = 32
|
||||
|
||||
# Scale larger icons down to this size, set to 0 to disable
|
||||
max_icon_size = 128
|
||||
|
||||
# Paths to default icons (only necessary when not using recursive icon lookup)
|
||||
icon_path = $HOME/.icons/Tela-circle-dracula/16/actions:$HOME/.icons/Tela-circle-dracula/16/apps:$HOME/.icons/Tela-circle-dracula/16/devices:$HOME/.icons/Tela-circle-dracula/16/mimetypes:$HOME/.icons/Tela-circle-dracula/16/panel:$HOME/.icons/Tela-circle-dracula/16/places:$HOME/.icons/Tela-circle-dracula/16/status
|
||||
|
||||
### 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/xdg-open
|
||||
|
||||
# Always run rule-defined scripts, even if the notification is suppressed
|
||||
always_run_script = true
|
||||
|
||||
# Define the title of the windows spawned by dunst (X11 only)
|
||||
title = Dunst
|
||||
|
||||
# Define the class of the windows spawned by dunst (X11 only)
|
||||
class = Dunst
|
||||
|
||||
# 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 = 15
|
||||
|
||||
# Define which corners to round when drawing the window. If the corner radius
|
||||
# is set to 0 this option will be ignored.
|
||||
#
|
||||
# Comma-separated list of the corners. The accepted corner values are bottom-right,
|
||||
# bottom-left, top-right, top-left, top, bottom, left, right or all.
|
||||
corners = all
|
||||
|
||||
# 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
|
||||
|
||||
### Wayland ###
|
||||
# These settings are Wayland-specific. They have no effect when using X11
|
||||
|
||||
# Uncomment this if you want to let notifications appear under fullscreen
|
||||
# applications (default: overlay)
|
||||
# layer = top
|
||||
|
||||
# Set this to true to use X11 output on Wayland.
|
||||
force_xwayland = 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 Actions
|
||||
mouse_left_click = do_action, close_current
|
||||
### mouse
|
||||
|
||||
# Defines list of actions for each mouse event
|
||||
# Possible values are:
|
||||
# * none: Don't do anything.
|
||||
# * do_action: Invoke the action determined by the action_name rule. If there is no
|
||||
# such action, open the context menu.
|
||||
# * open_url: If the notification has exactly one url, open it. If there are multiple
|
||||
# ones, open the context menu.
|
||||
# * close_current: Close current notification.
|
||||
# * close_all: Close all notifications.
|
||||
# * context: Open context menu for the notification.
|
||||
# * context_all: Open context menu for 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
|
||||
|
||||
|
||||
# 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
|
||||
# set_category
|
||||
# timeout
|
||||
# urgency
|
||||
# icon_position
|
||||
# skip_display
|
||||
# history_ignore
|
||||
# action_name
|
||||
# word_wrap
|
||||
# ellipsize
|
||||
# alignment
|
||||
# hide_text
|
||||
# override_pause_level
|
||||
#
|
||||
# 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.
|
||||
#
|
||||
# You can also allow a notification to appear even when paused. Notification will appear whenever notification's override_pause_level >= dunst's paused level.
|
||||
# This can be used to set partial pause modes, where more urgent notifications get through, but less urgent stay paused. To do that, you can override the following in the rules:
|
||||
# override_pause_level = X
|
||||
|
||||
# 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: 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"
|
||||
# skip_display = true
|
||||
|
||||
#[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
|
||||
|
||||
|
||||
[urgency_low]
|
||||
background = "#1e1e2e" # Mocha Base
|
||||
foreground = "#cdd6f4" # Mocha Text
|
||||
highlight = "#89b4fa" # Mocha Blue for highlight
|
||||
frame_color = "#313244" # Mocha Surface0 for frame
|
||||
timeout = 5
|
||||
border_color = "#89b4fa" # Mocha Blue for border
|
||||
border_width = 1
|
||||
background = "#091016"
|
||||
foreground = "#a6c1c7"
|
||||
timeout = 10
|
||||
|
||||
[urgency_normal]
|
||||
background = "#1e1e2e" # Mocha Base
|
||||
foreground = "#cdd6f4" # Mocha Text
|
||||
highlight = "#a6e3a1" # Mocha Green for highlight
|
||||
frame_color = "#313244" # Mocha Surface0 for frame
|
||||
timeout = 5
|
||||
border_color = "#a6e3a1" # Mocha Green for border
|
||||
border_width = 1
|
||||
background = "#09101680"
|
||||
foreground = "#a6c1c7"
|
||||
timeout = 10
|
||||
override_pause_level = 30
|
||||
|
||||
[urgency_critical]
|
||||
background = "#1e1e2e" # Mocha Base
|
||||
foreground = "#cdd6f4" # Mocha Text
|
||||
highlight = "#f38ba8" # Mocha Red for highlight
|
||||
frame_color = "#f38ba8" # Mocha Red for frame
|
||||
timeout = 10
|
||||
border_color = "#f38ba8" # Mocha Red for border
|
||||
border_width = 1
|
||||
|
||||
[volume]
|
||||
highlight = "#a6e3a1" # Mocha Green
|
||||
icon_size = 60
|
||||
icon_position = right
|
||||
|
||||
[backlight]
|
||||
highlight = "#f5c2e7" # Mocha Pink
|
||||
icon_size = 60
|
||||
icon_position = right
|
||||
background = "#8B0000"
|
||||
foreground = "#a6c1c7"
|
||||
frame_color = "#a6c1c7"
|
||||
timeout = 0
|
||||
override_pause_level = 60
|
||||
|
|
107
dunst/dunstrc_bak
Executable file
|
@ -0,0 +1,107 @@
|
|||
[global]
|
||||
monitor = 0
|
||||
follow = mouse
|
||||
width = 350
|
||||
height = (0,100)
|
||||
origin = top-right
|
||||
offset = 18x18
|
||||
|
||||
# Progress Bar
|
||||
progress_bar = true
|
||||
progress_bar_height = 8
|
||||
progress_bar_frame_width = 2
|
||||
progress_bar_min_width = 150
|
||||
progress_bar_max_width = 1000
|
||||
progress_bar_corner_radius = 2
|
||||
progress_bar_background = "#313244"
|
||||
progress_bar_color = "#a6e3a1"
|
||||
|
||||
# Notification Layout
|
||||
notification_limit = 2
|
||||
indicate_hidden = true
|
||||
shrink = no
|
||||
separator_height = 2
|
||||
separator_color = "#313244"
|
||||
padding = 15
|
||||
horizontal_padding = 15
|
||||
frame_width = 1
|
||||
frame_color = "#cdd6f4"
|
||||
corner_radius = 6
|
||||
sort = yes
|
||||
idle_threshold = 120
|
||||
|
||||
# Font and Text
|
||||
font = JetbrainsMono Nerd Font Mono 12
|
||||
line_height = 1.2
|
||||
markup = full
|
||||
format = "<span weight='bold' font='14' color='#cdd6f4'>%s</span>\n<span font='12' color='#a6adc8'>%b</span>"
|
||||
alignment = left
|
||||
vertical_alignment = center
|
||||
show_age_threshold = 60
|
||||
word_wrap = yes
|
||||
ellipsize = middle
|
||||
ignore_newline = yes
|
||||
stack_duplicates = true
|
||||
hide_duplicate_count = false
|
||||
show_indicators = false
|
||||
|
||||
# Icons
|
||||
icon_position = right
|
||||
min_icon_size = 50
|
||||
max_icon_size = 70
|
||||
icon_path = $HOME/.local/share/fonts/
|
||||
|
||||
# Behavior
|
||||
sticky_history = no
|
||||
history_length = 20
|
||||
always_run_script = true
|
||||
title = Dunst
|
||||
class = Dunst
|
||||
ignore_dbusclose = false
|
||||
force_xwayland = false
|
||||
force_xinerama = false
|
||||
|
||||
# Mouse Actions
|
||||
mouse_left_click = do_action, close_current
|
||||
mouse_middle_click = do_action, close_current
|
||||
mouse_right_click = close_all
|
||||
|
||||
[experimental]
|
||||
per_monitor_dpi = false
|
||||
|
||||
[urgency_low]
|
||||
background = "#1e1e2e" # Mocha Base
|
||||
foreground = "#cdd6f4" # Mocha Text
|
||||
highlight = "#89b4fa" # Mocha Blue for highlight
|
||||
frame_color = "#313244" # Mocha Surface0 for frame
|
||||
timeout = 5
|
||||
border_color = "#89b4fa" # Mocha Blue for border
|
||||
border_width = 1
|
||||
|
||||
[urgency_normal]
|
||||
background = "#1e1e2e" # Mocha Base
|
||||
foreground = "#cdd6f4" # Mocha Text
|
||||
highlight = "#a6e3a1" # Mocha Green for highlight
|
||||
frame_color = "#313244" # Mocha Surface0 for frame
|
||||
timeout = 5
|
||||
border_color = "#a6e3a1" # Mocha Green for border
|
||||
border_width = 1
|
||||
|
||||
[urgency_critical]
|
||||
background = "#1e1e2e" # Mocha Base
|
||||
foreground = "#cdd6f4" # Mocha Text
|
||||
highlight = "#f38ba8" # Mocha Red for highlight
|
||||
frame_color = "#f38ba8" # Mocha Red for frame
|
||||
timeout = 10
|
||||
border_color = "#f38ba8" # Mocha Red for border
|
||||
border_width = 1
|
||||
|
||||
[volume]
|
||||
highlight = "#a6e3a1" # Mocha Green
|
||||
icon_size = 60
|
||||
icon_position = right
|
||||
|
||||
[backlight]
|
||||
highlight = "#f5c2e7" # Mocha Pink
|
||||
icon_size = 60
|
||||
icon_position = right
|
BIN
dunst/icons/brightness/brightness-100.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
dunst/icons/brightness/brightness-20.png
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
dunst/icons/brightness/brightness-40.png
Normal file
After Width: | Height: | Size: 23 KiB |
BIN
dunst/icons/brightness/brightness-60.png
Normal file
After Width: | Height: | Size: 28 KiB |
BIN
dunst/icons/brightness/brightness-80.png
Normal file
After Width: | Height: | Size: 32 KiB |
11
dunst/icons/vol/muted-mic.svg
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="120px" height="120px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<g id="SVGRepo_iconCarrier"> <path d="M9.40137 4.5C9.92008 3.6033 10.8896 3 12 3C13.6569 3 15 4.34315 15 6V10M18 12C18 12.3407 17.9716 12.6748 17.9171 13M3 3L21 21M12 18C8.68629 18 6 15.3137 6 12M12 18C12.3407 18 12.6748 17.9716 13 17.917M12 18V21M12 21H15M12 21H9" stroke="#000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" style="--darkreader-inline-stroke: #ffffff;" data-darkreader-inline-stroke=""/> </g>
|
||||
|
||||
</svg>
|
After Width: | Height: | Size: 855 B |
2
dunst/icons/vol/muted-speaker.svg
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg fill="#000000" width="120px" height="120px" viewBox="0 0 56 56" xmlns="http://www.w3.org/2000/svg"><path d="M 39.1796 33.4024 L 39.1796 8.2070 C 39.1796 6.6367 38.0312 5.3242 36.3906 5.3242 C 35.2421 5.3242 34.4687 5.8398 33.2265 7.0117 L 23.6171 16.1055 C 23.4765 16.2461 23.3359 16.3398 23.1718 16.3867 L 22.2343 16.4570 Z M 46.7733 49.9727 C 47.4999 50.6758 48.6484 50.6758 49.3280 49.9727 C 50.0312 49.2461 50.0548 48.1211 49.3280 47.4180 L 9.2030 7.2929 C 8.4999 6.5898 7.3280 6.5898 6.6249 7.2929 C 5.9452 7.9727 5.9452 9.1680 6.6249 9.8476 Z M 36.4374 48.3320 C 37.8202 48.3320 38.7812 47.5117 39.0859 46.1289 L 11.4062 18.4961 C 10.6562 19.3867 10.2343 20.6758 10.2343 22.3164 L 10.2343 31.4102 C 10.2343 34.9258 12.0155 36.7305 15.3202 36.7305 L 22.2812 36.7305 C 22.5155 36.7305 22.7265 36.8008 22.8671 36.9414 L 33.2265 46.8086 C 34.3515 47.8633 35.2890 48.3320 36.4374 48.3320 Z"/></svg>
|
After Width: | Height: | Size: 1,023 B |
11
dunst/icons/vol/unmuted-mic.svg
Normal file
|
@ -0,0 +1,11 @@
|
|||
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Transformed by: SVG Repo Mixer Tools -->
|
||||
<svg width="120px" height="120px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
|
||||
<g id="SVGRepo_bgCarrier" stroke-width="0"/>
|
||||
|
||||
<g id="SVGRepo_tracerCarrier" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
|
||||
<g id="SVGRepo_iconCarrier"> <path opacity="0.15" d="M9 6C9 4.34315 10.3431 3 12 3C13.6569 3 15 4.34315 15 6V12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12V6Z" fill="#000000" style="--darkreader-inline-fill: #000000;" data-darkreader-inline-fill=""/> <path d="M18 12C18 15.3137 15.3137 18 12 18M12 18C8.68629 18 6 15.3137 6 12M12 18V21M12 21H15M12 21H9M15 6V12C15 13.6569 13.6569 15 12 15C10.3431 15 9 13.6569 9 12V6C9 4.34315 10.3431 3 12 3C13.6569 3 15 4.34315 15 6Z" stroke="#000000" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" style="--darkreader-inline-stroke: #ffffff;" data-darkreader-inline-stroke=""/> </g>
|
||||
|
||||
</svg>
|
After Width: | Height: | Size: 1 KiB |
2
dunst/icons/vol/unmuted-speaker.svg
Normal file
|
@ -0,0 +1,2 @@
|
|||
<?xml version="1.0" encoding="utf-8"?><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
<svg fill="#000000" width="120px" height="120px" viewBox="0 0 56 56" xmlns="http://www.w3.org/2000/svg"><path d="M 39.7305 49.5039 C 41.3242 49.5039 42.4726 48.3320 42.4726 46.7617 L 42.4726 9.3789 C 42.4726 7.8086 41.3242 6.4961 39.6836 6.4961 C 38.5352 6.4961 37.7617 7.0117 36.5195 8.1836 L 26.1836 17.9570 C 26.0195 18.0977 25.8086 18.1680 25.5742 18.1680 L 18.6133 18.1680 C 15.3086 18.1680 13.5274 19.9726 13.5274 23.4883 L 13.5274 32.5820 C 13.5274 36.0977 15.3086 37.9024 18.6133 37.9024 L 25.5742 37.9024 C 25.8086 37.9024 26.0195 37.9726 26.1836 38.1133 L 36.5195 47.9805 C 37.6445 49.0352 38.5820 49.5039 39.7305 49.5039 Z"/></svg>
|
After Width: | Height: | Size: 761 B |
82
dunst/icons/vol/vol-0.svg
Normal file
|
@ -0,0 +1,82 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-0.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="5.7417072"
|
||||
inkscape:cx="4.7895163"
|
||||
inkscape:cy="68.881952"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="-243.58223"
|
||||
cy="248.46727"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(-90)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 133.9083,238.78229 c 7.6032,0 12.672,5.0688 12.672,12.672 v 0 c 0,7.6032 -5.0688,12.672 -12.672,12.672 H 83.22029 c -7.6032,0 -12.672,-5.0688 -12.672,-12.672 v 0 c 0,-7.6032 5.0688,-12.672 12.672,-12.672 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 133.9083,230.50229 c 7.6032,0 12.672,5.0688 12.672,12.672 v 0 c 0,7.6032 -5.0688,12.672 -12.672,12.672 H 83.22029 c -7.6032,0 -12.672,-5.0688 -12.672,-12.672 v 0 c 0,-7.6032 5.0688,-12.672 12.672,-12.672 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
85
dunst/icons/vol/vol-10.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-10.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="46.828408"
|
||||
inkscape:cy="45.914046"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="-154.87985"
|
||||
cy="311.57745"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(-72)"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 143.44771,203.77606 c 7.23107,2.34953 10.48544,8.73659 8.13592,15.96766 v 0 c -2.34952,7.23107 -8.73658,10.48544 -15.96766,8.13592 L 87.408817,212.21619 c -7.231072,-2.34953 -10.485441,-8.73659 -8.135924,-15.96766 v 0 c 2.349518,-7.23107 8.736579,-10.48544 15.967652,-8.13592 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 143.55713,195.74179 c 7.23108,2.34953 10.48545,8.73659 8.13593,15.96766 v 0 c -2.34952,7.23107 -8.73658,10.48544 -15.96765,8.13593 L 87.518248,204.18192 c -7.231071,-2.34952 -10.485442,-8.73658 -8.135923,-15.96765 v 0 c 2.349517,-7.23108 8.736578,-10.48545 15.967651,-8.13593 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
82
dunst/icons/vol/vol-100.svg
Normal file
|
@ -0,0 +1,82 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-100.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="5.7417072"
|
||||
inkscape:cx="30.043329"
|
||||
inkscape:cy="59.30292"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="243.58223"
|
||||
cy="-248.46727"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(90)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 363.02624,264.94217 c -7.6032,0 -12.672,-5.0688 -12.672,-12.672 v 0 c 0,-7.6032 5.0688,-12.672 12.672,-12.672 h 50.68801 c 7.6032,0 12.672,5.0688 12.672,12.672 v 0 c 0,7.6032 -5.0688,12.672 -12.672,12.672 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 363.02624,256.66217 c -7.6032,0 -12.672,-5.0688 -12.672,-12.672 v 0 c 0,-7.6032 5.0688,-12.672 12.672,-12.672 h 50.68801 c 7.6032,0 12.672,5.0688 12.672,12.672 v 0 c 0,7.6032 -5.0688,12.672 -12.672,12.672 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
85
dunst/icons/vol/vol-15.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-15.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="21.269807"
|
||||
inkscape:cy="47.30736"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="-104.23158"
|
||||
cy="331.96997"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(-63)"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 152.22955,187.83746 c 6.7745,3.45179 8.98964,10.26931 5.53786,17.04381 v 0 c -3.45178,6.7745 -10.2693,8.98965 -17.04381,5.53786 L 95.560262,187.40727 c -6.774498,-3.4518 -8.989644,-10.26932 -5.537865,-17.04381 v 0 c 3.45178,-6.7745 10.269303,-8.98965 17.043803,-5.53787 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 152.33264,179.91922 c 6.77451,3.4518 8.98965,10.26932 5.53787,17.04382 v 0 c -3.45178,6.77449 -10.2693,8.98964 -17.0438,5.53787 L 95.663362,179.48903 c -6.774498,-3.45178 -8.989646,-10.2693 -5.537865,-17.0438 v 0 c 3.451781,-6.77451 10.269303,-8.98965 17.043803,-5.53787 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-20.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-20.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="21.269807"
|
||||
inkscape:cy="47.30736"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="-51.016773"
|
||||
cy="344.18829"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(-54)"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 163.39662,173.46888 c 6.15112,4.46905 7.27249,11.54916 2.80344,17.70028 v 0 c -4.46905,6.15112 -11.54916,7.2725 -17.70028,2.80344 l -41.00746,-29.79365 c -6.15111,-4.46907 -7.27249,-11.54918 -2.80344,-17.70028 v 0 c 4.46904,-6.15112 11.54916,-7.2725 17.70028,-2.80345 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 163.47531,165.66425 c 6.15112,4.46907 7.27249,11.54918 2.80344,17.7003 v 0 c -4.46904,6.1511 -11.54915,7.27249 -17.70027,2.80345 l -41.00746,-29.79367 c -6.15112,-4.46905 -7.2725,-11.54916 -2.80345,-17.70028 v 0 c 4.46905,-6.15113 11.54916,-7.2725 17.70028,-2.80345 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-25.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-25.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="35.943144"
|
||||
inkscape:cy="37.379999"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="3.4542394"
|
||||
cy="347.93155"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(-45)"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 176.67395,161.02411 c 5.37627,5.37628 5.37626,12.54464 -1e-5,17.92091 v 0 c -5.37628,5.37628 -12.54464,5.37628 -17.92092,0 L 122.91119,143.1032 c -5.37627,-5.3763 -5.37627,-12.54466 10e-6,-17.92092 v 0 c 5.37626,-5.37628 12.54464,-5.37628 17.92091,0 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 176.71076,153.32788 c 5.37627,5.37629 5.37626,12.54466 -1e-5,17.92093 v 0 c -5.37626,5.37626 -12.54463,5.37627 -17.92091,0 l -35.84183,-35.84184 c -5.37628,-5.37627 -5.37628,-12.54464 0,-17.92091 v 0 c 5.37628,-5.37629 12.54464,-5.37628 17.92091,0 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-30.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-30.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="48.395886"
|
||||
inkscape:cy="29.368444"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="57.840199"
|
||||
cy="343.10757"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(-36)"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 191.7346,150.80959 c 4.46905,6.15112 3.34766,13.23122 -2.80346,17.70027 v 0 c -6.15112,4.46905 -13.23123,3.34767 -17.70028,-2.80345 L 141.4372,124.69896 c -4.46904,-6.15114 -3.34766,-13.23124 2.80346,-17.70028 v 0 c 6.1511,-4.46905 13.23123,-3.34767 17.70027,2.80345 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 191.71309,143.21387 c 4.46905,6.15113 3.34766,13.23125 -2.80346,17.70029 v 0 c -6.1511,4.46904 -13.23122,3.34767 -17.70027,-2.80345 L 141.4157,117.10325 c -4.46905,-6.15112 -3.34767,-13.23123 2.80345,-17.700276 v 0 c 6.15113,-4.469063 13.23123,-3.347675 17.70027,2.803446 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-35.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-35.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="48.395886"
|
||||
inkscape:cy="29.368444"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="110.80194"
|
||||
cy="329.83514"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(-27)"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 208.02747,143.07683 c 3.45179,6.7745 1.23663,13.59201 -5.53787,17.04379 v 0 c -6.77451,3.45178 -13.59203,1.23664 -17.04381,-5.53787 l -23.01187,-45.16333 c -3.45177,-6.77452 -1.23662,-13.592033 5.53788,-17.043805 v 0 c 6.77448,-3.451784 13.59202,-1.236634 17.04379,5.537868 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 208.1129,135.57126 c 3.45178,6.77451 1.23662,13.59204 -5.53788,17.04381 v 0 c -6.77448,3.45178 -13.59201,1.23664 -17.04379,-5.53786 l -23.01187,-45.16335 c -3.45179,-6.774503 -1.23664,-13.592022 5.53786,-17.0438 v 0 c 6.77452,-3.451792 13.59203,-1.236639 17.0438,5.537863 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-40.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-40.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="48.395886"
|
||||
inkscape:cy="29.368444"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="161.03537"
|
||||
cy="308.44107"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(-18)"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 225.32942,137.98804 c 2.34953,7.23107 -0.90485,13.61812 -8.13593,15.96764 v 0 c -7.23108,2.34951 -13.61814,-0.90485 -15.96765,-8.13593 L 185.56238,97.612605 c -2.3495,-7.23109 0.90487,-13.618142 8.13594,-15.967652 v 0 c 7.23105,-2.349525 13.61813,0.904851 15.96764,8.135924 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 225.50637,130.58824 c 2.34951,7.23108 -0.90487,13.61815 -8.13594,15.96766 v 0 c -7.23105,2.34952 -13.61812,-0.90485 -15.96764,-8.13592 L 185.73934,90.212817 c -2.34953,-7.231077 0.90484,-13.618135 8.13592,-15.967651 v 0 c 7.23109,-2.349526 13.61814,0.904848 15.96765,8.135921 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-45.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-45.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="56.886393"
|
||||
inkscape:cy="26.364111"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="207.30357"
|
||||
cy="279.45218"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(-9)"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 243.39468,135.66852 c 1.18941,7.50959 -3.02406,13.30891 -10.53366,14.49831 v 0 c -7.5096,1.1894 -13.30893,-3.02405 -14.49832,-10.53365 l -7.92936,-50.06394 c -1.18938,-7.509606 3.02408,-13.308927 10.53367,-14.498322 v 0 c 7.50957,-1.189413 13.30892,3.024056 14.49831,10.533647 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 243.46521,128.38751 c 1.18939,7.5096 -3.02408,13.30893 -10.53367,14.49833 v 0 c -7.50956,1.18941 -13.3089,-3.02406 -14.49831,-10.53365 l -7.92934,-50.063951 c -1.18942,-7.509598 3.02404,-13.308925 10.53364,-14.498325 v 0 c 7.50961,-1.189408 13.30893,3.024055 14.49832,10.533645 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
84
dunst/icons/vol/vol-5.svg
Normal file
|
@ -0,0 +1,84 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-5.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="11.483414"
|
||||
inkscape:cx="58.08377"
|
||||
inkscape:cy="40.623806"
|
||||
inkscape:window-width="1867"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="-201.71448"
|
||||
cy="283.51288"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
transform="rotate(-81)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 137.08929,220.92041 c 7.50959,1.18941 11.72305,6.98874 10.53365,14.49833 v 0 c -1.18941,7.50959 -6.98874,11.72305 -14.49833,10.53365 L 83.060659,238.02304 C 75.551067,236.83363 71.337608,231.0343 72.52701,223.52471 v 0 c 1.189403,-7.50959 6.988733,-11.72305 14.498325,-10.53365 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 137.36486,212.74235 c 7.5096,1.18941 11.72306,6.98874 10.53365,14.49833 v 0 c -1.1894,7.50959 -6.98873,11.72305 -14.49832,10.53365 l -50.063957,-7.92935 c -7.509592,-1.18941 -11.723052,-6.98874 -10.533649,-14.49833 v 0 c 1.189402,-7.50959 6.988732,-11.72305 14.498324,-10.53365 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
84
dunst/icons/vol/vol-50.svg
Normal file
|
@ -0,0 +1,84 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-50.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="56.886393"
|
||||
inkscape:cy="26.364111"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="248.46727"
|
||||
cy="243.58223"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 261.42012,136.20359 c 0,7.6032 -5.0688,12.67199 -12.67201,12.67198 v 0 c -7.60321,0 -12.67201,-5.06879 -12.672,-12.672 l -1e-5,-50.687993 c 3e-5,-7.60321 5.06882,-12.672001 12.67202,-12.671994 v 0 c 7.60318,-1.4e-5 12.672,5.068798 12.67199,12.671995 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 261.54722,129.02325 c -10e-6,7.60321 -5.06882,12.67201 -12.67202,12.67201 v 0 c -7.60317,1e-5 -12.67198,-5.0688 -12.67199,-12.672 l 10e-6,-50.688006 c -10e-6,-7.603209 5.06879,-12.672006 12.67199,-12.672002 v 0 c 7.60322,-3e-6 12.67201,5.068799 12.672,12.671995 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-55.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-55.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="56.886393"
|
||||
inkscape:cy="26.364111"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="283.51288"
|
||||
cy="201.71448"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
sodipodi:insensitive="true"
|
||||
transform="rotate(9)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 279.13993,139.55187 c -1.1894,7.50959 -6.98873,11.72304 -14.49833,10.53363 v 0 c -7.5096,-1.1894 -11.72307,-6.98872 -10.53365,-14.49832 l 7.92934,-50.063946 c 1.18943,-7.509597 6.98875,-11.72305 14.49834,-10.53364 v 0 c 7.50958,1.189385 11.72305,6.98873 10.53364,14.498317 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 279.30716,132.47982 c -1.18942,7.5096 -6.98876,11.72305 -14.49835,10.53365 v 0 c -7.50956,-1.18939 -11.72303,-6.98873 -10.53364,-14.49832 l 7.92936,-50.063952 c 1.1894,-7.509602 6.98873,-11.723059 14.49832,-10.533652 v 0 c 7.50961,1.189402 11.72306,6.988733 10.53365,14.498319 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-60.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-60.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="56.886393"
|
||||
inkscape:cy="26.364111"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="311.57745"
|
||||
cy="154.87985"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
sodipodi:insensitive="true"
|
||||
transform="rotate(18)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 296.29805,145.63092 c -2.34951,7.23107 -8.73657,10.48543 -15.96765,8.1359 v 0 c -7.23108,-2.34951 -10.48547,-8.73657 -8.13593,-15.96764 l 15.66344,-48.207158 c 2.34955,-7.231074 8.7366,-10.485439 15.96767,-8.135914 v 0 c 7.23106,2.349499 10.48544,8.736576 8.13592,15.967643 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 296.30771,138.6721 c -2.34953,7.23108 -8.7366,10.48543 -15.96767,8.13592 v 0 c -7.23105,-2.3495 -10.48542,-8.73657 -8.13592,-15.96765 l 15.66347,-48.207154 c 2.34951,-7.231083 8.73657,-10.48545 15.96764,-8.135928 v 0 c 7.23109,2.34952 10.48545,8.736581 8.13593,15.967646 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-65.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-65.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="56.886393"
|
||||
inkscape:cy="26.364111"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="331.96997"
|
||||
cy="104.23158"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
sodipodi:insensitive="true"
|
||||
transform="rotate(27)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 312.11369,154.31925 c -3.45177,6.7745 -10.26929,8.98963 -17.04379,5.53784 v 0 c -6.77451,-3.45177 -8.98968,-10.2693 -5.53788,-17.04379 l 23.01186,-45.163348 c 3.45181,-6.774497 10.26932,-8.989641 17.04382,-5.537854 v 0 c 6.77449,3.45176 8.98964,10.269302 5.53786,17.043792 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 312.13027,147.44761 c -3.45179,6.77451 -10.26932,8.98963 -17.04382,5.53786 v 0 c -6.77448,-3.45176 -8.98962,-10.26929 -5.53786,-17.0438 l 23.01189,-45.163335 c 3.45177,-6.774512 10.26929,-8.989656 17.04379,-5.537872 v 0 c 6.77452,3.451785 8.98965,10.269305 5.53787,17.043797 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-70.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-70.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="56.886393"
|
||||
inkscape:cy="26.364111"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="344.18829"
|
||||
cy="51.016773"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
sodipodi:insensitive="true"
|
||||
transform="rotate(36)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 326.37546,165.37472 c -4.46903,6.15112 -11.54914,7.27248 -17.70026,2.80342 v 0 c -6.15113,-4.46904 -7.27253,-11.54916 -2.80346,-17.70026 l 29.79365,-41.00747 c 4.46908,-6.15111 11.54918,-7.27249 17.70029,-2.80343 v 0 c 6.15111,4.46903 7.27249,11.54916 2.80345,17.70027 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 326.38524,158.59028 c -4.46906,6.15112 -11.54917,7.27247 -17.70029,2.80343 v 0 c -6.1511,-4.46902 -7.27248,-11.54914 -2.80345,-17.70027 l 29.79368,-41.00745 c 4.46904,-6.151128 11.54915,-7.272505 17.70027,-2.803453 v 0 c 6.15114,4.469053 7.2725,11.549163 2.80345,17.700273 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-75.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-75.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="84.622047"
|
||||
inkscape:cy="35.072323"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="347.93155"
|
||||
cy="-3.4542394"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
sodipodi:insensitive="true"
|
||||
transform="rotate(45)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 338.73219,178.52511 c -5.37625,5.37628 -12.54462,5.37626 -17.92089,-3e-5 v 0 c -5.37629,-5.37626 -5.37631,-12.54464 -1e-5,-17.92089 l 35.84182,-35.84185 c 5.3763,-5.37626 12.54466,-5.37626 17.92092,2e-5 v 0 c 5.37627,5.37625 5.37627,12.54464 0,17.92091 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 338.72161,171.82573 c -5.37628,5.37627 -12.54464,5.37624 -17.92092,-2e-5 v 0 c -5.37626,-5.37625 -5.37626,-12.54462 0,-17.92091 l 35.84185,-35.84182 c 5.37626,-5.37629 12.54463,-5.37628 17.9209,-10e-6 v 0 c 5.3763,5.37629 5.37628,12.54465 0,17.92091 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-80.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-80.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="88.192414"
|
||||
inkscape:cy="43.911157"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="343.10757"
|
||||
cy="-57.840199"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
sodipodi:insensitive="true"
|
||||
transform="rotate(54)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 348.69936,193.44662 c -6.1511,4.46905 -13.23121,3.34765 -17.70025,-2.80348 v 0 c -4.46907,-6.15111 -3.34771,-13.23123 2.80343,-17.70026 l 41.00745,-29.79368 c 6.15114,-4.46903 13.23125,-3.34765 17.70028,2.80347 v 0 c 4.46905,6.1511 3.34767,13.23123 -2.80345,17.70028 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 348.83562,186.82806 c -6.15112,4.46904 -13.23122,3.34764 -17.70028,-2.80347 v 0 c -4.46904,-6.15109 -3.34766,-13.23121 2.80345,-17.70027 l 41.00747,-29.79365 c 6.15111,-4.46907 13.23122,-3.34768 17.70027,2.80344 v 0 c 4.46907,6.15113 3.34767,13.23124 -2.80345,17.70027 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-85.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-85.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="88.192414"
|
||||
inkscape:cy="43.911157"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="329.83514"
|
||||
cy="-110.80194"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
sodipodi:insensitive="true"
|
||||
transform="rotate(63)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 356.38984,209.74363 c -6.77449,3.45178 -13.592,1.23661 -17.04377,-5.5379 v 0 c -3.45181,-6.77449 -1.23668,-13.59203 5.53784,-17.04379 l 45.16334,-23.01189 c 6.77452,-3.45176 13.59204,-1.23661 17.0438,5.53789 v 0 c 3.45179,6.77448 1.23664,13.59202 -5.53787,17.0438 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 356.47823,203.22787 c -6.7745,3.45177 -13.59201,1.2366 -17.0438,-5.53789 v 0 c -3.45178,-6.77447 -1.23663,-13.592 5.53787,-17.0438 l 45.16335,-23.01186 c 6.7745,-3.4518 13.59201,-1.23664 17.0438,5.53786 v 0 c 3.45179,6.77452 1.23663,13.59203 -5.53787,17.0438 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-90.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-90.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="88.192414"
|
||||
inkscape:cy="43.911157"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="308.44107"
|
||||
cy="-161.03537"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
sodipodi:insensitive="true"
|
||||
transform="rotate(72)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 361.43622,227.04305 c -7.23106,2.34952 -13.61811,-0.90487 -15.96762,-8.13595 v 0 c -2.34954,-7.23107 0.90481,-13.61815 8.1359,-15.96765 l 48.20716,-15.66347 c 7.23109,-2.34949 13.61815,0.90488 15.96764,8.13595 v 0 c 2.34953,7.23105 -0.90484,13.61813 -8.13592,15.96765 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 361.46125,220.62134 c -7.23107,2.3495 -13.61812,-0.90489 -15.96765,-8.13595 v 0 c -2.34952,-7.23104 0.90486,-13.61811 8.13593,-15.96765 l 48.20716,-15.66344 c 7.23108,-2.34954 13.61813,0.90484 15.96765,8.13592 v 0 c 2.34953,7.23109 -0.90485,13.61814 -8.13592,15.96764 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
85
dunst/icons/vol/vol-95.svg
Normal file
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools -->
|
||||
|
||||
<svg
|
||||
height="120px"
|
||||
width="120px"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
viewBox="0 0 496.8 496.8"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="vol-95.svg"
|
||||
inkscape:version="1.2.2 (b0a8486541, 2022-12-01)"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs23" /><sodipodi:namedview
|
||||
id="namedview21"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#000000"
|
||||
borderopacity="0.25"
|
||||
inkscape:showpageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:deskcolor="#d1d1d1"
|
||||
showgrid="true"
|
||||
inkscape:zoom="22.966828"
|
||||
inkscape:cx="88.192414"
|
||||
inkscape:cy="43.911157"
|
||||
inkscape:window-width="2524"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="Layer_1"><inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid3192" /></sodipodi:namedview>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<g
|
||||
id="g3158"
|
||||
inkscape:label="base"
|
||||
sodipodi:insensitive="true"><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 248.87519,445.92001 c 116.5824,0 212.8896,-91.2384 220.4928,-205.2864 0,5.0688 1.2672,8.8704 1.2672,13.9392 0,121.6512 -98.8416,221.76 -221.76,221.76 -121.6512,0 -221.759991,-98.8416 -221.759991,-221.76 0,-5.0688 0,-8.8704 1.2672,-13.9392 7.6032,114.048 103.910391,205.2864 220.492791,205.2864 z"
|
||||
id="path8"
|
||||
inkscape:label="shadow"
|
||||
sodipodi:insensitive="true" /><circle
|
||||
style="display:inline;fill:#283538;fill-opacity:1;stroke-width:1.584"
|
||||
cx="248.8752"
|
||||
cy="243.07127"
|
||||
r="221.76001"
|
||||
id="circle12"
|
||||
inkscape:label="dial"
|
||||
sodipodi:insensitive="true" /><path
|
||||
style="display:inline;fill:#000000;fill-opacity:0.153846;stroke-width:1.58653"
|
||||
d="m 405.74362,86.606184 c 86.3078,86.307816 86.3078,227.192636 0,313.500456 -86.30783,86.3078 -227.19264,86.3078 -313.500453,0"
|
||||
id="path14"
|
||||
inkscape:label="highlight"
|
||||
sodipodi:insensitive="true" /></g>
|
||||
|
||||
<g
|
||||
id="g3198"
|
||||
inkscape:label="main"><circle
|
||||
style="display:none;fill:#000000;fill-opacity:0;stroke-width:1.584"
|
||||
cx="279.45218"
|
||||
cy="-207.30357"
|
||||
r="221.76001"
|
||||
id="circle12-3"
|
||||
inkscape:label="anchor"
|
||||
sodipodi:insensitive="true"
|
||||
transform="rotate(81)" /><path
|
||||
style="display:inline;fill:#121c1b;fill-opacity:1;stroke-width:1.584"
|
||||
d="m 363.71424,244.91891 c -7.50958,1.18941 -13.30889,-3.02407 -14.49829,-10.53367 v 0 c -1.18942,-7.50959 3.02402,-13.30894 10.53363,-14.49832 l 50.06395,-7.92937 c 7.50961,-1.18937 13.30894,3.02409 14.49831,10.53367 v 0 c 1.18942,7.50957 -3.02404,13.30892 -10.53364,14.49833 z"
|
||||
id="path3789"
|
||||
inkscape:label="shadow" /><path
|
||||
style="display:inline;fill:#ea398a;stroke-width:1.584"
|
||||
d="m 363.66198,238.58018 c -7.50959,1.18938 -13.3089,-3.02409 -14.49832,-10.53367 v 0 c -1.18941,-7.50956 3.02406,-13.3089 10.53366,-14.49833 l 50.06395,-7.92933 c 7.5096,-1.18943 13.30892,3.02404 14.49832,10.53364 v 0 c 1.18941,7.50961 -3.02406,13.30893 -10.53364,14.49832 z"
|
||||
id="path915"
|
||||
inkscape:label="pointer" /></g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.3 KiB |
|
@ -1,8 +1,8 @@
|
|||
[Settings]
|
||||
gtk-application-prefer-dark-theme=true
|
||||
gtk-button-images=true
|
||||
gtk-theme-name=Raleigh
|
||||
gtk-icon-theme-name=breeze-dark
|
||||
gtk-theme-name=theme
|
||||
gtk-icon-theme-name=TokyoNight-SE
|
||||
gtk-font-name=Cantarell 11
|
||||
gtk-cursor-theme-name=Bibata-Modern-Ice
|
||||
gtk-cursor-theme-size=0
|
||||
|
@ -15,5 +15,3 @@ gtk-enable-input-feedback-sounds=1
|
|||
gtk-xft-antialias=1
|
||||
gtk-xft-hinting=1
|
||||
gtk-xft-hintstyle=hintfull
|
||||
gtk-xft-rgba=none
|
||||
gtk-modules=gail:atk-bridge
|
||||
|
|
|
@ -95,11 +95,11 @@ animations {
|
|||
enabled = true
|
||||
|
||||
bezier = overshot, 0.05, 0.9, 0.1, 1.1
|
||||
bezier = smoothOut, 0.36, 0, 0.66, -0.56
|
||||
bezier = smoothOut, 0.36, -0.2,1.1,0
|
||||
bezier = smoothIn, 0.25, 1, 0.5, 1
|
||||
|
||||
animation = windows, 1, 5, overshot, slide
|
||||
animation = windowsOut, 1, 4, smoothOut, slide
|
||||
animation = windowsOut, 1, 4, smoothIn, slide
|
||||
animation = windowsMove, 1, 5, smoothIn, slide
|
||||
|
||||
animation = border, 1, 10, default
|
||||
|
@ -114,6 +114,29 @@ animations {
|
|||
|
||||
}
|
||||
|
||||
# animations {
|
||||
# enabled = 1
|
||||
# bezier = overshot,0.13,0.99,0.29,1.15
|
||||
# bezier = win, 0.15,0.90,0.25,1.2
|
||||
# bezier = wind, 0.05, 0.9, 0.1, 1.05
|
||||
# bezier = winIn, 0.1, 1.1, 0.1, 1.1
|
||||
# bezier = winOut, 0.3, -0.3, 0, 1
|
||||
# bezier = liner, 1, 1, 1, 1
|
||||
|
||||
# # animation = windows, 1, 6, wind, slide
|
||||
# animation = windowsIn, 1, 5, overshot, slide
|
||||
# animation = windowsOut, 1, 5, overshot, slide
|
||||
# animation = windowsMove, 1, 5, wind, slide
|
||||
# animation = border, 1, 1, liner
|
||||
# animation = fade, 1, 10, default
|
||||
# animation = workspaces, 1, 5, overshot, slide
|
||||
# animation = layers, 1, 5, overshot, slidefade 40%
|
||||
|
||||
# # animation = layersIn, 1, 4, overshot, slide
|
||||
# # animation = layersOut, 1, 7, overshot, slide 10%
|
||||
# }
|
||||
|
||||
|
||||
dwindle {
|
||||
pseudotile = true
|
||||
preserve_split = true
|
||||
|
@ -207,9 +230,12 @@ bind = $mainMod, M, exec, ~/.config/rofi/clipboard/launcher.sh
|
|||
#bindl = , XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 2%-
|
||||
|
||||
#Volume Control
|
||||
binde = , XF86AudioRaiseVolume, exec, ~/.local/bin/volume.sh up
|
||||
binde = , XF86AudioLowerVolume, exec, ~/.local/bin/volume.sh down
|
||||
binde = , XF86AudioMute, exec, ~/.local/bin/volume.sh mute
|
||||
# binde = , XF86AudioRaiseVolume, exec, ~/.local/bin/volume.sh up
|
||||
# binde = , XF86AudioLowerVolume, exec, ~/.local/bin/volume.sh down
|
||||
# binde = , XF86AudioMute, exec, ~/.local/bin/volume.sh mute
|
||||
binde = , XF86AudioRaiseVolume, exec, ~/.local/bin/volume.sh --inc
|
||||
binde = , XF86AudioLowerVolume, exec, ~/.local/bin/volume.sh --dec
|
||||
binde = , XF86AudioMute, exec, ~/.local/bin/volume.sh --toggle
|
||||
|
||||
#Player Control
|
||||
bindl = , XF86AudioPlay, exec, playerctl play-pause
|
||||
|
|
174
waybar/config-2.jsonc
Normal file
|
@ -0,0 +1,174 @@
|
|||
{
|
||||
"layer": "top",
|
||||
// "position": "bottom",
|
||||
"margin-left": 3,
|
||||
"margin-right": 3,
|
||||
"margin-top": 2,
|
||||
"margin-bottom": 0,
|
||||
"modules-center": [
|
||||
"hyprland/workspaces",
|
||||
"cpu",
|
||||
"memory",
|
||||
"network#speed",
|
||||
"clock",
|
||||
// "custom/cava",
|
||||
"temperature#gpu",
|
||||
"custom/transparency",
|
||||
"custom/wallpaper",
|
||||
"pulseaudio",
|
||||
"backlight",
|
||||
"network",
|
||||
// "bluetooth",
|
||||
"battery"
|
||||
],
|
||||
"custom/cava": {
|
||||
"format": "{}",
|
||||
"exec": "~/.config/waybar/scripts/cava.sh"
|
||||
},
|
||||
"temperature#gpu": {
|
||||
"thermal-zone": 5,
|
||||
"critical-threshold": 80,
|
||||
"format-critical": "{temperatureC}°C ",
|
||||
"format": "{temperatureC}°C ",
|
||||
"tooltip": false
|
||||
},
|
||||
"backlight": {
|
||||
"device": "intel_backlight",
|
||||
"scroll-step": 5,
|
||||
"format": "{icon}",
|
||||
"format-icons": [" ", " ", " ", " "],
|
||||
"tooltip": true,
|
||||
"tooltip-format": "{percent}%"
|
||||
},
|
||||
"network#speed": {
|
||||
"interval": 1,
|
||||
"format": "{ifname}%%",
|
||||
"format-wifi": " {bandwidthDownBytes} {bandwidthUpBytes}",
|
||||
"format-ethernet": " {bandwidthDownBytes} {bandwidthUpBytes} ",
|
||||
"format-disconnected": "",
|
||||
"tooltip-format": "{ipaddr}",
|
||||
"format-linked": " {ifname} (No IP)",
|
||||
"tooltip-format-wifi": "{essid} {icon} {signalStrength}%",
|
||||
"tooltip-format-ethernet": "{ifname} ",
|
||||
"tooltip-format-disconnected": " Disconnected",
|
||||
"max-length": 22,
|
||||
"min-length": 20,
|
||||
"format-icons": ["", "", "", "", ""]
|
||||
},
|
||||
"keyboard-state": {
|
||||
"numlock": true,
|
||||
"capslock": true,
|
||||
"scrolllock": false,
|
||||
"format": "{name} {icon}",
|
||||
"format-icons": {
|
||||
"locked": "\uf023",
|
||||
"unlocked": "\uf3c1"
|
||||
}
|
||||
},
|
||||
"custom/launcher": {
|
||||
"format": "",
|
||||
"tooltip": false,
|
||||
"on-click": "~/.config/rofi/launcher/launcher.sh"
|
||||
},
|
||||
"custom/transparency": {
|
||||
"format": " ",
|
||||
"tooltip": false,
|
||||
"on-click": "~/.config/waybar/scripts/toggle-trans.sh",
|
||||
"format-alt": " "
|
||||
},
|
||||
"cpu": {
|
||||
"interval": 1,
|
||||
"format": "{usage}% <span font='Font Awesome 6 Free-Solid'>\uf2db</span>",
|
||||
"on-click": "kitty btop"
|
||||
},
|
||||
"memory": {
|
||||
"interval": 1,
|
||||
"format": "{percentage}% <span font='Font Awesome 5 Free'>\uf538</span>",
|
||||
"on-click": "kitty btop",
|
||||
"tooltip-format": "{used}/{total} GiB"
|
||||
},
|
||||
"hyprland/workspaces": {
|
||||
"all-outputs": true,
|
||||
"warp-on-scroll": true,
|
||||
"enable-bar-scroll": true,
|
||||
"disable-scroll-wraparound": false,
|
||||
"format": " {icon} ",
|
||||
"format-icons": {
|
||||
"active": "●",
|
||||
"default": "○"
|
||||
},
|
||||
"persistent-workspaces": {
|
||||
"*": 3
|
||||
},
|
||||
"on-click": "activate",
|
||||
"on-scroll-up": "hyprctl dispatch workspace e-1",
|
||||
"on-scroll-down": "hyprctl dispatch workspace e+1"
|
||||
},
|
||||
"custom/weather": {
|
||||
"format": "{}°C",
|
||||
"tooltip": false,
|
||||
"interval": 3600,
|
||||
"exec": "wttrbar --location 'Ahmedabad'",
|
||||
"return-type": "json"
|
||||
},
|
||||
|
||||
"clock": {
|
||||
"format": "{:%I:%M %p • %a %d/%m}",
|
||||
"tooltip": true,
|
||||
"tooltip-format": "<tt>{calendar}</tt>"
|
||||
},
|
||||
"custom/wallpaper": {
|
||||
"format": "\uf03e",
|
||||
"on-click": "~/.config/waybar/scripts/change-wallpaper.sh && hyprpaper",
|
||||
"tooltip": false
|
||||
},
|
||||
"network": {
|
||||
"format-wifi": " {icon}",
|
||||
"format-ethernet": "",
|
||||
"format-icons": [" ", " ", " ", " ", " "],
|
||||
"format-disconnected": "",
|
||||
"interval": 5,
|
||||
"tooltip-format-wifi": " {bandwidthDownBytes} | {bandwidthUpBytes} | {essid}",
|
||||
"tooltip-format-disconnected": "Disconnected",
|
||||
"on-click": "exec ~/.config/rofi/wifi/wifi.sh",
|
||||
"on-click-right": "alacritty -e nmtui"
|
||||
},
|
||||
"battery": {
|
||||
"states": {
|
||||
"good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": " {capacity}% {icon} ",
|
||||
"format-full": "{icon}",
|
||||
"format-plugged": " {capacity}% <span font='Font Awesome 5 Free'>\uf0e7</span> ",
|
||||
"format-alt": "{icon}",
|
||||
"tooltip-format": "{capacity}%, about {time} left",
|
||||
"format-icons": [" ", " ", " ", " "]
|
||||
},
|
||||
"pulseaudio": {
|
||||
"format": "<span font='Font Awesome 5 Free'>{icon}</span>",
|
||||
"format-muted": "<span font='Font Awesome 5 Free'>\uf6a9</span>",
|
||||
"format-icons": {
|
||||
"headphone": "\uf025",
|
||||
"default": ["\uf028"]
|
||||
},
|
||||
"tooltip-format": "{volume}% {desc}",
|
||||
"on-click": "pamixer -t"
|
||||
},
|
||||
"bluetooth": {
|
||||
"format": "{icon}",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
|
||||
"tooltip-format-off": "Bluetooth is off",
|
||||
"tooltip-format-on": "Bluetooth is on",
|
||||
|
||||
"format-connected": "{icon} {num_connections}",
|
||||
"format-connected-battery": "{icon} {device_battery_percentage}%",
|
||||
|
||||
"tooltip-format-connected": "{device_enumerate}",
|
||||
"tooltip-format-enumerate-connected": "{device_alias}\t{device_battery_percentage}%",
|
||||
|
||||
"on-click": "blueman-manager"
|
||||
}
|
||||
}
|
|
@ -1,5 +1,6 @@
|
|||
{
|
||||
"layer": "top",
|
||||
"style": "~/.config/waybar/style-4.css",
|
||||
// "position": "bottom",
|
||||
"margin-left": 3,
|
||||
"margin-right": 3,
|
||||
|
|
|
@ -1,12 +1,10 @@
|
|||
@import 'mocha.css';
|
||||
|
||||
/* reset all styles */
|
||||
* {
|
||||
font-family: JetBrains Mono Nerd Font;
|
||||
min-height: 18px;
|
||||
min-height: 14px;
|
||||
font-size: 12px;
|
||||
border: none;
|
||||
/* border-radius: 2px; */
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
box-shadow: none;
|
||||
|
@ -14,46 +12,33 @@
|
|||
background-color: transparent;
|
||||
}
|
||||
|
||||
#custom-weather {
|
||||
/* margin-left: 6px; */
|
||||
padding: 0px 8px;
|
||||
background: @raisin-black;
|
||||
color: @beige;
|
||||
}
|
||||
|
||||
#keyboard-state {
|
||||
#custom-cava {
|
||||
color: #8fbc8f;
|
||||
border-left: 0px;
|
||||
border-right: 0px;
|
||||
padding: 6px;
|
||||
font-family: 'bargraph';
|
||||
background: @raisin-black;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
color: @beige;
|
||||
padding: 0px 8px 0px 15px;
|
||||
/* border-radius: 0px; */
|
||||
/* border-top-left-radius: 6px; */
|
||||
/* border-bottom-left-radius: 6px; */
|
||||
background: @raisin-black;
|
||||
/* margin-left: 6px; */
|
||||
}
|
||||
|
||||
#memory {
|
||||
color: @beige;
|
||||
padding: 0px 15px 0px 8px;
|
||||
/* border-radius: 0px; */
|
||||
/* border-top-right-radius: 6px; */
|
||||
/* border-bottom-right-radius: 6px; */
|
||||
background: @raisin-black;
|
||||
/* margin-right: 2px; */
|
||||
}
|
||||
|
||||
#temperature.gpu {
|
||||
padding: 0px 12px;
|
||||
/* margin-right: 6px; */
|
||||
color: @celadon;
|
||||
background: @raisin-black;
|
||||
}
|
||||
|
||||
/* general */
|
||||
|
||||
/* General Styling */
|
||||
tooltip,
|
||||
menu,
|
||||
#workspaces,
|
||||
|
@ -65,32 +50,12 @@ menu,
|
|||
#battery,
|
||||
#custom-power {
|
||||
background: @raisin-black;
|
||||
padding-bottom: 7px;
|
||||
padding-top: 7px;
|
||||
padding: 7px 8px;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
border: 1px solid @beige;
|
||||
}
|
||||
|
||||
.modules-right,
|
||||
.modules-center,
|
||||
.modules-left {
|
||||
padding: 0 5px;
|
||||
}
|
||||
|
||||
#custom-wallpaper {
|
||||
font-size: 20px;
|
||||
font-family: 'Font Awesome 5 Free';
|
||||
padding: 0px 8px;
|
||||
/* margin-right: 4px; */
|
||||
color: #f38ba8;
|
||||
background: @raisin-black;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
background: #1e1e2e;
|
||||
background: @raisin-black;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
font-weight: bold;
|
||||
|
@ -98,16 +63,15 @@ tooltip {
|
|||
opacity: 1;
|
||||
font-size: 16px;
|
||||
color: #1e1;
|
||||
border-radius: 6px 0px 0px 6px;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
/* padding: 0px 3px; */
|
||||
/* margin: 5px; */
|
||||
border-radius: 0px;
|
||||
padding: 0px 5px;
|
||||
border-radius: 6px;
|
||||
border: none;
|
||||
min-width: 30px;
|
||||
color: #f5e0dc;
|
||||
background-color: #1e1e2e;
|
||||
/* background-color: #1e1e2e; */
|
||||
transition: all 0.3s ease-in-out;
|
||||
opacity: 0.4;
|
||||
}
|
||||
|
@ -115,7 +79,7 @@ tooltip {
|
|||
#workspaces button.active {
|
||||
color: #1e1e2e;
|
||||
background: #cba6f7;
|
||||
min-width: 30px;
|
||||
min-width: 20px;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
|
@ -125,6 +89,7 @@ tooltip {
|
|||
opacity: 1;
|
||||
animation: none;
|
||||
}
|
||||
|
||||
#clock {
|
||||
padding: 0 15px;
|
||||
color: @beige;
|
||||
|
@ -134,7 +99,6 @@ tooltip {
|
|||
font-size: 18px;
|
||||
transition: none;
|
||||
padding: 0px 10px;
|
||||
/* margin-right: 6px; */
|
||||
background: @raisin-black;
|
||||
color: rgba(137, 220, 235, 1);
|
||||
}
|
||||
|
@ -144,13 +108,21 @@ tooltip {
|
|||
background: @raisin-black;
|
||||
color: #94e2d5;
|
||||
padding: 0px 14px;
|
||||
/* margin-right: 6px; */
|
||||
/* margin-right: 2px; */
|
||||
/* border-radius: 0 6px 6px 0; */
|
||||
}
|
||||
|
||||
#custom-wallpaper {
|
||||
font-size: 20px;
|
||||
font-family: 'Font Awesome 5 Free';
|
||||
padding: 0px 8px;
|
||||
color: #f38ba8;
|
||||
background: @raisin-black;
|
||||
}
|
||||
|
||||
#pulseaudio,
|
||||
#backlight {
|
||||
padding: 0 8px;
|
||||
/* margin: 0 2px; */
|
||||
color: @beige;
|
||||
}
|
||||
|
||||
|
@ -169,49 +141,54 @@ tooltip {
|
|||
#bluetooth {
|
||||
min-width: 20px;
|
||||
padding: 0 10px;
|
||||
/* margin: 0 2px; */
|
||||
}
|
||||
|
||||
#network {
|
||||
min-width: 30px;
|
||||
padding: 0 7px 0 2px;
|
||||
/* margin: 0 2px; */
|
||||
/* border-radius: 0 6px 6px 0; */
|
||||
}
|
||||
|
||||
#battery {
|
||||
color: @mint;
|
||||
min-width: 30px;
|
||||
padding-left: 5px;
|
||||
/* margin: 0 2px; */
|
||||
padding-right: 5px;
|
||||
}
|
||||
|
||||
#battery.charging {
|
||||
color: #eff1f5; /* Text */
|
||||
background: #40a02b; /* Green */
|
||||
color: #33ae18; /* Text */
|
||||
background: @raisin-black;
|
||||
border-radius: 0px 6px 6px 0px;
|
||||
}
|
||||
|
||||
#battery.good:not(.charging) {
|
||||
color: #f9e2af; /* Peach */
|
||||
background: #1e1e2e; /* Base */
|
||||
color: #f8d589;
|
||||
background: @raisin-black;
|
||||
border-radius: 0px 6px 6px 0px;
|
||||
}
|
||||
|
||||
#battery.warning:not(.charging) {
|
||||
color: #eff1f5; /* Text */
|
||||
background: #df8e1d; /* Yellow */
|
||||
color: #e0a858; /* Text */
|
||||
background: @raisin-black;
|
||||
border-radius: 0px 6px 6px 0px;
|
||||
}
|
||||
|
||||
#battery.low:not(.charging) {
|
||||
color: #eff1f5; /* Text */
|
||||
background: #d20f39; /* Red */
|
||||
color: #d20f39; /* Text */
|
||||
background: @raisin-black;
|
||||
border-radius: 0px 6px 6px 0px;
|
||||
}
|
||||
|
||||
#battery.critical:not(.charging) {
|
||||
color: #eff1f5; /* Text */
|
||||
background: #d20f39; /* Red */
|
||||
color: #d20f39; /* Text */
|
||||
background: @raisin-black;
|
||||
animation-name: blink;
|
||||
animation-duration: 0.75s;
|
||||
animation-timing-function: linear;
|
||||
animation-iteration-count: infinite;
|
||||
animation-direction: alternate;
|
||||
border-radius: 0px 6px 6px 0px;
|
||||
}
|
||||
|
||||
@keyframes blink {
|
||||
|
|