Compare commits
No commits in common. "canary" and "main" have entirely different histories.
1
.zshrc
|
@ -97,4 +97,3 @@ HISTFILE=~/.zsh_history
|
||||||
|
|
||||||
# Created by `pipx` on 2024-10-24 13:49:13
|
# Created by `pipx` on 2024-10-24 13:49:13
|
||||||
export PATH="$PATH:/home/doryan/.local/bin"
|
export PATH="$PATH:/home/doryan/.local/bin"
|
||||||
export EDITOR=nvim
|
|
||||||
|
|
|
@ -1,145 +0,0 @@
|
||||||
#
|
|
||||||
# wm independent hotkeys
|
|
||||||
#
|
|
||||||
|
|
||||||
# make screenshot
|
|
||||||
|
|
||||||
Print
|
|
||||||
flameshot gui
|
|
||||||
|
|
||||||
# terminal emulator
|
|
||||||
super + Return
|
|
||||||
tabbed -r 2 st -w ''
|
|
||||||
|
|
||||||
# program launcher
|
|
||||||
super + d
|
|
||||||
~/.config/rofi/launcher/launch.sh
|
|
||||||
|
|
||||||
# make sxhkd reload its configuration files:
|
|
||||||
super + Escape
|
|
||||||
pkill -USR1 -x sxhkd
|
|
||||||
|
|
||||||
#
|
|
||||||
# bspwm hotkeys
|
|
||||||
#
|
|
||||||
|
|
||||||
# quit/restart bspwm
|
|
||||||
super + alt + {q,r}
|
|
||||||
bspc {quit & pkill pipewire & pkill pipewire-pulse,wm -r}
|
|
||||||
|
|
||||||
alt + shift + l
|
|
||||||
betterlockscreen -l dim
|
|
||||||
|
|
||||||
# close and kill
|
|
||||||
super + {q, shift + q}
|
|
||||||
bspc node -{c,k}
|
|
||||||
|
|
||||||
# alternate between the tiled and monocle layout
|
|
||||||
super + m
|
|
||||||
bspc desktop -l next
|
|
||||||
|
|
||||||
# send the newest marked node to the newest preselected node
|
|
||||||
super + y
|
|
||||||
bspc node newest.marked.local -n newest.!automatic.local
|
|
||||||
|
|
||||||
# swap the current node and the biggest window
|
|
||||||
super + g
|
|
||||||
bspc node -s biggest.window
|
|
||||||
|
|
||||||
#
|
|
||||||
# state/flags
|
|
||||||
#
|
|
||||||
|
|
||||||
# set the window state
|
|
||||||
super + {t,shift + t,s,f}
|
|
||||||
bspc node -t {tiled,pseudo_tiled,floating,fullscreen}
|
|
||||||
|
|
||||||
# set the node flags
|
|
||||||
super + ctrl + {m,x,y,z}
|
|
||||||
bspc node -g {marked,locked,sticky,private}
|
|
||||||
|
|
||||||
#
|
|
||||||
# focus/swap
|
|
||||||
#
|
|
||||||
|
|
||||||
# focus the node in the given direction
|
|
||||||
super + {_,shift + }{h,j,k,l}
|
|
||||||
bspc node -{f,s} {west,south,north,east}
|
|
||||||
|
|
||||||
# focus the node for the given path jump
|
|
||||||
super + {p,b,comma,period}
|
|
||||||
bspc node -f @{parent,brother,first,second}
|
|
||||||
|
|
||||||
# focus the next/previous win dow in the current desktop
|
|
||||||
super + {_,shift + }c
|
|
||||||
bspc node -f {next,prev}.local.!hidden.window
|
|
||||||
|
|
||||||
# focus the next/previous desktop in the current monitor
|
|
||||||
super + bracket{left,right}
|
|
||||||
bspc desktop -f {prev,next}.local
|
|
||||||
|
|
||||||
# focus the last node/desktop
|
|
||||||
super + {grave,Tab}
|
|
||||||
bspc {node,desktop} -f last
|
|
||||||
|
|
||||||
# focus the older or newer node in the focus history
|
|
||||||
super + {o,i}
|
|
||||||
bspc wm -h off; \
|
|
||||||
bspc node {older,newer} -f; \
|
|
||||||
bspc wm -h on
|
|
||||||
|
|
||||||
# focus or send to the given desktop
|
|
||||||
super + {_,shift + }{1-9,0}
|
|
||||||
bspc {desktop -f,node -d} '^{1-9,10}'
|
|
||||||
|
|
||||||
#
|
|
||||||
# preselect
|
|
||||||
#
|
|
||||||
|
|
||||||
# preselect the direction
|
|
||||||
super + ctrl + {h,j,k,l}
|
|
||||||
bspc node -p {west,south,north,east}
|
|
||||||
|
|
||||||
# preselect the ratio
|
|
||||||
super + ctrl + {1-9}
|
|
||||||
bspc node -o 0.{1-9}
|
|
||||||
|
|
||||||
# cancel the preselection for the focused node
|
|
||||||
super + ctrl + space
|
|
||||||
bspc node -p cancel
|
|
||||||
|
|
||||||
# cancel the preselection for the focused desktop
|
|
||||||
super + ctrl + shift + space
|
|
||||||
bspc query -N -d | xargs -I id -n 1 bspc node id -p cancel
|
|
||||||
|
|
||||||
#
|
|
||||||
# move/resize
|
|
||||||
#
|
|
||||||
|
|
||||||
{XF86AudioLowerVolume, XF86AudioRaiseVolume}
|
|
||||||
pactl set-sink-volume @DEFAULT_SINK@ {-,+}5%
|
|
||||||
|
|
||||||
XF86AudioMute
|
|
||||||
pactl set-sink-mute @DEFAULT_SINK@ toggle
|
|
||||||
|
|
||||||
super + ctrl + XF86TouchpadToggle
|
|
||||||
touchpad_toggle.sh
|
|
||||||
|
|
||||||
# expand a window by moving one of its side outward
|
|
||||||
super + alt + {h,j,k,l}
|
|
||||||
bspc node -z {left -20 0,bottom 0 20,top 0 -20,right 20 0}
|
|
||||||
|
|
||||||
# contract a window by moving one of its side inward
|
|
||||||
super + alt + shift + {h,j,k,l}
|
|
||||||
bspc node -z {right -20 0,top 0 20,bottom 0 -20,left 20 0}
|
|
||||||
|
|
||||||
# move a floating window
|
|
||||||
super + {Left,Down,Up,Right}
|
|
||||||
bspc node -v {-20 0,0 20,0 -20,20 0}
|
|
||||||
|
|
||||||
#
|
|
||||||
# rofi applets
|
|
||||||
#
|
|
||||||
|
|
||||||
super + P
|
|
||||||
~/.config/rofi/power/launch.sh
|
|
|
@ -1,40 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
export PRIMARY_DISPLAY="$(xrandr | awk '/ primary/{print $1}')"
|
|
||||||
|
|
||||||
pipewire &
|
|
||||||
xhost +si:localuser:$USER &
|
|
||||||
xmodmap ~/.Xmodmap &
|
|
||||||
|
|
||||||
bspc monitor DVI-D-0 -d I II III IV V
|
|
||||||
bspc monitor HDMI-0 -d VI VII VIII IX X
|
|
||||||
|
|
||||||
bspc config border_width 3
|
|
||||||
bspc config window_gap 3
|
|
||||||
|
|
||||||
bspc config pointer_modifier super
|
|
||||||
bspc config focus_follows_pointer true
|
|
||||||
bspc config pointer_follows_focus false
|
|
||||||
bspc config pointer_motion_interval 5
|
|
||||||
bspc config pointer_modifier mod4
|
|
||||||
bspc config pointer_action1 move
|
|
||||||
bspc config pointer_action2 resize_side
|
|
||||||
bspc config pointer_action3 resize_corner
|
|
||||||
|
|
||||||
bspc rule -a scratch sticky=on state=floating focus=on
|
|
||||||
|
|
||||||
bspc config split_ratio 0.52
|
|
||||||
|
|
||||||
bspc config active_border_color "#E0A3B6"
|
|
||||||
bspc config normal_border_color "#8393A1"
|
|
||||||
bspc config focused_border_color "#93D4C5"
|
|
||||||
|
|
||||||
pgrep -x polybar > /dev/null || polybar &
|
|
||||||
pgrep -x sxhkd > /dev/null || sxhkd &
|
|
||||||
pgrep -x xidlehook > /dev/null || xidlehook --detect-sleep --not-when-fullscreen --not-when-audio --timer 300 'betterlockscreen -l' '' --timer 1200 'sudo zzz' '' &
|
|
||||||
pgrep -x xmousepaste > /dev/null || xmousepasteblock &
|
|
||||||
|
|
||||||
xsetroot -cursor_name left_ptr
|
|
||||||
picom &
|
|
||||||
feh --bg-fill ~/.bg/bg_5.png &
|
|
||||||
dunst &
|
|
|
@ -1,32 +0,0 @@
|
||||||
#!/bin/bash
|
|
||||||
|
|
||||||
send_notification() {
|
|
||||||
TODAY=$(date '+%-d')
|
|
||||||
HEAD=$(cal "$1" | head -n1)
|
|
||||||
BODY=$(cal "$1" | tail -n7 | sed -z "s|$TODAY|<u><b>$TODAY</b></u>|1")
|
|
||||||
FOOT="\n<i> ~ calendar</i> "
|
|
||||||
dunstify -h string:x-canonical-private-synchronous:calendar \
|
|
||||||
"$HEAD" "$BODY$FOOT" -u NORMAL
|
|
||||||
}
|
|
||||||
|
|
||||||
handle_action() {
|
|
||||||
echo "$DIFF" > "$TMP"
|
|
||||||
if [ "$DIFF" -ge 0 ]; then
|
|
||||||
send_notification "+$DIFF months"
|
|
||||||
else
|
|
||||||
send_notification "$((-DIFF)) months ago"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
TMP=${XDG_RUNTIME_DIR:-/tmp}/"$UID"_calendar_notification_month
|
|
||||||
touch "$TMP"
|
|
||||||
|
|
||||||
DIFF=$(<"$TMP")
|
|
||||||
|
|
||||||
case $1 in
|
|
||||||
"curr") DIFF=0;;
|
|
||||||
"next") DIFF=$((DIFF+1));;
|
|
||||||
"prev") DIFF=$((DIFF-1));;
|
|
||||||
esac
|
|
||||||
|
|
||||||
handle_action
|
|
|
@ -1,220 +0,0 @@
|
||||||
;==========================================================
|
|
||||||
;
|
|
||||||
;
|
|
||||||
; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗
|
|
||||||
; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗
|
|
||||||
; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝
|
|
||||||
; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗
|
|
||||||
; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║
|
|
||||||
; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
|
|
||||||
;
|
|
||||||
;
|
|
||||||
; To learn more about how to configure Polybar
|
|
||||||
; go to https://github.com/polybar/polybar
|
|
||||||
;
|
|
||||||
; The README contains a lot of information
|
|
||||||
;
|
|
||||||
;==========================================================
|
|
||||||
|
|
||||||
[colors]
|
|
||||||
background = #333333
|
|
||||||
background-alt = #2E2E2E
|
|
||||||
foreground = #8C8C8C
|
|
||||||
primary = #93D4C5
|
|
||||||
secondary = #E0A3B6
|
|
||||||
alert = #E7A063
|
|
||||||
disabled = #9DA991
|
|
||||||
|
|
||||||
[bar/example]
|
|
||||||
width = 100%
|
|
||||||
height = 22pt
|
|
||||||
|
|
||||||
; dpi = 96
|
|
||||||
|
|
||||||
background = ${colors.background}
|
|
||||||
foreground = ${colors.foreground}
|
|
||||||
|
|
||||||
line-size = 2pt
|
|
||||||
|
|
||||||
padding-left = 0
|
|
||||||
padding-right = 1
|
|
||||||
|
|
||||||
module-margin = 1
|
|
||||||
|
|
||||||
font-0 = "FiraCode Nerd Font Propo:size=10;2"
|
|
||||||
|
|
||||||
modules-left = xworkspaces
|
|
||||||
modules-center = xwindow
|
|
||||||
modules-right = cpu memory pulseaudio xkeyboard eth date calendar powermenu
|
|
||||||
|
|
||||||
cursor-click = pointer
|
|
||||||
cursor-scroll = ns-resize
|
|
||||||
|
|
||||||
enable-ipc = true
|
|
||||||
|
|
||||||
; wm-restack = generic
|
|
||||||
wm-restack = bspwm
|
|
||||||
; wm-restack = i3
|
|
||||||
|
|
||||||
; override-redirect = true
|
|
||||||
|
|
||||||
; This module is not active by default (to enable it, add it to one of the
|
|
||||||
; modules-* list above).
|
|
||||||
; Please note that only a single tray can exist at any time. If you launch
|
|
||||||
; multiple bars with this module, only a single one will show it, the others
|
|
||||||
; will produce a warning. Which bar gets the module is timing dependent and can
|
|
||||||
; be quite random.
|
|
||||||
; For more information, see the documentation page for this module:
|
|
||||||
; https://polybar.readthedocs.io/en/stable/user/modules/tray.html
|
|
||||||
|
|
||||||
[module/systray]
|
|
||||||
type = internal/tray
|
|
||||||
|
|
||||||
format-margin = 8pt
|
|
||||||
tray-spacing = 16pt
|
|
||||||
|
|
||||||
[module/xworkspaces]
|
|
||||||
type = internal/xworkspaces
|
|
||||||
|
|
||||||
label-active = %name%
|
|
||||||
label-active-background = ${colors.background-alt}
|
|
||||||
label-active-underline= ${colors.primary}
|
|
||||||
label-active-padding = 1
|
|
||||||
|
|
||||||
label-occupied = %name%
|
|
||||||
label-occupied-padding = 1
|
|
||||||
|
|
||||||
label-urgent = %name%
|
|
||||||
label-urgent-background = ${colors.alert}
|
|
||||||
label-urgent-padding = 1
|
|
||||||
|
|
||||||
label-empty = %name%
|
|
||||||
label-empty-foreground = ${colors.disabled}
|
|
||||||
label-empty-padding = 1
|
|
||||||
|
|
||||||
[module/xwindow]
|
|
||||||
type = internal/xwindow
|
|
||||||
label = %title:0:60:...%
|
|
||||||
|
|
||||||
[module/filesystem]
|
|
||||||
type = internal/fs
|
|
||||||
interval = 25
|
|
||||||
|
|
||||||
mount-0 = /
|
|
||||||
|
|
||||||
label-mounted = %{F#89A989}%mountpoint%%{F-} %percentage_used%%
|
|
||||||
|
|
||||||
label-unmounted = %mountpoint% not mounted
|
|
||||||
label-unmounted-foreground = ${colors.disabled}
|
|
||||||
|
|
||||||
[module/pulseaudio]
|
|
||||||
type = internal/pulseaudio
|
|
||||||
|
|
||||||
ramp-volume-foreground = ${colors.primary}
|
|
||||||
|
|
||||||
format-volume = <ramp-volume> <label-volume>
|
|
||||||
|
|
||||||
label-volume = %percentage%%
|
|
||||||
|
|
||||||
label-muted = muted
|
|
||||||
|
|
||||||
click-right = ~/.config/rofi/volume/launch.sh
|
|
||||||
|
|
||||||
; Only applies if <ramp-volume> is used
|
|
||||||
ramp-volume-0 =
|
|
||||||
ramp-volume-1 =
|
|
||||||
ramp-volume-2 =
|
|
||||||
|
|
||||||
[module/xkeyboard]
|
|
||||||
type = internal/xkeyboard
|
|
||||||
blacklist-0 = num lock
|
|
||||||
|
|
||||||
label-layout = %layout%
|
|
||||||
label-layout-foreground = ${colors.primary}
|
|
||||||
|
|
||||||
label-indicator-padding = 2
|
|
||||||
label-indicator-margin = 1
|
|
||||||
label-indicator-foreground = ${colors.background}
|
|
||||||
label-indicator-background = ${colors.secondary}
|
|
||||||
|
|
||||||
[module/memory]
|
|
||||||
type = internal/memory
|
|
||||||
interval = 2
|
|
||||||
format-prefix = " "
|
|
||||||
format-prefix-foreground = ${colors.primary}
|
|
||||||
label = %percentage_used:2%%
|
|
||||||
|
|
||||||
[module/cpu]
|
|
||||||
type = internal/cpu
|
|
||||||
interval = 2
|
|
||||||
format-prefix = " "
|
|
||||||
format-prefix-foreground = ${colors.primary}
|
|
||||||
label = %percentage:2%%
|
|
||||||
|
|
||||||
[network-base]
|
|
||||||
type = internal/network
|
|
||||||
interval = 5
|
|
||||||
|
|
||||||
format-disconnected = <label-disconnected>
|
|
||||||
label-disconnected = disconnected
|
|
||||||
|
|
||||||
[module/wlan]
|
|
||||||
inherit = network-base
|
|
||||||
interface-type = wireless
|
|
||||||
|
|
||||||
ramp-signal-foreground = ${colors.primary}
|
|
||||||
|
|
||||||
format-connected = <ramp-signal> <label-connected>
|
|
||||||
|
|
||||||
label-connected = %essid% %local_ip%
|
|
||||||
|
|
||||||
ramp-signal-0 =
|
|
||||||
ramp-signal-1 =
|
|
||||||
ramp-signal-2 =
|
|
||||||
ramp-signal-3 =
|
|
||||||
ramp-signal-4 =
|
|
||||||
ramp-signal-5 =
|
|
||||||
|
|
||||||
[module/eth]
|
|
||||||
inherit = network-base
|
|
||||||
interface-type = wired
|
|
||||||
|
|
||||||
format-connected = <label-connected>
|
|
||||||
|
|
||||||
format-connected-prefix = " "
|
|
||||||
format-connected-prefix-foreground = ${colors.primary}
|
|
||||||
|
|
||||||
label-connected = %local_ip%
|
|
||||||
label-connected-foreground = ${colors.foreground}
|
|
||||||
|
|
||||||
[module/date]
|
|
||||||
type = internal/date
|
|
||||||
interval = 1
|
|
||||||
|
|
||||||
date = %H:%M
|
|
||||||
|
|
||||||
label = %date%
|
|
||||||
label-foreground = ${colors.primary}
|
|
||||||
|
|
||||||
[module/calendar]
|
|
||||||
type = custom/script
|
|
||||||
label = %output:0:15:...%
|
|
||||||
format-prefix = " "
|
|
||||||
format-prefix-foreground = ${colors.primary}
|
|
||||||
format = <label>
|
|
||||||
exec = date "+%d %b %Y"
|
|
||||||
click-left = ~/.config/polybar/calendar curr
|
|
||||||
scroll-up = ~/.config/polybar/calendar next
|
|
||||||
scroll-down = ~/.config/polybar/calendar prev
|
|
||||||
|
|
||||||
[settings]
|
|
||||||
screenchange-reload = true
|
|
||||||
pseudo-transparency = true
|
|
||||||
|
|
||||||
[module/powermenu]
|
|
||||||
type = custom/text
|
|
||||||
|
|
||||||
content = " "
|
|
||||||
content-foreground = ${colors.primary}
|
|
||||||
|
|
||||||
click-left = ~/.config/rofi/power/launch.sh
|
|
|
@ -10,7 +10,7 @@ wallpaper_cmd="feh --bg-fill"
|
||||||
quiet=false
|
quiet=false
|
||||||
|
|
||||||
# i3lockcolor_bin="i3lock-color" # Manually set command for i3lock-color
|
# i3lockcolor_bin="i3lock-color" # Manually set command for i3lock-color
|
||||||
suspend_command="sudo zzz"
|
suspend_command="loginctl suspend"# Manually change action e.g. hibernate/suspend-command
|
||||||
|
|
||||||
# i3lock-color - custom arguments
|
# i3lock-color - custom arguments
|
||||||
# lockargs=() # overwriting default "(-n)"
|
# lockargs=() # overwriting default "(-n)"
|
||||||
|
|
|
@ -1,11 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/sh
|
||||||
|
|
||||||
export PRIMARY_DISPLAY="$(xrandr | awk '/ primary/{print $1}')"
|
bspc monitor DVI-I-1 -d I II III IV V
|
||||||
|
bspc monitor HDMI-1 -d VI VII VIII IX X
|
||||||
xhost +si:localuser:$USER &
|
|
||||||
xmodmap ~/.Xmodmap
|
|
||||||
|
|
||||||
bspc monitor -d 1 2 3 4 5
|
|
||||||
|
|
||||||
bspc config border_width 3
|
bspc config border_width 3
|
||||||
bspc config window_gap 5
|
bspc config window_gap 5
|
||||||
|
@ -27,13 +23,11 @@ bspc config active_border_color "#E0A3B6"
|
||||||
bspc config normal_border_color "#8393A1"
|
bspc config normal_border_color "#8393A1"
|
||||||
bspc config focused_border_color "#93D4C5"
|
bspc config focused_border_color "#93D4C5"
|
||||||
|
|
||||||
pgrep -x polybar > /dev/null || polybar &
|
|
||||||
pgrep -x sxhkd > /dev/null || sxhkd &
|
|
||||||
pgrep -x xidlehook > /dev/null || xidlehook --detect-sleep --not-when-fullscreen --not-when-audio --timer 300 'betterlockscreen -l' '' --timer 1200 'sudo zzz' '' &
|
|
||||||
pgrep -x xmousepasteblock > /dev/null || xmousepasteblock &
|
|
||||||
pgrep -x syndaemon > /dev/null || syndaemon -d -i 0.5 &
|
|
||||||
|
|
||||||
xsetroot -cursor_name left_ptr
|
|
||||||
picom &
|
picom &
|
||||||
feh --bg-fill ~/.bg/bg_5.png &
|
feh --bg-fill ~/.bg/bg_5.png ~/.bg/bg_5.png &
|
||||||
|
pipewire -v 2>/home/doryan/.config/bspwm/log&
|
||||||
dunst &
|
dunst &
|
||||||
|
xmousepasteblock &
|
||||||
|
xsetroot -cursor_name left_ptr &
|
||||||
|
pgrep -x sxhkd > /dev/null || sxhkd &
|
||||||
|
pgrep -x polybar > /dev/null || polybar 2>/home/doryan/.config/bspwm/log&
|
|
@ -1,5 +0,0 @@
|
||||||
[Desktop Entry]
|
|
||||||
Name=bspwm
|
|
||||||
Comment=Binary space partitioning window manager
|
|
||||||
Exec=/usr/share/xsessions/bspwm.sh
|
|
||||||
Type=Application
|
|
|
@ -1,5 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
|
|
||||||
2&>1
|
|
||||||
exec pipewire &
|
|
||||||
exec bspwm
|
|
|
@ -1,28 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#6d2229" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#e3e5e7" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
|
||||||
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,28 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#6d2229" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#eff0f1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
|
||||||
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,28 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#da4453" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#eff0f1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
|
||||||
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,22 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="none" stroke="#707d8a" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
|
||||||
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.0 KiB |
|
@ -1,28 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#ff98a2" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#e3e5e7" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
|
||||||
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,22 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="none" stroke="#232629" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="5,5 13,13 " />
|
|
||||||
<polyline fill="none" vector-effect="none" points="13,5 5,13 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.0 KiB |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#a9acae" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#e3e5e7" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#c9ced2" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#eff0f1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#707d8a" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#eff0f1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,21 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="none" stroke="#707d8a" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 970 B |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#232629" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#e3e5e7" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,21 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="none" stroke="#232629" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,11 9,6 14,11 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 970 B |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#a9acae" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#e3e5e7" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#c9ced2" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#eff0f1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#707d8a" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#eff0f1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,21 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="none" stroke="#707d8a" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 957 B |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#232629" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#e3e5e7" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,21 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="none" stroke="#232629" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="round" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<path vector-effect="none" fill-rule="evenodd" d="M4,9 L9,4 L14,9 L9,14 L4,9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 957 B |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#a9acae" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#e3e5e7" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#c9ced2" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#eff0f1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#707d8a" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#eff0f1" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,21 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="none" stroke="#707d8a" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 969 B |
|
@ -1,27 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="#232629" fill-opacity="1" stroke="none" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<circle cx="9" cy="9" r="9"/>
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#e3e5e7" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,21 +0,0 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
||||||
<svg viewBox="0 0 50 50"
|
|
||||||
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.2" baseProfile="tiny">
|
|
||||||
<title>Qt SVG Document</title>
|
|
||||||
<desc>Generated with Qt</desc>
|
|
||||||
<defs>
|
|
||||||
</defs>
|
|
||||||
<g fill="none" stroke="black" stroke-width="1" fill-rule="evenodd" stroke-linecap="square" stroke-linejoin="bevel" >
|
|
||||||
|
|
||||||
<g fill="none" stroke="#232629" stroke-opacity="1" stroke-width="1.01" stroke-linecap="round" stroke-linejoin="miter" stroke-miterlimit="2" transform="matrix(2.5,0,0,2.5,2.5,2.5)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
<polyline fill="none" vector-effect="none" points="4,7 9,12 14,7 " />
|
|
||||||
</g>
|
|
||||||
|
|
||||||
<g fill="none" stroke="#000000" stroke-opacity="1" stroke-width="1" stroke-linecap="square" stroke-linejoin="bevel" transform="matrix(1,0,0,1,0,0)"
|
|
||||||
font-family="Noto Sans" font-size="10" font-weight="400" font-style="normal"
|
|
||||||
>
|
|
||||||
</g>
|
|
||||||
</g>
|
|
||||||
</svg>
|
|
Before Width: | Height: | Size: 969 B |
|
@ -1,84 +0,0 @@
|
||||||
@define-color borders_breeze #bcbebf;
|
|
||||||
@define-color content_view_bg_breeze #ffffff;
|
|
||||||
@define-color error_color_backdrop_breeze #da4453;
|
|
||||||
@define-color error_color_breeze #da4453;
|
|
||||||
@define-color error_color_insensitive_backdrop_breeze #f0b1b8;
|
|
||||||
@define-color error_color_insensitive_breeze #f0b1b8;
|
|
||||||
@define-color insensitive_base_color_breeze #f3f3f3;
|
|
||||||
@define-color insensitive_base_fg_color_breeze #aaabac;
|
|
||||||
@define-color insensitive_bg_color_breeze #e3e5e7;
|
|
||||||
@define-color insensitive_borders_breeze #d2d4d6;
|
|
||||||
@define-color insensitive_fg_color_breeze #a0a1a3;
|
|
||||||
@define-color insensitive_selected_bg_color_breeze #e3e5e7;
|
|
||||||
@define-color insensitive_selected_fg_color_breeze #a0a1a3;
|
|
||||||
@define-color insensitive_unfocused_bg_color_breeze #e3e5e7;
|
|
||||||
@define-color insensitive_unfocused_fg_color_breeze #a0a1a3;
|
|
||||||
@define-color insensitive_unfocused_selected_bg_color_breeze #e3e5e7;
|
|
||||||
@define-color insensitive_unfocused_selected_fg_color_breeze #a0a1a3;
|
|
||||||
@define-color link_color_breeze #2980b9;
|
|
||||||
@define-color link_visited_color_breeze #9b59b6;
|
|
||||||
@define-color success_color_backdrop_breeze #27ae60;
|
|
||||||
@define-color success_color_breeze #27ae60;
|
|
||||||
@define-color success_color_insensitive_backdrop_breeze #abd8be;
|
|
||||||
@define-color success_color_insensitive_breeze #abd8be;
|
|
||||||
@define-color theme_base_color_breeze #ffffff;
|
|
||||||
@define-color theme_bg_color_breeze #eff0f1;
|
|
||||||
@define-color theme_button_background_backdrop_breeze #fcfcfc;
|
|
||||||
@define-color theme_button_background_backdrop_insensitive_breeze #f0f0f0;
|
|
||||||
@define-color theme_button_background_insensitive_breeze #f0f0f0;
|
|
||||||
@define-color theme_button_background_normal_breeze #fcfcfc;
|
|
||||||
@define-color theme_button_decoration_focus_backdrop_breeze #3daee9;
|
|
||||||
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #a2d8f3;
|
|
||||||
@define-color theme_button_decoration_focus_breeze #3daee9;
|
|
||||||
@define-color theme_button_decoration_focus_insensitive_breeze #a2d8f3;
|
|
||||||
@define-color theme_button_decoration_hover_backdrop_breeze #3daee9;
|
|
||||||
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #a2d8f3;
|
|
||||||
@define-color theme_button_decoration_hover_breeze #3daee9;
|
|
||||||
@define-color theme_button_decoration_hover_insensitive_breeze #a2d8f3;
|
|
||||||
@define-color theme_button_foreground_active_backdrop_breeze #232629;
|
|
||||||
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #a0a1a3;
|
|
||||||
@define-color theme_button_foreground_active_breeze #ffffff;
|
|
||||||
@define-color theme_button_foreground_active_insensitive_breeze #a0a1a3;
|
|
||||||
@define-color theme_button_foreground_backdrop_breeze #232629;
|
|
||||||
@define-color theme_button_foreground_backdrop_insensitive_breeze #a8a9aa;
|
|
||||||
@define-color theme_button_foreground_insensitive_breeze #a8a9aa;
|
|
||||||
@define-color theme_button_foreground_normal_breeze #232629;
|
|
||||||
@define-color theme_fg_color_breeze #232629;
|
|
||||||
@define-color theme_header_background_backdrop_breeze #eff0f1;
|
|
||||||
@define-color theme_header_background_breeze #dee0e2;
|
|
||||||
@define-color theme_header_background_light_breeze #eff0f1;
|
|
||||||
@define-color theme_header_foreground_backdrop_breeze #232629;
|
|
||||||
@define-color theme_header_foreground_breeze #232629;
|
|
||||||
@define-color theme_header_foreground_insensitive_backdrop_breeze #232629;
|
|
||||||
@define-color theme_header_foreground_insensitive_breeze #232629;
|
|
||||||
@define-color theme_hovering_selected_bg_color_breeze #3daee9;
|
|
||||||
@define-color theme_selected_bg_color_breeze #3daee9;
|
|
||||||
@define-color theme_selected_fg_color_breeze #ffffff;
|
|
||||||
@define-color theme_text_color_breeze #232629;
|
|
||||||
@define-color theme_titlebar_background_backdrop_breeze #eff0f1;
|
|
||||||
@define-color theme_titlebar_background_breeze #dee0e2;
|
|
||||||
@define-color theme_titlebar_background_light_breeze #eff0f1;
|
|
||||||
@define-color theme_titlebar_foreground_backdrop_breeze #232629;
|
|
||||||
@define-color theme_titlebar_foreground_breeze #232629;
|
|
||||||
@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #232629;
|
|
||||||
@define-color theme_titlebar_foreground_insensitive_breeze #232629;
|
|
||||||
@define-color theme_unfocused_base_color_breeze #ffffff;
|
|
||||||
@define-color theme_unfocused_bg_color_breeze #eff0f1;
|
|
||||||
@define-color theme_unfocused_fg_color_breeze #232629;
|
|
||||||
@define-color theme_unfocused_selected_bg_color_alt_breeze #c2e0f5;
|
|
||||||
@define-color theme_unfocused_selected_bg_color_breeze #c2e0f5;
|
|
||||||
@define-color theme_unfocused_selected_fg_color_breeze #232629;
|
|
||||||
@define-color theme_unfocused_text_color_breeze #232629;
|
|
||||||
@define-color theme_unfocused_view_bg_color_breeze #f3f3f3;
|
|
||||||
@define-color theme_unfocused_view_text_color_breeze #aaabac;
|
|
||||||
@define-color theme_view_active_decoration_color_breeze #3daee9;
|
|
||||||
@define-color theme_view_hover_decoration_color_breeze #3daee9;
|
|
||||||
@define-color tooltip_background_breeze #f7f7f7;
|
|
||||||
@define-color tooltip_border_breeze #c2c3c4;
|
|
||||||
@define-color tooltip_text_breeze #232629;
|
|
||||||
@define-color unfocused_borders_breeze #bcbebf;
|
|
||||||
@define-color unfocused_insensitive_borders_breeze #d2d4d6;
|
|
||||||
@define-color warning_color_backdrop_breeze #f67400;
|
|
||||||
@define-color warning_color_breeze #f67400;
|
|
||||||
@define-color warning_color_insensitive_backdrop_breeze #fbc289;
|
|
||||||
@define-color warning_color_insensitive_breeze #fbc289;
|
|
|
@ -1 +0,0 @@
|
||||||
@import 'colors.css';
|
|
|
@ -1,23 +0,0 @@
|
||||||
[Settings]
|
|
||||||
gtk-theme-name=Yaru-viridian
|
|
||||||
gtk-icon-theme-name=Tela-circle
|
|
||||||
gtk-font-name=Cantarell 11
|
|
||||||
gtk-cursor-theme-name=Bibata-Modern-Ice
|
|
||||||
gtk-cursor-theme-size=24
|
|
||||||
gtk-toolbar-style=3
|
|
||||||
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
|
||||||
gtk-button-images=0
|
|
||||||
gtk-menu-images=0
|
|
||||||
gtk-enable-event-sounds=1
|
|
||||||
gtk-enable-input-feedback-sounds=0
|
|
||||||
gtk-xft-antialias=1
|
|
||||||
gtk-xft-hinting=1
|
|
||||||
gtk-xft-hintstyle=hintslight
|
|
||||||
gtk-xft-rgba=rgb
|
|
||||||
gtk-application-prefer-dark-theme=0
|
|
||||||
gtk-decoration-layout=icon:minimize,maximize,close
|
|
||||||
gtk-enable-animations=true
|
|
||||||
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
|
||||||
gtk-primary-button-warps-slider=true
|
|
||||||
gtk-sound-theme-name=ocean
|
|
||||||
gtk-xft-dpi=122880
|
|
|
@ -1,71 +0,0 @@
|
||||||
headerbar button.titlebutton.close, .titlebar button.titlebutton.close {
|
|
||||||
background-image: url("assets/close-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.close:hover, .titlebar button.titlebutton.close:hover {
|
|
||||||
background-image: url("assets/close-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.close:active, .titlebar button.titlebutton.close:active {
|
|
||||||
background-image: url("assets/close-active.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.close:backdrop, .titlebar button.titlebutton.close:backdrop {
|
|
||||||
background-image: url("assets/close-backdrop-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.close:backdrop:hover, .titlebar button.titlebutton.close:backdrop:hover {
|
|
||||||
background-image: url("assets/close-backdrop-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.close:backdrop:active, .titlebar button.titlebutton.close:backdrop:active {
|
|
||||||
background-image: url("assets/close-backdrop-active.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize, .titlebar button.titlebutton.maximize {
|
|
||||||
background-image: url("assets/maximize-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize:hover, .titlebar button.titlebutton.maximize:hover {
|
|
||||||
background-image: url("assets/maximize-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize:active, .titlebar button.titlebutton.maximize:active {
|
|
||||||
background-image: url("assets/maximize-active.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize:backdrop, .titlebar button.titlebutton.maximize:backdrop {
|
|
||||||
background-image: url("assets/maximize-backdrop-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize:backdrop:hover, .titlebar button.titlebutton.maximize:backdrop:hover {
|
|
||||||
background-image: url("assets/maximize-backdrop-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize:backdrop:active, .titlebar button.titlebutton.maximize:backdrop:active {
|
|
||||||
background-image: url("assets/maximize-backdrop-active.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize, .titlebar button.titlebutton.minimize {
|
|
||||||
background-image: url("assets/minimize-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize:hover, .titlebar button.titlebutton.minimize:hover {
|
|
||||||
background-image: url("assets/minimize-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize:active, .titlebar button.titlebutton.minimize:active {
|
|
||||||
background-image: url("assets/minimize-active.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize:backdrop, .titlebar button.titlebutton.minimize:backdrop {
|
|
||||||
background-image: url("assets/minimize-backdrop-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize:backdrop:hover, .titlebar button.titlebutton.minimize:backdrop:hover {
|
|
||||||
background-image: url("assets/minimize-backdrop-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize:backdrop:active, .titlebar button.titlebutton.minimize:backdrop:active {
|
|
||||||
background-image: url("assets/minimize-backdrop-active.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize, .maximized .titlebar button.titlebutton.maximize {
|
|
||||||
background-image: url("assets/maximized-normal.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize:hover, .maximized .titlebar button.titlebutton.maximize:hover {
|
|
||||||
background-image: url("assets/maximized-hover.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize:active, .maximized .titlebar button.titlebutton.maximize:active {
|
|
||||||
background-image: url("assets/maximized-active.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize:backdrop, .maximized .titlebar button.titlebutton.maximize:backdrop {
|
|
||||||
background-image: url("assets/maximized-backdrop-normal.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize:backdrop:hover, .maximized .titlebar button.titlebutton.maximize:backdrop:hover {
|
|
||||||
background-image: url("assets/maximized-backdrop-hover.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize:backdrop:active, .maximized .titlebar button.titlebutton.maximize:backdrop:active {
|
|
||||||
background-image: url("assets/maximized-backdrop-active.svg"); }
|
|
|
@ -1,84 +0,0 @@
|
||||||
@define-color borders_breeze #bcbebf;
|
|
||||||
@define-color content_view_bg_breeze #ffffff;
|
|
||||||
@define-color error_color_backdrop_breeze #da4453;
|
|
||||||
@define-color error_color_breeze #da4453;
|
|
||||||
@define-color error_color_insensitive_backdrop_breeze #f0b1b8;
|
|
||||||
@define-color error_color_insensitive_breeze #f0b1b8;
|
|
||||||
@define-color insensitive_base_color_breeze #f3f3f3;
|
|
||||||
@define-color insensitive_base_fg_color_breeze #aaabac;
|
|
||||||
@define-color insensitive_bg_color_breeze #e3e5e7;
|
|
||||||
@define-color insensitive_borders_breeze #d2d4d6;
|
|
||||||
@define-color insensitive_fg_color_breeze #a0a1a3;
|
|
||||||
@define-color insensitive_selected_bg_color_breeze #e3e5e7;
|
|
||||||
@define-color insensitive_selected_fg_color_breeze #a0a1a3;
|
|
||||||
@define-color insensitive_unfocused_bg_color_breeze #e3e5e7;
|
|
||||||
@define-color insensitive_unfocused_fg_color_breeze #a0a1a3;
|
|
||||||
@define-color insensitive_unfocused_selected_bg_color_breeze #e3e5e7;
|
|
||||||
@define-color insensitive_unfocused_selected_fg_color_breeze #a0a1a3;
|
|
||||||
@define-color link_color_breeze #2980b9;
|
|
||||||
@define-color link_visited_color_breeze #9b59b6;
|
|
||||||
@define-color success_color_backdrop_breeze #27ae60;
|
|
||||||
@define-color success_color_breeze #27ae60;
|
|
||||||
@define-color success_color_insensitive_backdrop_breeze #abd8be;
|
|
||||||
@define-color success_color_insensitive_breeze #abd8be;
|
|
||||||
@define-color theme_base_color_breeze #ffffff;
|
|
||||||
@define-color theme_bg_color_breeze #eff0f1;
|
|
||||||
@define-color theme_button_background_backdrop_breeze #fcfcfc;
|
|
||||||
@define-color theme_button_background_backdrop_insensitive_breeze #f0f0f0;
|
|
||||||
@define-color theme_button_background_insensitive_breeze #f0f0f0;
|
|
||||||
@define-color theme_button_background_normal_breeze #fcfcfc;
|
|
||||||
@define-color theme_button_decoration_focus_backdrop_breeze #3daee9;
|
|
||||||
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #a2d8f3;
|
|
||||||
@define-color theme_button_decoration_focus_breeze #3daee9;
|
|
||||||
@define-color theme_button_decoration_focus_insensitive_breeze #a2d8f3;
|
|
||||||
@define-color theme_button_decoration_hover_backdrop_breeze #3daee9;
|
|
||||||
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #a2d8f3;
|
|
||||||
@define-color theme_button_decoration_hover_breeze #3daee9;
|
|
||||||
@define-color theme_button_decoration_hover_insensitive_breeze #a2d8f3;
|
|
||||||
@define-color theme_button_foreground_active_backdrop_breeze #232629;
|
|
||||||
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #a0a1a3;
|
|
||||||
@define-color theme_button_foreground_active_breeze #ffffff;
|
|
||||||
@define-color theme_button_foreground_active_insensitive_breeze #a0a1a3;
|
|
||||||
@define-color theme_button_foreground_backdrop_breeze #232629;
|
|
||||||
@define-color theme_button_foreground_backdrop_insensitive_breeze #a8a9aa;
|
|
||||||
@define-color theme_button_foreground_insensitive_breeze #a8a9aa;
|
|
||||||
@define-color theme_button_foreground_normal_breeze #232629;
|
|
||||||
@define-color theme_fg_color_breeze #232629;
|
|
||||||
@define-color theme_header_background_backdrop_breeze #eff0f1;
|
|
||||||
@define-color theme_header_background_breeze #dee0e2;
|
|
||||||
@define-color theme_header_background_light_breeze #eff0f1;
|
|
||||||
@define-color theme_header_foreground_backdrop_breeze #232629;
|
|
||||||
@define-color theme_header_foreground_breeze #232629;
|
|
||||||
@define-color theme_header_foreground_insensitive_backdrop_breeze #232629;
|
|
||||||
@define-color theme_header_foreground_insensitive_breeze #232629;
|
|
||||||
@define-color theme_hovering_selected_bg_color_breeze #3daee9;
|
|
||||||
@define-color theme_selected_bg_color_breeze #3daee9;
|
|
||||||
@define-color theme_selected_fg_color_breeze #ffffff;
|
|
||||||
@define-color theme_text_color_breeze #232629;
|
|
||||||
@define-color theme_titlebar_background_backdrop_breeze #eff0f1;
|
|
||||||
@define-color theme_titlebar_background_breeze #dee0e2;
|
|
||||||
@define-color theme_titlebar_background_light_breeze #eff0f1;
|
|
||||||
@define-color theme_titlebar_foreground_backdrop_breeze #232629;
|
|
||||||
@define-color theme_titlebar_foreground_breeze #232629;
|
|
||||||
@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #232629;
|
|
||||||
@define-color theme_titlebar_foreground_insensitive_breeze #232629;
|
|
||||||
@define-color theme_unfocused_base_color_breeze #ffffff;
|
|
||||||
@define-color theme_unfocused_bg_color_breeze #eff0f1;
|
|
||||||
@define-color theme_unfocused_fg_color_breeze #232629;
|
|
||||||
@define-color theme_unfocused_selected_bg_color_alt_breeze #c2e0f5;
|
|
||||||
@define-color theme_unfocused_selected_bg_color_breeze #c2e0f5;
|
|
||||||
@define-color theme_unfocused_selected_fg_color_breeze #232629;
|
|
||||||
@define-color theme_unfocused_text_color_breeze #232629;
|
|
||||||
@define-color theme_unfocused_view_bg_color_breeze #f3f3f3;
|
|
||||||
@define-color theme_unfocused_view_text_color_breeze #aaabac;
|
|
||||||
@define-color theme_view_active_decoration_color_breeze #3daee9;
|
|
||||||
@define-color theme_view_hover_decoration_color_breeze #3daee9;
|
|
||||||
@define-color tooltip_background_breeze #f7f7f7;
|
|
||||||
@define-color tooltip_border_breeze #c2c3c4;
|
|
||||||
@define-color tooltip_text_breeze #232629;
|
|
||||||
@define-color unfocused_borders_breeze #bcbebf;
|
|
||||||
@define-color unfocused_insensitive_borders_breeze #d2d4d6;
|
|
||||||
@define-color warning_color_backdrop_breeze #f67400;
|
|
||||||
@define-color warning_color_breeze #f67400;
|
|
||||||
@define-color warning_color_insensitive_backdrop_breeze #fbc289;
|
|
||||||
@define-color warning_color_insensitive_breeze #fbc289;
|
|
|
@ -1 +0,0 @@
|
||||||
@import 'colors.css';
|
|
|
@ -1,12 +0,0 @@
|
||||||
[Settings]
|
|
||||||
gtk-application-prefer-dark-theme=false
|
|
||||||
gtk-cursor-theme-name=Bibata-Modern-Ice
|
|
||||||
gtk-cursor-theme-size=28
|
|
||||||
gtk-decoration-layout=icon:minimize,maximize,close
|
|
||||||
gtk-enable-animations=true
|
|
||||||
gtk-font-name=Noto Sans, 10
|
|
||||||
gtk-icon-theme-name=Tela-circle
|
|
||||||
gtk-modules=colorreload-gtk-module:window-decorations-gtk-module
|
|
||||||
gtk-primary-button-warps-slider=true
|
|
||||||
gtk-sound-theme-name=ocean
|
|
||||||
gtk-xft-dpi=122880
|
|
|
@ -1,71 +0,0 @@
|
||||||
headerbar button.titlebutton.close, .titlebar button.titlebutton.close {
|
|
||||||
background-image: url("assets/close-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.close:hover, .titlebar button.titlebutton.close:hover {
|
|
||||||
background-image: url("assets/close-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.close:active, .titlebar button.titlebutton.close:active {
|
|
||||||
background-image: url("assets/close-active.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.close:backdrop, .titlebar button.titlebutton.close:backdrop {
|
|
||||||
background-image: url("assets/close-backdrop-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.close:backdrop:hover, .titlebar button.titlebutton.close:backdrop:hover {
|
|
||||||
background-image: url("assets/close-backdrop-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.close:backdrop:active, .titlebar button.titlebutton.close:backdrop:active {
|
|
||||||
background-image: url("assets/close-backdrop-active.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize, .titlebar button.titlebutton.maximize {
|
|
||||||
background-image: url("assets/maximize-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize:hover, .titlebar button.titlebutton.maximize:hover {
|
|
||||||
background-image: url("assets/maximize-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize:active, .titlebar button.titlebutton.maximize:active {
|
|
||||||
background-image: url("assets/maximize-active.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize:backdrop, .titlebar button.titlebutton.maximize:backdrop {
|
|
||||||
background-image: url("assets/maximize-backdrop-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize:backdrop:hover, .titlebar button.titlebutton.maximize:backdrop:hover {
|
|
||||||
background-image: url("assets/maximize-backdrop-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.maximize:backdrop:active, .titlebar button.titlebutton.maximize:backdrop:active {
|
|
||||||
background-image: url("assets/maximize-backdrop-active.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize, .titlebar button.titlebutton.minimize {
|
|
||||||
background-image: url("assets/minimize-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize:hover, .titlebar button.titlebutton.minimize:hover {
|
|
||||||
background-image: url("assets/minimize-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize:active, .titlebar button.titlebutton.minimize:active {
|
|
||||||
background-image: url("assets/minimize-active.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize:backdrop, .titlebar button.titlebutton.minimize:backdrop {
|
|
||||||
background-image: url("assets/minimize-backdrop-normal.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize:backdrop:hover, .titlebar button.titlebutton.minimize:backdrop:hover {
|
|
||||||
background-image: url("assets/minimize-backdrop-hover.svg"); }
|
|
||||||
|
|
||||||
headerbar button.titlebutton.minimize:backdrop:active, .titlebar button.titlebutton.minimize:backdrop:active {
|
|
||||||
background-image: url("assets/minimize-backdrop-active.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize, .maximized .titlebar button.titlebutton.maximize {
|
|
||||||
background-image: url("assets/maximized-normal.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize:hover, .maximized .titlebar button.titlebutton.maximize:hover {
|
|
||||||
background-image: url("assets/maximized-hover.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize:active, .maximized .titlebar button.titlebutton.maximize:active {
|
|
||||||
background-image: url("assets/maximized-active.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize:backdrop, .maximized .titlebar button.titlebutton.maximize:backdrop {
|
|
||||||
background-image: url("assets/maximized-backdrop-normal.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize:backdrop:hover, .maximized .titlebar button.titlebutton.maximize:backdrop:hover {
|
|
||||||
background-image: url("assets/maximized-backdrop-hover.svg"); }
|
|
||||||
|
|
||||||
.maximized headerbar button.titlebutton.maximize:backdrop:active, .maximized .titlebar button.titlebutton.maximize:backdrop:active {
|
|
||||||
background-image: url("assets/maximized-backdrop-active.svg"); }
|
|
73
install.sh
|
@ -1,71 +1,10 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
function install_config() {
|
configs=("betterlockscreen" "bspwm" "btop" "picom" "polybar" "zathura" "rofi" "yazi" "sxhkd" "dunst" "mimeapps.list" "starship.toml")rlockscreen -u ~/.bg/bg_5.jpg
|
||||||
for config in "${@:2}"; do
|
|
||||||
cp -vr "./${config}" "$1"
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
green="\e[92m"
|
for config in ${configs[@]}; do
|
||||||
dgreen="\e[32m"
|
cp -vr ./$config ~/.config/
|
||||||
end="\e[0m"
|
done
|
||||||
|
|
||||||
general_configs=("betterlockscreen" "btop" "picom" "zathura" "rofi" "yazi" "dunst" "mimeapps.list" "starship.toml")
|
cp ./.zshrc ~/
|
||||||
home_dir_configs=(".bg" ".zshrc" ".zsh")
|
cp -r ./.zsh ~/
|
||||||
|
|
||||||
echo -e "${green}
|
|
||||||
_ __ _ ____ _
|
|
||||||
| | / /___ (_)___/ / / (_)___ __ ___ __
|
|
||||||
| | / / __ \/ / __ / / / / __ \/ / / / |/_/
|
|
||||||
| |/ / /_/ / / /_/ / /___/ / / / / /_/ /> <
|
|
||||||
|___/\____/_/\__,_/_____/_/_/ /_/\__,_/_/|_|${end}${dgreen}
|
|
||||||
____ __ _____ __
|
|
||||||
/ __ \____ / /_/ __(_) /__ _____
|
|
||||||
/ / / / __ \/ __/ /_/ / / _ \/ ___/
|
|
||||||
/ /_/ / /_/ / /_/ __/ / / __(__ )
|
|
||||||
/_____/\____/\__/_/ /_/_/\___/____/${end}
|
|
||||||
"
|
|
||||||
|
|
||||||
echo "Select your device type (Laptop: L/l, PC: P/p)"
|
|
||||||
read -r type
|
|
||||||
|
|
||||||
case "${type}" in
|
|
||||||
"L" | "l")
|
|
||||||
cp -vrf ./Laptop/* ~/.config/
|
|
||||||
;;
|
|
||||||
"P" | "p")
|
|
||||||
cp -vrf ./PC/* ~/.config/
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
echo "Please, select your device type correctly"
|
|
||||||
exit 1
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
install_config ~/.config/ "${general_configs[@]}"
|
|
||||||
install_config ~/ "${home_dir_configs[@]}"
|
|
||||||
|
|
||||||
betterlockscreen -u ~/.bg/bg_5.png --fx blur --blur 1
|
|
||||||
|
|
||||||
echo "Do you want install bspwm_session, X11, fonts and acpid (for laptop) configs? (y/N):"
|
|
||||||
read -r advanced_install
|
|
||||||
|
|
||||||
case "${advanced_install}" in
|
|
||||||
"Y" | "y")
|
|
||||||
su --shell /bin/bash -c "
|
|
||||||
cp -vrf ./bspwm_session/* /usr/share/xsessions
|
|
||||||
cp -vrf ./root_configs/fonts /etc
|
|
||||||
mkdir -p /etc/X11/xorg.conf.d
|
|
||||||
cp -vf ./root_configs/xorg.conf.d/00-keyboard.conf /etc/X11/xorg.conf.d/
|
|
||||||
if [[ \"$type\" = \"L\" || \"$type\" = \"l\" ]] ; then
|
|
||||||
cp -vfr ./root_configs/acpi /etc
|
|
||||||
cp -vf ./root_configs/xorg.conf.d/70-synaptics.conf /etc/X11/xorg.conf.d/
|
|
||||||
fi
|
|
||||||
"
|
|
||||||
;;
|
|
||||||
"N" | "n" | "*")
|
|
||||||
echo "Skip"
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
echo "Installation is complete, have a fun!"
|
|
||||||
|
|
|
@ -1,38 +1,17 @@
|
||||||
[Default Applications]
|
[Default Applications]
|
||||||
x-scheme-handler/tonsite=userapp-64Gram Desktop-2YVBW2.desktop
|
x-scheme-handler/tonsite=io.github.kukuruzka165.materialgram.desktop
|
||||||
x-scheme-handler/tg=userapp-64Gram Desktop-M3XAW2.desktop
|
x-scheme-handler/tg=io.github.kukuruzka165.materialgram.desktop
|
||||||
x-scheme-handler/mailto=userapp-Thunderbird-M5C9Y2.desktop
|
x-scheme-handler/mailto=userapp-Thunderbird-9B2JV2.desktop
|
||||||
message/rfc822=userapp-Thunderbird-M5C9Y2.desktop
|
message/rfc822=userapp-Thunderbird-9B2JV2.desktop
|
||||||
x-scheme-handler/mid=userapp-Thunderbird-M5C9Y2.desktop
|
x-scheme-handler/mid=userapp-Thunderbird-9B2JV2.desktop
|
||||||
application/pdf=org.pwmt.zathura-pdf-mupdf.desktop
|
application/pdf=org.pwmt.zathura-pdf-poppler.desktop
|
||||||
image/jpg=feh.desktop
|
image/jpg=feh.desktop
|
||||||
image/jpeg=feh.desktop
|
image/jpeg=feh.desktop
|
||||||
image/png=feh.desktop
|
image/png=feh.desktop
|
||||||
image/webm=feh.desktop
|
image/webm=feh.desktop
|
||||||
application/x-executable=appimagelauncher.desktop
|
|
||||||
x-scheme-handler/http=userapp-Firefox-9Z8DZ2.desktop
|
|
||||||
x-scheme-handler/https=userapp-Firefox-9Z8DZ2.desktop
|
|
||||||
x-scheme-handler/chrome=userapp-Firefox-9Z8DZ2.desktop
|
|
||||||
text/html=userapp-Firefox-9Z8DZ2.desktop
|
|
||||||
application/x-extension-htm=userapp-Firefox-9Z8DZ2.desktop
|
|
||||||
application/x-extension-html=userapp-Firefox-9Z8DZ2.desktop
|
|
||||||
application/x-extension-shtml=userapp-Firefox-9Z8DZ2.desktop
|
|
||||||
application/xhtml+xml=userapp-Firefox-9Z8DZ2.desktop
|
|
||||||
application/x-extension-xhtml=userapp-Firefox-9Z8DZ2.desktop
|
|
||||||
application/x-extension-xht=userapp-Firefox-9Z8DZ2.desktop
|
|
||||||
|
|
||||||
[Added Associations]
|
[Added Associations]
|
||||||
x-scheme-handler/tonsite=org.telegram.desktop.desktop;io.github.kukuruzka165.materialgram.desktop;userapp-64Gram Desktop-2YVBW2.desktop;
|
x-scheme-handler/tonsite=org.telegram.desktop.desktop;io.github.kukuruzka165.materialgram.desktop;
|
||||||
x-scheme-handler/tg=io.github.kukuruzka165.materialgram.desktop;userapp-64Gram Desktop-M3XAW2.desktop;
|
x-scheme-handler/tg=io.github.kukuruzka165.materialgram.desktop;
|
||||||
x-scheme-handler/mailto=userapp-Thunderbird-9B2JV2.desktop;userapp-Thunderbird-M5C9Y2.desktop;
|
x-scheme-handler/mailto=userapp-Thunderbird-9B2JV2.desktop;
|
||||||
x-scheme-handler/mid=userapp-Thunderbird-9B2JV2.desktop;userapp-Thunderbird-M5C9Y2.desktop;
|
x-scheme-handler/mid=userapp-Thunderbird-9B2JV2.desktop;
|
||||||
x-scheme-handler/http=userapp-Firefox-9Z8DZ2.desktop;
|
|
||||||
x-scheme-handler/https=userapp-Firefox-9Z8DZ2.desktop;
|
|
||||||
x-scheme-handler/chrome=userapp-Firefox-9Z8DZ2.desktop;
|
|
||||||
text/html=userapp-Firefox-9Z8DZ2.desktop;
|
|
||||||
application/x-extension-htm=userapp-Firefox-9Z8DZ2.desktop;
|
|
||||||
application/x-extension-html=userapp-Firefox-9Z8DZ2.desktop;
|
|
||||||
application/x-extension-shtml=userapp-Firefox-9Z8DZ2.desktop;
|
|
||||||
application/xhtml+xml=userapp-Firefox-9Z8DZ2.desktop;
|
|
||||||
application/x-extension-xhtml=userapp-Firefox-9Z8DZ2.desktop;
|
|
||||||
application/x-extension-xht=userapp-Firefox-9Z8DZ2.desktop;
|
|
||||||
|
|
|
@ -25,7 +25,7 @@ secondary = #E0A3B6
|
||||||
alert = #E7A063
|
alert = #E7A063
|
||||||
disabled = #9DA991
|
disabled = #9DA991
|
||||||
|
|
||||||
[bar/doryanbar]
|
[bar/example]
|
||||||
width = 100%
|
width = 100%
|
||||||
height = 22pt
|
height = 22pt
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ font-0 = "FiraCode Nerd Font Propo:size=10;2"
|
||||||
|
|
||||||
modules-left = xworkspaces
|
modules-left = xworkspaces
|
||||||
modules-center = xwindow
|
modules-center = xwindow
|
||||||
modules-right = cpu memory pulseaudio xkeyboard wlan eth date calendar battery powermenu
|
modules-right = pulseaudio xkeyboard wlan eth date calendar battery powermenu
|
||||||
|
|
||||||
cursor-click = pointer
|
cursor-click = pointer
|
||||||
cursor-scroll = ns-resize
|
cursor-scroll = ns-resize
|
|
@ -0,0 +1,13 @@
|
||||||
|
#!/bin/zsh
|
||||||
|
|
||||||
|
# Terminate already running bar instances
|
||||||
|
# If all your bars have ipc enabled, you can use
|
||||||
|
polybar-msg cmd quit
|
||||||
|
# Otherwise you can use the nuclear option:
|
||||||
|
# killall -q polybar
|
||||||
|
|
||||||
|
# Launch bar1 and bar2
|
||||||
|
echo "---" | tee -a /tmp/polybar1.log /tmp/polybar2.log
|
||||||
|
polybar example | tee -a /tmp/polybar1.log & disown
|
||||||
|
|
||||||
|
echo "Bars launched..."
|
|
@ -10,7 +10,7 @@
|
||||||
/*****----- Configuration -----*****/
|
/*****----- Configuration -----*****/
|
||||||
configuration {
|
configuration {
|
||||||
modi: "drun,run,filebrowser,ssh,window";
|
modi: "drun,run,filebrowser,ssh,window";
|
||||||
show-icons: true;
|
show-icons: false;
|
||||||
display-drun: " Apps";
|
display-drun: " Apps";
|
||||||
display-run: " Run";
|
display-run: " Run";
|
||||||
display-filebrowser: " Files";
|
display-filebrowser: " Files";
|
||||||
|
|
Before Width: | Height: | Size: 74 KiB After Width: | Height: | Size: 55 KiB |
|
@ -59,11 +59,11 @@ run_cmd() {
|
||||||
selected="$(confirm_exit)"
|
selected="$(confirm_exit)"
|
||||||
if [[ "$selected" == "$yes" ]]; then
|
if [[ "$selected" == "$yes" ]]; then
|
||||||
if [[ $1 == '--shutdown' ]]; then
|
if [[ $1 == '--shutdown' ]]; then
|
||||||
sudo shutdown -P now
|
loginctl poweroff
|
||||||
elif [[ $1 == '--reboot' ]]; then
|
elif [[ $1 == '--reboot' ]]; then
|
||||||
sudo reboot
|
loginctl reboot
|
||||||
elif [[ $1 == '--suspend' ]]; then
|
elif [[ $1 == '--suspend' ]]; then
|
||||||
betterlockscreen --suspend
|
betterlockscreen --suspend
|
||||||
elif [[ $1 == '--logout' ]]; then
|
elif [[ $1 == '--logout' ]]; then
|
||||||
bspc quit & pkill pipewire & pkill pipewire-pulse & pkill polybar
|
bspc quit & pkill pipewire & pkill pipewire-pulse & pkill polybar
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
# Pass all events to our one handler script
|
|
||||||
event=.*
|
|
||||||
action=/etc/acpi/handler.sh %e
|
|
|
@ -1,101 +0,0 @@
|
||||||
#!/bin/sh
|
|
||||||
# Default acpi script that takes an entry for all actions
|
|
||||||
|
|
||||||
# NOTE: This is a 2.6-centric script. If you use 2.4.x, you'll have to
|
|
||||||
# modify it to not use /sys
|
|
||||||
|
|
||||||
# $1 should be + or - to step up or down the brightness.
|
|
||||||
step_backlight() {
|
|
||||||
for backlight in /sys/class/backlight/*/; do
|
|
||||||
[ -d "$backlight" ] || continue
|
|
||||||
step=$(( $(cat "$backlight/max_brightness") / 20 ))
|
|
||||||
[ "$step" -gt "1" ] || step=1 #fallback if gradation is too low
|
|
||||||
printf '%s' "$(( $(cat "$backlight/brightness") $1 step ))" >"$backlight/brightness"
|
|
||||||
done
|
|
||||||
}
|
|
||||||
|
|
||||||
minspeed="/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_min_freq"
|
|
||||||
maxspeed="/sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq"
|
|
||||||
setspeed="/sys/devices/system/cpu/cpu0/cpufreq/scaling_setspeed"
|
|
||||||
|
|
||||||
export DISPLAY=:0
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
button/power)
|
|
||||||
case "$2" in
|
|
||||||
PBTN|PWRF)
|
|
||||||
logger "PowerButton pressed: $2, shutting down..."
|
|
||||||
shutdown -P now
|
|
||||||
;;
|
|
||||||
*) logger "ACPI action undefined: $2" ;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
button/sleep)
|
|
||||||
case "$2" in
|
|
||||||
SBTN|SLPB)
|
|
||||||
# suspend-to-ram
|
|
||||||
logger "Sleep Button pressed: $2, suspending..."
|
|
||||||
su doryan -c -m "betterlockscreen -l &"
|
|
||||||
sleep 0.5
|
|
||||||
zzz
|
|
||||||
;;
|
|
||||||
*) logger "ACPI action undefined: $2" ;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
ac_adapter)
|
|
||||||
case "$2" in
|
|
||||||
AC|ACAD|ADP0)
|
|
||||||
case "$4" in
|
|
||||||
00000000)
|
|
||||||
cat "$minspeed" >"$setspeed"
|
|
||||||
#/etc/laptop-mode/laptop-mode start
|
|
||||||
;;
|
|
||||||
00000001)
|
|
||||||
cat "$maxspeed" >"$setspeed"
|
|
||||||
#/etc/laptop-mode/laptop-mode stop
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
*) logger "ACPI action undefined: $2" ;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
battery)
|
|
||||||
case "$2" in
|
|
||||||
BAT0)
|
|
||||||
case "$4" in
|
|
||||||
00000000) #echo "offline" >/dev/tty5
|
|
||||||
;;
|
|
||||||
00000001) #echo "online" >/dev/tty5
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
CPU0)
|
|
||||||
;;
|
|
||||||
*) logger "ACPI action undefined: $2" ;;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
button/lid)
|
|
||||||
case "$3" in
|
|
||||||
close)
|
|
||||||
# suspend-to-ram
|
|
||||||
logger "LID closed, suspending..."
|
|
||||||
su doryan -c -m "betterlockscreen -l &"
|
|
||||||
sleep 0.5
|
|
||||||
zzz
|
|
||||||
;;
|
|
||||||
open)
|
|
||||||
logger "LID opened"
|
|
||||||
;;
|
|
||||||
*) logger "ACPI action undefined (LID): $2";;
|
|
||||||
esac
|
|
||||||
;;
|
|
||||||
video/brightnessdown)
|
|
||||||
step_backlight -
|
|
||||||
;;
|
|
||||||
video/brightnessup)
|
|
||||||
step_backlight +
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
logger "ACPI group/action undefined: $1 / $2"
|
|
||||||
;;
|
|
||||||
esac
|
|
|
@ -1,78 +0,0 @@
|
||||||
<?xml version="1.0"?>
|
|
||||||
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
|
|
||||||
<!-- /etc/fonts/fonts.conf file to configure system font access -->
|
|
||||||
<fontconfig>
|
|
||||||
<description>Default configuration file</description>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
DO NOT EDIT THIS FILE.
|
|
||||||
IT WILL BE REPLACED WHEN FONTCONFIG IS UPDATED.
|
|
||||||
LOCAL CHANGES BELONG IN 'local.conf'.
|
|
||||||
|
|
||||||
The intent of this standard configuration file is to be adequate for
|
|
||||||
most environments. If you have a reasonably normal environment and
|
|
||||||
have found problems with this configuration, they are probably
|
|
||||||
things that others will also want fixed. Please submit any problems
|
|
||||||
to the fontconfig issue tracking system located at fontconfig.org
|
|
||||||
|
|
||||||
Note that the normal 'make install' procedure for fontconfig is to
|
|
||||||
replace any existing fonts.conf file with the new version. Place
|
|
||||||
any local customizations in local.conf which this file references.
|
|
||||||
|
|
||||||
Keith Packard
|
|
||||||
-->
|
|
||||||
|
|
||||||
<!-- Font directory list -->
|
|
||||||
|
|
||||||
<dir>/home/doryan/.fonts</dir>
|
|
||||||
|
|
||||||
<dir prefix="xdg">fonts</dir>
|
|
||||||
<!-- the following element will be removed in the future -->
|
|
||||||
<dir>~/.fonts</dir>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Accept deprecated 'mono' alias, replacing it with 'monospace'
|
|
||||||
-->
|
|
||||||
<match target="pattern">
|
|
||||||
<test qual="any" name="family">
|
|
||||||
<string>mono</string>
|
|
||||||
</test>
|
|
||||||
<edit name="family" mode="assign" binding="same">
|
|
||||||
<string>JetBrainsMono Nerd Font Propo</string>
|
|
||||||
</edit>
|
|
||||||
</match>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Accept alternate 'system ui' spelling, replacing it with 'system-ui'
|
|
||||||
-->
|
|
||||||
<match target="pattern">
|
|
||||||
<test qual="any" name="family">
|
|
||||||
<string>system ui</string>
|
|
||||||
</test>
|
|
||||||
<edit name="family" mode="assign" binding="same">
|
|
||||||
<string>Onest Medium</string>
|
|
||||||
</edit>
|
|
||||||
</match>
|
|
||||||
|
|
||||||
<!--
|
|
||||||
Load local system customization file
|
|
||||||
-->
|
|
||||||
<include ignore_missing="yes">conf.d</include>
|
|
||||||
|
|
||||||
<!-- Font cache directory list -->
|
|
||||||
|
|
||||||
<cachedir>/var/cache/fontconfig</cachedir>
|
|
||||||
<cachedir prefix="xdg">fontconfig</cachedir>
|
|
||||||
<!-- the following element will be removed in the future -->
|
|
||||||
<cachedir>~/.fontconfig</cachedir>
|
|
||||||
|
|
||||||
<config>
|
|
||||||
<!--
|
|
||||||
Rescan configuration every 30 seconds when FcFontSetList is called
|
|
||||||
-->
|
|
||||||
<rescan>
|
|
||||||
<int>30</int>
|
|
||||||
</rescan>
|
|
||||||
</config>
|
|
||||||
|
|
||||||
</fontconfig>
|
|
|
@ -1,7 +0,0 @@
|
||||||
Section "InputClass"
|
|
||||||
Identifier "keyboard-all"
|
|
||||||
MatchIsKeyboard "on"
|
|
||||||
Option "XkbLayout" "us,ru"
|
|
||||||
Option "XkbOptions" "grp:ctrl_space_toggle"
|
|
||||||
Option "AutoRepeat" "250 20"
|
|
||||||
EndSection
|
|
|
@ -1,3 +0,0 @@
|
||||||
Section "Extensions"
|
|
||||||
Option "DPMS" "false"
|
|
||||||
EndSection
|
|
|
@ -1,3 +0,0 @@
|
||||||
Section "ServerFlags"
|
|
||||||
Option "BlankTime" "0"
|
|
||||||
EndSection
|
|
|
@ -1,21 +0,0 @@
|
||||||
Section "InputClass"
|
|
||||||
Identifier "touchpad"
|
|
||||||
Driver "synaptics"
|
|
||||||
MatchIsTouchpad "on"
|
|
||||||
Option "TapButton1" "1"
|
|
||||||
Option "TapButton2" "3"
|
|
||||||
Option "TapButton3" "2"
|
|
||||||
Option "VertEdgeScroll" "on"
|
|
||||||
Option "VertTwoFingerScroll" "on"
|
|
||||||
Option "HorizEdgeScroll" "on"
|
|
||||||
Option "HorizTwoFingerScroll" "on"
|
|
||||||
Option "CircularScrolling" "on"
|
|
||||||
Option "CircScrollTrigger" "2"
|
|
||||||
Option "EmulateTwoFingerMinZ" "40"
|
|
||||||
Option "EmulateTwoFingerMinW" "8"
|
|
||||||
Option "CoastingSpeed" "0"
|
|
||||||
Option "FingerLow" "30"
|
|
||||||
Option "FingerHigh" "50"
|
|
||||||
Option "MaxTapTime" "125"
|
|
||||||
EndSection
|
|
||||||
|
|