|
@ -1,3 +1,3 @@
|
|||
# dotfiles
|
||||
|
||||
NixOS configuration and dotfiles
|
||||
Dotfiles
|
||||
|
|
|
@ -1,11 +0,0 @@
|
|||
{
|
||||
adapter: ""
|
||||
adapter-states: ""
|
||||
connect-bdaddr: ""
|
||||
gsm-apn: ""
|
||||
gsm-number: ""
|
||||
keybindings: {Quit: "q"}
|
||||
receive-dir: ""
|
||||
theme: {}
|
||||
no-warning: true
|
||||
}
|
|
@ -1,248 +0,0 @@
|
|||
#? Config file for btop v. 1.4.0
|
||||
|
||||
#* Name of a btop++/bpytop/bashtop formatted ".theme" file, "Default" and "TTY" for builtin themes.
|
||||
#* Themes should be placed in "../share/btop/themes" relative to binary or "$HOME/.config/btop/themes"
|
||||
color_theme = "/usr/share/btop/themes/adapta.theme"
|
||||
|
||||
#* If the theme set background should be shown, set to False if you want terminal background transparency.
|
||||
theme_background = False
|
||||
|
||||
#* Sets if 24-bit truecolor should be used, will convert 24-bit colors to 256 color (6x6x6 color cube) if false.
|
||||
truecolor = True
|
||||
|
||||
#* Set to true to force tty mode regardless if a real tty has been detected or not.
|
||||
#* Will force 16-color mode and TTY theme, set all graph symbols to "tty" and swap out other non tty friendly symbols.
|
||||
force_tty = False
|
||||
|
||||
#* Define presets for the layout of the boxes. Preset 0 is always all boxes shown with default settings. Max 9 presets.
|
||||
#* Format: "box_name:P:G,box_name:P:G" P=(0 or 1) for alternate positions, G=graph symbol to use for box.
|
||||
#* Use whitespace " " as separator between different presets.
|
||||
#* Example: "cpu:0:default,mem:0:tty,proc:1:default cpu:0:braille,proc:0:tty"
|
||||
presets = "cpu:1:default,proc:0:default cpu:0:default,mem:0:default,net:0:default cpu:0:block,net:0:tty"
|
||||
|
||||
#* Set to True to enable "h,j,k,l,g,G" keys for directional control in lists.
|
||||
#* Conflicting keys for h:"help" and k:"kill" is accessible while holding shift.
|
||||
vim_keys = False
|
||||
|
||||
#* Rounded corners on boxes, is ignored if TTY mode is ON.
|
||||
rounded_corners = True
|
||||
|
||||
#* Default symbols to use for graph creation, "braille", "block" or "tty".
|
||||
#* "braille" offers the highest resolution but might not be included in all fonts.
|
||||
#* "block" has half the resolution of braille but uses more common characters.
|
||||
#* "tty" uses only 3 different symbols but will work with most fonts and should work in a real TTY.
|
||||
#* Note that "tty" only has half the horizontal resolution of the other two, so will show a shorter historical view.
|
||||
graph_symbol = "braille"
|
||||
|
||||
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
|
||||
graph_symbol_cpu = "default"
|
||||
|
||||
# Graph symbol to use for graphs in gpu box, "default", "braille", "block" or "tty".
|
||||
graph_symbol_gpu = "default"
|
||||
|
||||
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
|
||||
graph_symbol_mem = "default"
|
||||
|
||||
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
|
||||
graph_symbol_net = "default"
|
||||
|
||||
# Graph symbol to use for graphs in cpu box, "default", "braille", "block" or "tty".
|
||||
graph_symbol_proc = "default"
|
||||
|
||||
#* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace.
|
||||
shown_boxes = "net cpu proc mem"
|
||||
|
||||
#* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs.
|
||||
update_ms = 100
|
||||
|
||||
#* Processes sorting, "pid" "program" "arguments" "threads" "user" "memory" "cpu lazy" "cpu direct",
|
||||
#* "cpu lazy" sorts top process over time (easier to follow), "cpu direct" updates top process directly.
|
||||
proc_sorting = "memory"
|
||||
|
||||
#* Reverse sorting order, True or False.
|
||||
proc_reversed = False
|
||||
|
||||
#* Show processes as a tree.
|
||||
proc_tree = False
|
||||
|
||||
#* Use the cpu graph colors in the process list.
|
||||
proc_colors = True
|
||||
|
||||
#* Use a darkening gradient in the process list.
|
||||
proc_gradient = True
|
||||
|
||||
#* If process cpu usage should be of the core it's running on or usage of the total available cpu power.
|
||||
proc_per_core = False
|
||||
|
||||
#* Show process memory as bytes instead of percent.
|
||||
proc_mem_bytes = True
|
||||
|
||||
#* Show cpu graph for each process.
|
||||
proc_cpu_graphs = True
|
||||
|
||||
#* Use /proc/[pid]/smaps for memory information in the process info box (very slow but more accurate)
|
||||
proc_info_smaps = False
|
||||
|
||||
#* Show proc box on left side of screen instead of right.
|
||||
proc_left = False
|
||||
|
||||
#* (Linux) Filter processes tied to the Linux kernel(similar behavior to htop).
|
||||
proc_filter_kernel = False
|
||||
|
||||
#* In tree-view, always accumulate child process resources in the parent process.
|
||||
proc_aggregate = False
|
||||
|
||||
#* Sets the CPU stat shown in upper half of the CPU graph, "total" is always available.
|
||||
#* Select from a list of detected attributes from the options menu.
|
||||
cpu_graph_upper = "total"
|
||||
|
||||
#* Sets the CPU stat shown in lower half of the CPU graph, "total" is always available.
|
||||
#* Select from a list of detected attributes from the options menu.
|
||||
cpu_graph_lower = "total"
|
||||
|
||||
#* If gpu info should be shown in the cpu box. Available values = "Auto", "On" and "Off".
|
||||
show_gpu_info = "Auto"
|
||||
|
||||
#* Toggles if the lower CPU graph should be inverted.
|
||||
cpu_invert_lower = True
|
||||
|
||||
#* Set to True to completely disable the lower CPU graph.
|
||||
cpu_single_graph = False
|
||||
|
||||
#* Show cpu box at bottom of screen instead of top.
|
||||
cpu_bottom = False
|
||||
|
||||
#* Shows the system uptime in the CPU box.
|
||||
show_uptime = True
|
||||
|
||||
#* Show cpu temperature.
|
||||
check_temp = True
|
||||
|
||||
#* Which sensor to use for cpu temperature, use options menu to select from list of available sensors.
|
||||
cpu_sensor = "Auto"
|
||||
|
||||
#* Show temperatures for cpu cores also if check_temp is True and sensors has been found.
|
||||
show_coretemp = True
|
||||
|
||||
#* Set a custom mapping between core and coretemp, can be needed on certain cpus to get correct temperature for correct core.
|
||||
#* Use lm-sensors or similar to see which cores are reporting temperatures on your machine.
|
||||
#* Format "x:y" x=core with wrong temp, y=core with correct temp, use space as separator between multiple entries.
|
||||
#* Example: "4:0 5:1 6:3"
|
||||
cpu_core_map = ""
|
||||
|
||||
#* Which temperature scale to use, available values: "celsius", "fahrenheit", "kelvin" and "rankine".
|
||||
temp_scale = "celsius"
|
||||
|
||||
#* Use base 10 for bits/bytes sizes, KB = 1000 instead of KiB = 1024.
|
||||
base_10_sizes = False
|
||||
|
||||
#* Show CPU frequency.
|
||||
show_cpu_freq = True
|
||||
|
||||
#* Draw a clock at top of screen, formatting according to strftime, empty string to disable.
|
||||
#* Special formatting: /host = hostname | /user = username | /uptime = system uptime
|
||||
clock_format = "%X"
|
||||
|
||||
#* Update main ui in background when menus are showing, set this to false if the menus is flickering too much for comfort.
|
||||
background_update = True
|
||||
|
||||
#* Custom cpu model name, empty string to disable.
|
||||
custom_cpu_name = ""
|
||||
|
||||
#* Optional filter for shown disks, should be full path of a mountpoint, separate multiple values with whitespace " ".
|
||||
#* Begin line with "exclude=" to change to exclude filter, otherwise defaults to "most include" filter. Example: disks_filter="exclude=/boot /home/user".
|
||||
disks_filter = ""
|
||||
|
||||
#* Show graphs instead of meters for memory values.
|
||||
mem_graphs = True
|
||||
|
||||
#* Show mem box below net box instead of above.
|
||||
mem_below_net = False
|
||||
|
||||
#* Count ZFS ARC in cached and available memory.
|
||||
zfs_arc_cached = True
|
||||
|
||||
#* If swap memory should be shown in memory box.
|
||||
show_swap = True
|
||||
|
||||
#* Show swap as a disk, ignores show_swap value above, inserts itself after first disk.
|
||||
swap_disk = True
|
||||
|
||||
#* If mem box should be split to also show disks info.
|
||||
show_disks = True
|
||||
|
||||
#* Filter out non physical disks. Set this to False to include network disks, RAM disks and similar.
|
||||
only_physical = True
|
||||
|
||||
#* Read disks list from /etc/fstab. This also disables only_physical.
|
||||
use_fstab = True
|
||||
|
||||
#* Setting this to True will hide all datasets, and only show ZFS pools. (IO stats will be calculated per-pool)
|
||||
zfs_hide_datasets = False
|
||||
|
||||
#* Set to true to show available disk space for privileged users.
|
||||
disk_free_priv = False
|
||||
|
||||
#* Toggles if io activity % (disk busy time) should be shown in regular disk usage view.
|
||||
show_io_stat = True
|
||||
|
||||
#* Toggles io mode for disks, showing big graphs for disk read/write speeds.
|
||||
io_mode = False
|
||||
|
||||
#* Set to True to show combined read/write io graphs in io mode.
|
||||
io_graph_combined = False
|
||||
|
||||
#* Set the top speed for the io graphs in MiB/s (100 by default), use format "mountpoint:speed" separate disks with whitespace " ".
|
||||
#* Example: "/mnt/media:100 /:20 /boot:1".
|
||||
io_graph_speeds = ""
|
||||
|
||||
#* Set fixed values for network graphs in Mebibits. Is only used if net_auto is also set to False.
|
||||
net_download = 100
|
||||
|
||||
net_upload = 100
|
||||
|
||||
#* Use network graphs auto rescaling mode, ignores any values set above and rescales down to 10 Kibibytes at the lowest.
|
||||
net_auto = True
|
||||
|
||||
#* Sync the auto scaling for download and upload to whichever currently has the highest scale.
|
||||
net_sync = True
|
||||
|
||||
#* Starts with the Network Interface specified here.
|
||||
net_iface = ""
|
||||
|
||||
#* Show battery stats in top right if battery is present.
|
||||
show_battery = False
|
||||
|
||||
#* Which battery to use if multiple are present. "Auto" for auto detection.
|
||||
selected_battery = "Auto"
|
||||
|
||||
#* Show power stats of battery next to charge indicator.
|
||||
show_battery_watts = True
|
||||
|
||||
#* Set loglevel for "~/.config/btop/btop.log" levels are: "ERROR" "WARNING" "INFO" "DEBUG".
|
||||
#* The level set includes all lower levels, i.e. "DEBUG" will show all logging info.
|
||||
log_level = "WARNING"
|
||||
|
||||
#* Measure PCIe throughput on NVIDIA cards, may impact performance on certain cards.
|
||||
nvml_measure_pcie_speeds = True
|
||||
|
||||
#* Horizontally mirror the GPU graph.
|
||||
gpu_mirror_graph = True
|
||||
|
||||
#* Custom gpu0 model name, empty string to disable.
|
||||
custom_gpu_name0 = ""
|
||||
|
||||
#* Custom gpu1 model name, empty string to disable.
|
||||
custom_gpu_name1 = ""
|
||||
|
||||
#* Custom gpu2 model name, empty string to disable.
|
||||
custom_gpu_name2 = ""
|
||||
|
||||
#* Custom gpu3 model name, empty string to disable.
|
||||
custom_gpu_name3 = ""
|
||||
|
||||
#* Custom gpu4 model name, empty string to disable.
|
||||
custom_gpu_name4 = ""
|
||||
|
||||
#* Custom gpu5 model name, empty string to disable.
|
||||
custom_gpu_name5 = ""
|
|
@ -1,137 +0,0 @@
|
|||
|
||||
2024/12/31 (14:12:03) | ===> btop++ v.1.4.0
|
||||
2024/12/31 (14:12:03) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2024/12/31 (15:19:56) | ===> btop++ v.1.4.0
|
||||
2024/12/31 (15:19:56) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2024/12/31 (15:28:21) | ===> btop++ v.1.4.0
|
||||
2024/12/31 (15:28:21) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2024/12/31 (17:01:43) | ===> btop++ v.1.4.0
|
||||
2024/12/31 (17:01:43) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2024/12/31 (17:02:42) | ===> btop++ v.1.4.0
|
||||
2024/12/31 (17:02:42) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2024/12/31 (18:23:31) | ===> btop++ v.1.4.0
|
||||
2024/12/31 (18:23:31) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2024/12/31 (18:23:54) | ===> btop++ v.1.4.0
|
||||
2024/12/31 (18:23:54) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2024/12/31 (18:55:02) | ===> btop++ v.1.4.0
|
||||
2024/12/31 (18:55:02) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/01 (15:33:52) | ===> btop++ v.1.4.0
|
||||
2025/01/01 (15:33:52) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/03 (12:18:18) | ===> btop++ v.1.4.0
|
||||
2025/01/03 (12:18:18) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/03 (12:24:50) | ===> btop++ v.1.4.0
|
||||
2025/01/03 (12:24:50) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/03 (22:52:33) | ===> btop++ v.1.4.0
|
||||
2025/01/03 (22:52:33) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/03 (23:41:46) | ===> btop++ v.1.4.0
|
||||
2025/01/03 (23:41:46) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/03 (23:43:14) | ===> btop++ v.1.4.0
|
||||
2025/01/03 (23:43:14) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/04 (10:40:09) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (10:40:09) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/04 (10:40:23) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (10:40:23) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/04 (10:43:09) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (10:43:09) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
2025/01/04 (10:47:43) | ERROR: Couldn't determine terminal size of "STDOUT_FILENO"!
|
||||
2025/01/04 (10:47:43) | ERROR: Couldn't determine terminal size of "/dev/tty"!
|
||||
|
||||
2025/01/04 (10:47:45) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (10:47:45) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/04 (10:48:37) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (10:48:37) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/04 (10:58:04) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (10:58:04) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/04 (10:59:18) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (10:59:18) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/04 (11:05:59) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (11:05:59) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/04 (11:23:17) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (11:23:17) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/04 (11:25:34) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (11:25:34) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/04 (11:37:11) | ===> btop++ v.1.4.0
|
||||
2025/01/04 (11:37:11) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/06 (14:20:30) | ===> btop++ v.1.4.0
|
||||
2025/01/06 (14:20:30) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/06 (14:32:34) | ===> btop++ v.1.4.0
|
||||
2025/01/06 (14:32:34) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/06 (14:45:39) | ===> btop++ v.1.4.0
|
||||
2025/01/06 (14:45:39) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/08 (13:04:37) | ===> btop++ v.1.4.0
|
||||
2025/01/08 (13:04:37) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/08 (13:10:01) | ===> btop++ v.1.4.0
|
||||
2025/01/08 (13:10:01) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/08 (13:11:08) | ===> btop++ v.1.4.0
|
||||
2025/01/08 (13:11:08) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/08 (13:15:40) | ===> btop++ v.1.4.0
|
||||
2025/01/08 (13:15:40) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/10 (14:27:30) | ===> btop++ v.1.4.0
|
||||
2025/01/10 (14:27:30) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/10 (15:53:57) | ===> btop++ v.1.4.0
|
||||
2025/01/10 (15:53:57) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/10 (16:02:45) | ===> btop++ v.1.4.0
|
||||
2025/01/10 (16:02:45) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/10 (17:27:25) | ===> btop++ v.1.4.0
|
||||
2025/01/10 (17:27:25) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/11 (07:23:46) | ===> btop++ v.1.4.0
|
||||
2025/01/11 (07:23:46) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/11 (14:13:24) | ===> btop++ v.1.4.0
|
||||
2025/01/11 (14:13:24) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/13 (17:52:01) | ===> btop++ v.1.4.0
|
||||
2025/01/13 (17:52:01) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/20 (14:18:19) | ===> btop++ v.1.4.0
|
||||
2025/01/20 (14:18:19) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/20 (20:20:23) | ===> btop++ v.1.4.0
|
||||
2025/01/20 (20:20:23) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/21 (13:20:21) | ===> btop++ v.1.4.0
|
||||
2025/01/21 (13:20:21) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/22 (16:54:39) | ===> btop++ v.1.4.0
|
||||
2025/01/22 (16:54:39) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/22 (18:39:50) | ===> btop++ v.1.4.0
|
||||
2025/01/22 (18:39:50) | WARNING: Intel GPU: Failed to initialize PMU
|
||||
|
||||
2025/01/24 (13:17:06) | ===> btop++ v.1.4.0
|
||||
2025/01/24 (13:17:06) | WARNING: Intel GPU: Failed to initialize PMU
|
|
@ -1,83 +0,0 @@
|
|||
# Main background, empty for terminal default, need to be empty if you want transparent background
|
||||
theme[main_bg]="#303446"
|
||||
|
||||
# Main text color
|
||||
theme[main_fg]="#C6D0F5"
|
||||
|
||||
# Title color for boxes
|
||||
theme[title]="#C6D0F5"
|
||||
|
||||
# Highlight color for keyboard shortcuts
|
||||
theme[hi_fg]="#8CAAEE"
|
||||
|
||||
# Background color of selected item in processes box
|
||||
theme[selected_bg]="#51576D"
|
||||
|
||||
# Foreground color of selected item in processes box
|
||||
theme[selected_fg]="#8CAAEE"
|
||||
|
||||
# Color of inactive/disabled text
|
||||
theme[inactive_fg]="#838BA7"
|
||||
|
||||
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
||||
theme[graph_text]="#F2D5CF"
|
||||
|
||||
# Background color of the percentage meters
|
||||
theme[meter_bg]="#51576D"
|
||||
|
||||
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||
theme[proc_misc]="#F2D5CF"
|
||||
|
||||
# CPU, Memory, Network, Proc box outline colors
|
||||
theme[cpu_box]="#ca9ee6" #Mauve
|
||||
theme[mem_box]="#a6d189" #Green
|
||||
theme[net_box]="#ea999c" #Maroon
|
||||
theme[proc_box]="#8caaee" #Blue
|
||||
|
||||
# Box divider line and small boxes line color
|
||||
theme[div_line]="#737994"
|
||||
|
||||
# Temperature graph color (Green -> Yellow -> Red)
|
||||
theme[temp_start]="#a6d189"
|
||||
theme[temp_mid]="#e5c890"
|
||||
theme[temp_end]="#e78284"
|
||||
|
||||
# CPU graph colors (Teal -> Lavender)
|
||||
theme[cpu_start]="#81c8be"
|
||||
theme[cpu_mid]="#85c1dc"
|
||||
theme[cpu_end]="#babbf1"
|
||||
|
||||
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
|
||||
theme[free_start]="#ca9ee6"
|
||||
theme[free_mid]="#babbf1"
|
||||
theme[free_end]="#8caaee"
|
||||
|
||||
# Mem/Disk cached meter (Sapphire -> Lavender)
|
||||
theme[cached_start]="#85c1dc"
|
||||
theme[cached_mid]="#8caaee"
|
||||
theme[cached_end]="#babbf1"
|
||||
|
||||
# Mem/Disk available meter (Peach -> Red)
|
||||
theme[available_start]="#ef9f76"
|
||||
theme[available_mid]="#ea999c"
|
||||
theme[available_end]="#e78284"
|
||||
|
||||
# Mem/Disk used meter (Green -> Sky)
|
||||
theme[used_start]="#a6d189"
|
||||
theme[used_mid]="#81c8be"
|
||||
theme[used_end]="#99d1db"
|
||||
|
||||
# Download graph colors (Peach -> Red)
|
||||
theme[download_start]="#ef9f76"
|
||||
theme[download_mid]="#ea999c"
|
||||
theme[download_end]="#e78284"
|
||||
|
||||
# Upload graph colors (Green -> Sky)
|
||||
theme[upload_start]="#a6d189"
|
||||
theme[upload_mid]="#81c8be"
|
||||
theme[upload_end]="#99d1db"
|
||||
|
||||
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
|
||||
theme[process_start]="#85c1dc"
|
||||
theme[process_mid]="#babbf1"
|
||||
theme[process_end]="#ca9ee6"
|
|
@ -1,84 +0,0 @@
|
|||
# Main background, empty for terminal default, need to be empty if you want transparent background
|
||||
theme[main_bg]="#EFF1F5"
|
||||
|
||||
# Main text color
|
||||
theme[main_fg]="#4C4F69"
|
||||
|
||||
# Title color for boxes
|
||||
theme[title]="#4C4F69"
|
||||
|
||||
# Highlight color for keyboard shortcuts
|
||||
theme[hi_fg]="#1E66F5"
|
||||
|
||||
# Background color of selected item in processes box
|
||||
theme[selected_bg]="#BCC0CC"
|
||||
|
||||
# Foreground color of selected item in processes box
|
||||
theme[selected_fg]="#1E66F5"
|
||||
|
||||
# Color of inactive/disabled text
|
||||
theme[inactive_fg]="#8C8FA1"
|
||||
|
||||
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
||||
theme[graph_text]="#DC8A78"
|
||||
|
||||
# Background color of the percentage meters
|
||||
theme[meter_bg]="#BCC0CC"
|
||||
|
||||
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||
theme[proc_misc]="#DC8A78"
|
||||
|
||||
# CPU, Memory, Network, Proc box outline colors
|
||||
theme[cpu_box]="#8839ef" #Mauve
|
||||
theme[mem_box]="#40a02b" #Green
|
||||
theme[net_box]="#e64553" #Maroon
|
||||
theme[proc_box]="#1e66f5" #Blue
|
||||
|
||||
# Box divider line and small boxes line color
|
||||
theme[div_line]="#9CA0B0"
|
||||
|
||||
# Temperature graph color (Green -> Yellow -> Red)
|
||||
theme[temp_start]="#40a02b"
|
||||
theme[temp_mid]="#df8e1d"
|
||||
theme[temp_end]="#d20f39"
|
||||
|
||||
# CPU graph colors (Teal -> Lavender)
|
||||
theme[cpu_start]="#179299"
|
||||
theme[cpu_mid]="#209fb5"
|
||||
theme[cpu_end]="#7287fd"
|
||||
|
||||
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
|
||||
theme[free_start]="#8839ef"
|
||||
theme[free_mid]="#7287fd"
|
||||
theme[free_end]="#1e66f5"
|
||||
|
||||
# Mem/Disk cached meter (Sapphire -> Lavender)
|
||||
theme[cached_start]="#209fb5"
|
||||
theme[cached_mid]="#1e66f5"
|
||||
theme[cached_end]="#7287fd"
|
||||
|
||||
# Mem/Disk available meter (Peach -> Red)
|
||||
theme[available_start]="#fe640b"
|
||||
theme[available_mid]="#e64553"
|
||||
theme[available_end]="#d20f39"
|
||||
|
||||
|
||||
# Mem/Disk used meter (Green -> Sky)
|
||||
theme[used_start]="#40a02b"
|
||||
theme[used_mid]="#179299"
|
||||
theme[used_end]="#04a5e5"
|
||||
|
||||
# Download graph colors (Peach -> Red)
|
||||
theme[download_start]="#fe640b"
|
||||
theme[download_mid]="#e64553"
|
||||
theme[download_end]="#d20f39"
|
||||
|
||||
# Upload graph colors (Green -> Sky)
|
||||
theme[upload_start]="#40a02b"
|
||||
theme[upload_mid]="#179299"
|
||||
theme[upload_end]="#04a5e5"
|
||||
|
||||
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Lavender-> Mauve)
|
||||
theme[process_start]="#209fb5"
|
||||
theme[process_mid]="#7287fd"
|
||||
theme[process_end]="#8839ef"
|
|
@ -1,83 +0,0 @@
|
|||
# Main background, empty for terminal default, need to be empty if you want transparent background
|
||||
theme[main_bg]="#24273A"
|
||||
|
||||
# Main text color
|
||||
theme[main_fg]="#CAD3F5"
|
||||
|
||||
# Title color for boxes
|
||||
theme[title]="#CAD3F5"
|
||||
|
||||
# Highlight color for keyboard shortcuts
|
||||
theme[hi_fg]="#8AADF4"
|
||||
|
||||
# Background color of selected item in processes box
|
||||
theme[selected_bg]="#494D64"
|
||||
|
||||
# Foreground color of selected item in processes box
|
||||
theme[selected_fg]="#8AADF4"
|
||||
|
||||
# Color of inactive/disabled text
|
||||
theme[inactive_fg]="#8087A2"
|
||||
|
||||
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
||||
theme[graph_text]="#F4DBD6"
|
||||
|
||||
# Background color of the percentage meters
|
||||
theme[meter_bg]="#494D64"
|
||||
|
||||
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||
theme[proc_misc]="#F4DBD6"
|
||||
|
||||
# CPU, Memory, Network, Proc box outline colors
|
||||
theme[cpu_box]="#c6a0f6" #Mauve
|
||||
theme[mem_box]="#a6da95" #Green
|
||||
theme[net_box]="#ee99a0" #Maroon
|
||||
theme[proc_box]="#8aadf4" #Blue
|
||||
|
||||
# Box divider line and small boxes line color
|
||||
theme[div_line]="#6E738D"
|
||||
|
||||
# Temperature graph color (Green -> Yellow -> Red)
|
||||
theme[temp_start]="#a6da95"
|
||||
theme[temp_mid]="#eed49f"
|
||||
theme[temp_end]="#ed8796"
|
||||
|
||||
# CPU graph colors (Teal -> Lavender)
|
||||
theme[cpu_start]="#8bd5ca"
|
||||
theme[cpu_mid]="#7dc4e4"
|
||||
theme[cpu_end]="#b7bdf8"
|
||||
|
||||
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
|
||||
theme[free_start]="#c6a0f6"
|
||||
theme[free_mid]="#b7bdf8"
|
||||
theme[free_end]="#8aadf4"
|
||||
|
||||
# Mem/Disk cached meter (Sapphire -> Lavender)
|
||||
theme[cached_start]="#7dc4e4"
|
||||
theme[cached_mid]="#8aadf4"
|
||||
theme[cached_end]="#b7bdf8"
|
||||
|
||||
# Mem/Disk available meter (Peach -> Red)
|
||||
theme[available_start]="#f5a97f"
|
||||
theme[available_mid]="#ee99a0"
|
||||
theme[available_end]="#ed8796"
|
||||
|
||||
# Mem/Disk used meter (Green -> Sky)
|
||||
theme[used_start]="#a6da95"
|
||||
theme[used_mid]="#8bd5ca"
|
||||
theme[used_end]="#91d7e3"
|
||||
|
||||
# Download graph colors (Peach -> Red)
|
||||
theme[download_start]="#f5a97f"
|
||||
theme[download_mid]="#ee99a0"
|
||||
theme[download_end]="#ed8796"
|
||||
|
||||
# Upload graph colors (Green -> Sky)
|
||||
theme[upload_start]="#a6da95"
|
||||
theme[upload_mid]="#8bd5ca"
|
||||
theme[upload_end]="#91d7e3"
|
||||
|
||||
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
|
||||
theme[process_start]="#7dc4e4"
|
||||
theme[process_mid]="#b7bdf8"
|
||||
theme[process_end]="#c6a0f6"
|
|
@ -1,83 +0,0 @@
|
|||
# Main background, empty for terminal default, need to be empty if you want transparent background
|
||||
theme[main_bg]="#1E1E2E"
|
||||
|
||||
# Main text color
|
||||
theme[main_fg]="#CDD6F4"
|
||||
|
||||
# Title color for boxes
|
||||
theme[title]="#CDD6F4"
|
||||
|
||||
# Highlight color for keyboard shortcuts
|
||||
theme[hi_fg]="#89B4FA"
|
||||
|
||||
# Background color of selected item in processes box
|
||||
theme[selected_bg]="#45475A"
|
||||
|
||||
# Foreground color of selected item in processes box
|
||||
theme[selected_fg]="#89B4FA"
|
||||
|
||||
# Color of inactive/disabled text
|
||||
theme[inactive_fg]="#7F849C"
|
||||
|
||||
# Color of text appearing on top of graphs, i.e uptime and current network graph scaling
|
||||
theme[graph_text]="#F5E0DC"
|
||||
|
||||
# Background color of the percentage meters
|
||||
theme[meter_bg]="#45475A"
|
||||
|
||||
# Misc colors for processes box including mini cpu graphs, details memory graph and details status text
|
||||
theme[proc_misc]="#F5E0DC"
|
||||
|
||||
# CPU, Memory, Network, Proc box outline colors
|
||||
theme[cpu_box]="#cba6f7" #Mauve
|
||||
theme[mem_box]="#a6e3a1" #Green
|
||||
theme[net_box]="#eba0ac" #Maroon
|
||||
theme[proc_box]="#89b4fa" #Blue
|
||||
|
||||
# Box divider line and small boxes line color
|
||||
theme[div_line]="#6C7086"
|
||||
|
||||
# Temperature graph color (Green -> Yellow -> Red)
|
||||
theme[temp_start]="#a6e3a1"
|
||||
theme[temp_mid]="#f9e2af"
|
||||
theme[temp_end]="#f38ba8"
|
||||
|
||||
# CPU graph colors (Teal -> Lavender)
|
||||
theme[cpu_start]="#94e2d5"
|
||||
theme[cpu_mid]="#74c7ec"
|
||||
theme[cpu_end]="#b4befe"
|
||||
|
||||
# Mem/Disk free meter (Mauve -> Lavender -> Blue)
|
||||
theme[free_start]="#cba6f7"
|
||||
theme[free_mid]="#b4befe"
|
||||
theme[free_end]="#89b4fa"
|
||||
|
||||
# Mem/Disk cached meter (Sapphire -> Lavender)
|
||||
theme[cached_start]="#74c7ec"
|
||||
theme[cached_mid]="#89b4fa"
|
||||
theme[cached_end]="#b4befe"
|
||||
|
||||
# Mem/Disk available meter (Peach -> Red)
|
||||
theme[available_start]="#fab387"
|
||||
theme[available_mid]="#eba0ac"
|
||||
theme[available_end]="#f38ba8"
|
||||
|
||||
# Mem/Disk used meter (Green -> Sky)
|
||||
theme[used_start]="#a6e3a1"
|
||||
theme[used_mid]="#94e2d5"
|
||||
theme[used_end]="#89dceb"
|
||||
|
||||
# Download graph colors (Peach -> Red)
|
||||
theme[download_start]="#fab387"
|
||||
theme[download_mid]="#eba0ac"
|
||||
theme[download_end]="#f38ba8"
|
||||
|
||||
# Upload graph colors (Green -> Sky)
|
||||
theme[upload_start]="#a6e3a1"
|
||||
theme[upload_mid]="#94e2d5"
|
||||
theme[upload_end]="#89dceb"
|
||||
|
||||
# Process box color gradient for threads, mem and cpu usage (Sapphire -> Mauve)
|
||||
theme[process_start]="#74C7EC"
|
||||
theme[process_mid]="#89DCEB"
|
||||
theme[process_end]="#cba6f7"
|
|
@ -1,273 +0,0 @@
|
|||
## Configuration file for CAVA.
|
||||
# Remove the ; to change parameters.
|
||||
|
||||
|
||||
[general]
|
||||
|
||||
# Smoothing mode. Can be 'normal', 'scientific' or 'waves'. DEPRECATED as of 0.6.0
|
||||
; mode = normal
|
||||
|
||||
# Accepts only non-negative values.
|
||||
; framerate = 60
|
||||
|
||||
# 'autosens' will attempt to decrease sensitivity if the bars peak. 1 = on, 0 = off
|
||||
# new as of 0.6.0 autosens of low values (dynamic range)
|
||||
# 'overshoot' allows bars to overshoot (in % of terminal height) without initiating autosens. DEPRECATED as of 0.6.0
|
||||
; autosens = 1
|
||||
; overshoot = 20
|
||||
|
||||
# Manual sensitivity in %. If autosens is enabled, this will only be the initial value.
|
||||
# 200 means double height. Accepts only non-negative values.
|
||||
; sensitivity = 100
|
||||
|
||||
# The number of bars (0-512). 0 sets it to auto (fill up console).
|
||||
# Bars' width and space between bars in number of characters.
|
||||
; bars = 0
|
||||
; bar_width = 2
|
||||
; bar_spacing = 1
|
||||
# bar_height is only used for output in "noritake" format
|
||||
; bar_height = 32
|
||||
|
||||
# For SDL width and space between bars is in pixels, defaults are:
|
||||
; bar_width = 20
|
||||
; bar_spacing = 5
|
||||
|
||||
# sdl_glsl have these default values, they are only used to calulate max number of bars.
|
||||
; bar_width = 1
|
||||
; bar_spacing = 0
|
||||
|
||||
|
||||
# Lower and higher cutoff frequencies for lowest and highest bars
|
||||
# the bandwidth of the visualizer.
|
||||
# Note: there is a minimum total bandwidth of 43Mhz x number of bars.
|
||||
# Cava will automatically increase the higher cutoff if a too low band is specified.
|
||||
; lower_cutoff_freq = 50
|
||||
; higher_cutoff_freq = 10000
|
||||
|
||||
|
||||
# Seconds with no input before cava goes to sleep mode. Cava will not perform FFT or drawing and
|
||||
# only check for input once per second. Cava will wake up once input is detected. 0 = disable.
|
||||
; sleep_timer = 0
|
||||
|
||||
|
||||
[input]
|
||||
|
||||
# Audio capturing method. Possible methods are: 'fifo', 'portaudio', 'pipewire', 'alsa', 'pulse', 'sndio', 'oss', 'jack' or 'shmem'
|
||||
# Defaults to 'oss', 'pipewire', 'sndio', 'jack', 'pulse', 'alsa', 'portaudio' or 'fifo', in that order, dependent on what support cava was built with.
|
||||
# On Mac it defaults to 'portaudio' or 'fifo'
|
||||
# On windows this is automatic and no input settings are needed.
|
||||
#
|
||||
# All input methods uses the same config variable 'source'
|
||||
# to define where it should get the audio.
|
||||
#
|
||||
# For pulseaudio and pipewire 'source' will be the source. Default: 'auto', which uses the monitor source of the default sink
|
||||
# (all pulseaudio sinks(outputs) have 'monitor' sources(inputs) associated with them).
|
||||
#
|
||||
# For pipewire 'source' will be the object name or object.serial of the device to capture from.
|
||||
# Both input and output devices are supported.
|
||||
#
|
||||
# For alsa 'source' will be the capture device.
|
||||
# For fifo 'source' will be the path to fifo-file.
|
||||
# For shmem 'source' will be /squeezelite-AA:BB:CC:DD:EE:FF where 'AA:BB:CC:DD:EE:FF' will be squeezelite's MAC address
|
||||
#
|
||||
# For sndio 'source' will be a raw recording audio descriptor or a monitoring sub-device, e.g. 'rsnd/2' or 'snd/1'. Default: 'default'.
|
||||
# README.md contains further information on how to setup CAVA for sndio.
|
||||
#
|
||||
# For oss 'source' will be the path to a audio device, e.g. '/dev/dsp2'. Default: '/dev/dsp', i.e. the default audio device.
|
||||
# README.md contains further information on how to setup CAVA for OSS on FreeBSD.
|
||||
#
|
||||
# For jack 'source' will be the name of the JACK server to connect to, e.g. 'foobar'. Default: 'default'.
|
||||
# README.md contains further information on how to setup CAVA for JACK.
|
||||
#
|
||||
; method = pulse
|
||||
; source = auto
|
||||
|
||||
; method = pipewire
|
||||
; source = auto
|
||||
|
||||
; method = alsa
|
||||
; source = hw:Loopback,1
|
||||
|
||||
; method = fifo
|
||||
; source = /tmp/mpd.fifo
|
||||
|
||||
; method = shmem
|
||||
; source = /squeezelite-AA:BB:CC:DD:EE:FF
|
||||
|
||||
; method = portaudio
|
||||
; source = auto
|
||||
|
||||
; method = sndio
|
||||
; source = default
|
||||
|
||||
; method = oss
|
||||
; source = /dev/dsp
|
||||
|
||||
; method = jack
|
||||
; source = default
|
||||
|
||||
# The options 'sample_rate', 'sample_bits', 'channels' and 'autoconnect' can be configured for some input methods:
|
||||
# sample_rate: fifo, pipewire, sndio, oss
|
||||
# sample_bits: fifo, pipewire, sndio, oss
|
||||
# channels: sndio, oss, jack
|
||||
# autoconnect: jack
|
||||
# Other methods ignore these settings.
|
||||
#
|
||||
# For 'sndio' and 'oss' they are only preferred values, i.e. if the values are not supported
|
||||
# by the chosen audio device, the device will use other supported values instead.
|
||||
# Example: 48000, 32 and 2, but the device only supports 44100, 16 and 1, then it
|
||||
# will use 44100, 16 and 1.
|
||||
#
|
||||
; sample_rate = 44100
|
||||
; sample_bits = 16
|
||||
; channels = 2
|
||||
; autoconnect = 2
|
||||
|
||||
|
||||
[output]
|
||||
|
||||
# Output method. Can be 'ncurses', 'noncurses', 'raw', 'noritake', 'sdl'
|
||||
# or 'sdl_glsl'.
|
||||
# 'noncurses' (default) uses a buffer and cursor movements to only print
|
||||
# changes from frame to frame in the terminal. Uses less resources and is less
|
||||
# prone to tearing (vsync issues) than 'ncurses'.
|
||||
#
|
||||
# 'raw' is an 8 or 16 bit (configurable via the 'bit_format' option) data
|
||||
# stream of the bar heights that can be used to send to other applications.
|
||||
# 'raw' defaults to 200 bars, which can be adjusted in the 'bars' option above.
|
||||
#
|
||||
# 'noritake' outputs a bitmap in the format expected by a Noritake VFD display
|
||||
# in graphic mode. It only support the 3000 series graphical VFDs for now.
|
||||
#
|
||||
# 'sdl' uses the Simple DirectMedia Layer to render in a graphical context.
|
||||
# 'sdl_glsl' uses SDL to create an OpenGL context. Write your own shaders or
|
||||
# use one of the predefined ones.
|
||||
; method = noncurses
|
||||
|
||||
# Orientation of the visualization. Can be 'bottom', 'top', 'left' or 'right'.
|
||||
# Default is 'bottom'. Other orientations are only supported on sdl and ncruses
|
||||
# output. Note: many fonts have weird glyphs for 'top' and 'right' characters,
|
||||
# which can make ncurses not look right.
|
||||
; orientation = bottom
|
||||
|
||||
# Visual channels. Can be 'stereo' or 'mono'.
|
||||
# 'stereo' mirrors both channels with low frequencies in center.
|
||||
# 'mono' outputs left to right lowest to highest frequencies.
|
||||
# 'mono_option' set mono to either take input from 'left', 'right' or 'average'.
|
||||
# set 'reverse' to 1 to display frequencies the other way around.
|
||||
; channels = stereo
|
||||
; mono_option = average
|
||||
; reverse = 0
|
||||
|
||||
# Raw output target. A fifo will be created if target does not exist.
|
||||
; raw_target = /dev/stdout
|
||||
|
||||
# Raw data format. Can be 'binary' or 'ascii'.
|
||||
; data_format = binary
|
||||
|
||||
# Binary bit format, can be '8bit' (0-255) or '16bit' (0-65530).
|
||||
; bit_format = 16bit
|
||||
|
||||
# Ascii max value. In 'ascii' mode range will run from 0 to value specified here
|
||||
; ascii_max_range = 1000
|
||||
|
||||
# Ascii delimiters. In ascii format each bar and frame is separated by a delimiters.
|
||||
# Use decimal value in ascii table (i.e. 59 = ';' and 10 = '\n' (line feed)).
|
||||
; bar_delimiter = 59
|
||||
; frame_delimiter = 10
|
||||
|
||||
# sdl window size and position. -1,-1 is centered.
|
||||
; sdl_width = 1000
|
||||
; sdl_height = 500
|
||||
; sdl_x = -1
|
||||
; sdl_y= -1
|
||||
; sdl_full_screen = 0
|
||||
|
||||
# set label on bars on the x-axis. Can be 'frequency' or 'none'. Default: 'none'
|
||||
# 'frequency' displays the lower cut off frequency of the bar above.
|
||||
# Only supported on ncurses and noncurses output.
|
||||
; xaxis = none
|
||||
|
||||
# enable alacritty synchronized updates. 1 = on, 0 = off
|
||||
# removes flickering in alacritty terminal emulator.
|
||||
# defaults to off since the behaviour in other terminal emulators is unknown
|
||||
; alacritty_sync = 0
|
||||
|
||||
# Shaders for sdl_glsl, located in $HOME/.config/cava/shaders
|
||||
; vertex_shader = pass_through.vert
|
||||
; fragment_shader = bar_spectrum.frag
|
||||
|
||||
; for glsl output mode, keep rendering even if no audio
|
||||
; continuous_rendering = 0
|
||||
|
||||
# disable console blank (screen saver) in tty
|
||||
# (Not supported on FreeBSD)
|
||||
; disable_blanking = 0
|
||||
|
||||
[color]
|
||||
|
||||
# Colors can be one of seven predefined: black, blue, cyan, green, magenta, red, white, yellow.
|
||||
# Or defined by hex code '#xxxxxx' (hex code must be within ''). User defined colors requires
|
||||
# a terminal that can change color definitions such as Gnome-terminal or rxvt.
|
||||
# default is to keep current terminal color
|
||||
; background = default
|
||||
; foreground = default
|
||||
|
||||
# SDL and sdl_glsl only support hex code colors, these are the default:
|
||||
; background = '#111111'
|
||||
; foreground = '#33ffff'
|
||||
|
||||
|
||||
# Gradient mode, only hex defined colors are supported,
|
||||
# background must also be defined in hex or remain commented out. 1 = on, 0 = off.
|
||||
# You can define as many as 8 different colors. They range from bottom to top of screen
|
||||
; gradient = 0
|
||||
; gradient_count = 8
|
||||
; gradient_color_1 = '#59cc33'
|
||||
; gradient_color_2 = '#80cc33'
|
||||
; gradient_color_3 = '#a6cc33'
|
||||
; gradient_color_4 = '#cccc33'
|
||||
; gradient_color_5 = '#cca633'
|
||||
; gradient_color_6 = '#cc8033'
|
||||
; gradient_color_7 = '#cc5933'
|
||||
; gradient_color_8 = '#cc3333'
|
||||
|
||||
|
||||
|
||||
[smoothing]
|
||||
|
||||
# Percentage value for integral smoothing. Takes values from 0 - 100.
|
||||
# Higher values means smoother, but less precise. 0 to disable.
|
||||
# DEPRECATED as of 0.8.0, use noise_reduction instead
|
||||
; integral = 77
|
||||
|
||||
# Disables or enables the so-called "Monstercat smoothing" with or without "waves". Set to 0 to disable.
|
||||
; monstercat = 0
|
||||
; waves = 0
|
||||
|
||||
# Set gravity percentage for "drop off". Higher values means bars will drop faster.
|
||||
# Accepts only non-negative values. 50 means half gravity, 200 means double. Set to 0 to disable "drop off".
|
||||
# DEPRECATED as of 0.8.0, use noise_reduction instead
|
||||
; gravity = 100
|
||||
|
||||
|
||||
# In bar height, bars that would have been lower that this will not be drawn.
|
||||
# DEPRECATED as of 0.8.0
|
||||
; ignore = 0
|
||||
|
||||
# Noise reduction, int 0 - 100. default 77
|
||||
# the raw visualization is very noisy, this factor adjusts the integral and gravity filters to keep the signal smooth
|
||||
# 100 will be very slow and smooth, 0 will be fast but noisy.
|
||||
; noise_reduction = 77
|
||||
|
||||
|
||||
[eq]
|
||||
|
||||
# This one is tricky. You can have as much keys as you want.
|
||||
# Remember to uncomment more than one key! More keys = more precision.
|
||||
# Look at readme.md on github for further explanations and examples.
|
||||
; 1 = 1 # bass
|
||||
; 2 = 1
|
||||
; 3 = 1 # midtone
|
||||
; 4 = 1
|
||||
; 5 = 1 # treble
|
|
@ -1,79 +0,0 @@
|
|||
#version 330
|
||||
|
||||
in vec2 fragCoord;
|
||||
out vec4 fragColor;
|
||||
|
||||
// bar values. defaults to left channels first (low to high), then right (high to low).
|
||||
uniform float bars[512];
|
||||
|
||||
uniform int bars_count; // number of bars (left + right) (configurable)
|
||||
uniform int bar_width; // bar width (configurable), not used here
|
||||
uniform int bar_spacing; // space bewteen bars (configurable)
|
||||
|
||||
uniform vec3 u_resolution; // window resolution
|
||||
|
||||
//colors, configurable in cava config file (r,g,b) (0.0 - 1.0)
|
||||
uniform vec3 bg_color; // background color
|
||||
uniform vec3 fg_color; // foreground color
|
||||
|
||||
uniform int gradient_count;
|
||||
uniform vec3 gradient_colors[8]; // gradient colors
|
||||
|
||||
vec3 normalize_C(float y,vec3 col_1, vec3 col_2, float y_min, float y_max)
|
||||
{
|
||||
//create color based on fraction of this color and next color
|
||||
float yr = (y - y_min) / (y_max - y_min);
|
||||
return col_1 * (1.0 - yr) + col_2 * yr;
|
||||
}
|
||||
|
||||
void main()
|
||||
{
|
||||
// find which bar to use based on where we are on the x axis
|
||||
float x = u_resolution.x * fragCoord.x;
|
||||
int bar = int(bars_count * fragCoord.x);
|
||||
|
||||
//calculate a bar size
|
||||
float bar_size = u_resolution.x / bars_count;
|
||||
|
||||
//the y coordinate and bar values are the same
|
||||
float y = bars[bar];
|
||||
|
||||
// make sure there is a thin line at bottom
|
||||
if (y * u_resolution.y < 1.0)
|
||||
{
|
||||
y = 1.0 / u_resolution.y;
|
||||
}
|
||||
|
||||
//draw the bar up to current height
|
||||
if (y > fragCoord.y)
|
||||
{
|
||||
//make some space between bars basen on settings
|
||||
if (x > (bar + 1) * (bar_size) - bar_spacing)
|
||||
{
|
||||
fragColor = vec4(bg_color,1.0);
|
||||
}
|
||||
else
|
||||
{
|
||||
if (gradient_count == 0)
|
||||
{
|
||||
fragColor = vec4(fg_color,1.0);
|
||||
}
|
||||
else
|
||||
{
|
||||
//find which color in the configured gradient we are at
|
||||
int color = int((gradient_count - 1) * fragCoord.y);
|
||||
|
||||
//find where on y this and next color is supposed to be
|
||||
float y_min = color / (gradient_count - 1.0);
|
||||
float y_max = (color + 1.0) / (gradient_count - 1.0);
|
||||
|
||||
//make color
|
||||
fragColor = vec4(normalize_C(fragCoord.y, gradient_colors[color], gradient_colors[color + 1], y_min, y_max), 1.0);
|
||||
}
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
fragColor = vec4(bg_color,1.0);
|
||||
}
|
||||
}
|
|
@ -1,34 +0,0 @@
|
|||
#version 330
|
||||
|
||||
in vec2 fragCoord;
|
||||
out vec4 fragColor;
|
||||
|
||||
// bar values. defaults to left channels first (low to high), then right (high to low).
|
||||
uniform float bars[512];
|
||||
|
||||
uniform int bars_count; // number of bars (left + right) (configurable)
|
||||
|
||||
uniform vec3 u_resolution; // window resolution, not used here
|
||||
|
||||
//colors, configurable in cava config file
|
||||
uniform vec3 bg_color; // background color(r,g,b) (0.0 - 1.0), not used here
|
||||
uniform vec3 fg_color; // foreground color, not used here
|
||||
|
||||
void main()
|
||||
{
|
||||
// find which bar to use based on where we are on the x axis
|
||||
int bar = int(bars_count * fragCoord.x);
|
||||
|
||||
float bar_y = 1.0 - abs((fragCoord.y - 0.5)) * 2.0;
|
||||
float y = (bars[bar]) * bar_y;
|
||||
|
||||
float bar_x = (fragCoord.x - float(bar) / float(bars_count)) * bars_count;
|
||||
float bar_r = 1.0 - abs((bar_x - 0.5)) * 2;
|
||||
|
||||
bar_r = bar_r * bar_r * 2;
|
||||
|
||||
// set color
|
||||
fragColor.r = fg_color.x * y * bar_r;
|
||||
fragColor.g = fg_color.y * y * bar_r;
|
||||
fragColor.b = fg_color.z * y * bar_r;
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
#version 330
|
||||
|
||||
|
||||
// Input vertex data, different for all executions of this shader.
|
||||
layout(location = 0) in vec3 vertexPosition_modelspace;
|
||||
|
||||
// Output data ; will be interpolated for each fragment.
|
||||
out vec2 fragCoord;
|
||||
|
||||
void main()
|
||||
{
|
||||
gl_Position = vec4(vertexPosition_modelspace,1);
|
||||
fragCoord = (vertexPosition_modelspace.xy+vec2(1,1))/2.0;
|
||||
}
|
|
@ -1,81 +0,0 @@
|
|||
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
;; Place your private configuration here! Remember, you do not need to run 'doom
|
||||
;; sync' after modifying this file!
|
||||
|
||||
|
||||
;; Some functionality uses this to identify you, e.g. GPG configuration, email
|
||||
;; clients, file templates and snippets. It is optional.
|
||||
;; (setq user-full-name "John Doe"
|
||||
;; user-mail-address "john@doe.com")
|
||||
|
||||
;; Doom exposes five (optional) variables for controlling fonts in Doom:
|
||||
;;
|
||||
;; - `doom-font' -- the primary font to use
|
||||
;; - `doom-variable-pitch-font' -- a non-monospace font (where applicable)
|
||||
;; - `doom-big-font' -- used for `doom-big-font-mode'; use this for
|
||||
;; presentations or streaming.
|
||||
;; - `doom-symbol-font' -- for symbols
|
||||
;; - `doom-serif-font' -- for the `fixed-pitch-serif' face
|
||||
;;
|
||||
;; See 'C-h v doom-font' for documentation and more examples of what they
|
||||
;; accept. For example:
|
||||
;;
|
||||
;;(setq doom-font (font-spec :family "Fira Code" :size 12 :weight 'semi-light)
|
||||
;; doom-variable-pitch-font (font-spec :family "Fira Sans" :size 13))
|
||||
;;
|
||||
;; If you or Emacs can't find your font, use 'M-x describe-font' to look them
|
||||
;; up, `M-x eval-region' to execute elisp code, and 'M-x doom/reload-font' to
|
||||
;; refresh your font settings. If Emacs still can't find your font, it likely
|
||||
;; wasn't installed correctly. Font issues are rarely Doom issues!
|
||||
|
||||
;; There are two ways to load a theme. Both assume the theme is installed and
|
||||
;; available. You can either set `doom-theme' or manually load a theme with the
|
||||
;; `load-theme' function. This is the default:
|
||||
(setq doom-theme 'catppuccin)
|
||||
;;(setq catppuccin-flavor 'mocha)
|
||||
;;(catppuccin-reload)
|
||||
|
||||
;; This determines the style of line numbers in effect. If set to `nil', line
|
||||
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
||||
(setq display-line-numbers-type t)
|
||||
|
||||
(setq doom-font (font-spec :family "FiraCode Nerd Font" :size 20))
|
||||
|
||||
|
||||
;; If you use `org' and don't want your org files in the default location below,
|
||||
;; change `org-directory'. It must be set before org loads!
|
||||
(setq org-directory "~/Documents/OrgMode/")
|
||||
|
||||
|
||||
;; Whenever you reconfigure a package, make sure to wrap your config in an
|
||||
;; `after!' block, otherwise Doom's defaults may override your settings. E.g.
|
||||
;;
|
||||
;; (after! PACKAGE
|
||||
;; (setq x y))
|
||||
;;
|
||||
;; The exceptions to this rule:
|
||||
;;
|
||||
;; - Setting file/directory variables (like `org-directory')
|
||||
;; - Setting variables which explicitly tell you to set them before their
|
||||
;; package is loaded (see 'C-h v VARIABLE' to look up their documentation).
|
||||
;; - Setting doom variables (which start with 'doom-' or '+').
|
||||
;;
|
||||
;; Here are some additional functions/macros that will help you configure Doom.
|
||||
;;
|
||||
;; - `load!' for loading external *.el files relative to this one
|
||||
;; - `use-package!' for configuring packages
|
||||
;; - `after!' for running code after a package has loaded
|
||||
;; - `add-load-path!' for adding directories to the `load-path', relative to
|
||||
;; this file. Emacs searches the `load-path' when you load packages with
|
||||
;; `require' or `use-package'.
|
||||
;; - `map!' for binding new keys
|
||||
;;
|
||||
;; To get information about any of these functions/macros, move the cursor over
|
||||
;; the highlighted symbol at press 'K' (non-evil users must press 'C-c c k').
|
||||
;; This will open documentation for it, including demos of how they are used.
|
||||
;; Alternatively, use `C-h o' to look up a symbol (functions, variables, faces,
|
||||
;; etc).
|
||||
;;
|
||||
;; You can also try 'gd' (or 'C-c c d') to jump to their definition and see how
|
||||
;; they are implemented.
|
|
@ -1,196 +0,0 @@
|
|||
;;; init.el -*- lexical-binding: t; -*-
|
||||
|
||||
;; This file controls what Doom modules are enabled and what order they load
|
||||
;; in. Remember to run 'doom sync' after modifying it!
|
||||
|
||||
;; NOTE Press 'SPC h d h' (or 'C-h d h' for non-vim users) to access Doom's
|
||||
;; documentation. There you'll find a link to Doom's Module Index where all
|
||||
;; of our modules are listed, including what flags they support.
|
||||
|
||||
;; NOTE Move your cursor over a module's name (or its flags) and press 'K' (or
|
||||
;; 'C-c c k' for non-vim users) to view its documentation. This works on
|
||||
;; flags as well (those symbols that start with a plus).
|
||||
;;
|
||||
;; Alternatively, press 'gd' (or 'C-c c d') on a module to browse its
|
||||
;; directory (for easy access to its source code).
|
||||
|
||||
(doom! :input
|
||||
;;bidi ; (tfel ot) thgir etirw uoy gnipleh
|
||||
;;chinese
|
||||
;;japanese
|
||||
;;layout ; auie,ctsrnm is the superior home row
|
||||
|
||||
:completion
|
||||
company ; the ultimate code completion backend
|
||||
;;helm ; the *other* search engine for love and life
|
||||
;;ido ; the other *other* search engine...
|
||||
;;ivy ; a search engine for love and life
|
||||
vertico ; the search engine of the future
|
||||
|
||||
:ui
|
||||
;;deft ; notational velocity for Emacs
|
||||
doom ; what makes DOOM look the way it does
|
||||
doom-dashboard ; a nifty splash screen for Emacs
|
||||
;;doom-quit ; DOOM quit-message prompts when you quit Emacs
|
||||
(emoji +unicode) ; 🙂
|
||||
hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
|
||||
;;hydra
|
||||
;;indent-guides ; highlighted indent columns
|
||||
;;(ligatures +extra +fira) ; ligatures and symbols to make your code pretty again
|
||||
|
||||
minimap ; show a map of the code on the side
|
||||
modeline ; snazzy, Atom-inspired modeline, plus API
|
||||
;;nav-flash ; blink cursor line after big motions
|
||||
;;neotree ; a project drawer, like NERDTree for vim
|
||||
ophints ; highlight the region an operation acts on
|
||||
(popup +defaults) ; tame sudden yet inevitable temporary windows
|
||||
tabs ; a tab bar for Emacs
|
||||
;;treemacs ; a project drawer, like neotree but cooler
|
||||
;;unicode ; extended unicode support for various languages
|
||||
(vc-gutter +pretty) ; vcs diff in the fringe
|
||||
vi-tilde-fringe ; fringe tildes to mark beyond EOB
|
||||
;;window-select ; visually switch windows
|
||||
workspaces ; tab emulation, persistence & separate workspaces
|
||||
;;zen ; distraction-free coding or writing
|
||||
|
||||
:editor
|
||||
(evil +everywhere); come to the dark side, we have cookies
|
||||
file-templates ; auto-snippets for empty files
|
||||
fold ; (nigh) universal code folding
|
||||
;;(format +onsave) ; automated prettiness
|
||||
;;god ; run Emacs commands without modifier keys
|
||||
;;lispy ; vim for lisp, for people who don't like vim
|
||||
;;multiple-cursors ; editing in many places at once
|
||||
;;objed ; text object editing for the innocent
|
||||
;;parinfer ; turn lisp into python, sort of
|
||||
;;rotate-text ; cycle region at point between text candidates
|
||||
snippets ; my elves. They type so I don't have to
|
||||
word-wrap ; soft wrapping with language-aware indent
|
||||
|
||||
:emacs
|
||||
dired ; making dired pretty [functional]
|
||||
electric ; smarter, keyword-based electric-indent
|
||||
;;ibuffer ; interactive buffer management
|
||||
undo ; persistent, smarter undo for your inevitable mistakes
|
||||
vc ; version-control and Emacs, sitting in a tree
|
||||
|
||||
:term
|
||||
eshell ; the elisp shell that works everywhere
|
||||
;;shell ; simple shell REPL for Emacs
|
||||
;;term ; basic terminal emulator for Emacs
|
||||
;;vterm ; the best terminal emulation in Emacs
|
||||
|
||||
:checkers
|
||||
syntax ; tasing you for every semicolon you forget
|
||||
(spell +flyspell) ; tasing you for misspelling mispelling
|
||||
grammar ; tasing grammar mistake every you make
|
||||
|
||||
:tools
|
||||
;;ansible
|
||||
;;biblio ; Writes a PhD for you (citation needed)
|
||||
;;collab ; buffers with friends
|
||||
;;debugger ; FIXME stepping through code, to help you add bugs
|
||||
;;direnv
|
||||
;;docker
|
||||
;;editorconfig ; let someone else argue about tabs vs spaces
|
||||
;;ein ; tame Jupyter notebooks with emacs
|
||||
(eval +overlay) ; run code, run (also, repls)
|
||||
;;gist ; interacting with github gists
|
||||
lookup ; navigate your code and its documentation
|
||||
;;lsp ; M-x vscode
|
||||
magit ; a git porcelain for Emacs
|
||||
;;make ; run make tasks from Emacs
|
||||
;;pass ; password manager for nerds
|
||||
;;pdf ; pdf enhancements
|
||||
;;prodigy ; FIXME managing external services & code builders
|
||||
;;rgb ; creating color strings
|
||||
;;taskrunner ; taskrunner for all your projects
|
||||
;;terraform ; infrastructure as code
|
||||
;;tmux ; an API for interacting with tmux
|
||||
;;tree-sitter ; syntax and parsing, sitting in a tree...
|
||||
;;upload ; map local to remote projects via ssh/ftp
|
||||
|
||||
:os
|
||||
(:if IS-MAC macos) ; improve compatibility with macOS
|
||||
;;tty ; improve the terminal Emacs experience
|
||||
|
||||
:lang
|
||||
;;agda ; types of types of types of types...
|
||||
;;beancount ; mind the GAAP
|
||||
;;(cc +lsp) ; C > C++ == 1
|
||||
;;clojure ; java with a lisp
|
||||
;;common-lisp ; if you've seen one lisp, you've seen them all
|
||||
;;coq ; proofs-as-programs
|
||||
;;crystal ; ruby at the speed of c
|
||||
;;csharp ; unity, .NET, and mono shenanigans
|
||||
;;data ; config/data formats
|
||||
;;(dart +flutter) ; paint ui and not much else
|
||||
;;dhall
|
||||
;;elixir ; erlang done right
|
||||
;;elm ; care for a cup of TEA?
|
||||
emacs-lisp ; drown in parentheses
|
||||
;;erlang ; an elegant language for a more civilized age
|
||||
;;ess ; emacs speaks statistics
|
||||
;;factor
|
||||
;;faust ; dsp, but you get to keep your soul
|
||||
;;fortran ; in FORTRAN, GOD is REAL (unless declared INTEGER)
|
||||
;;fsharp ; ML stands for Microsoft's Language
|
||||
;;fstar ; (dependent) types and (monadic) effects and Z3
|
||||
;;gdscript ; the language you waited for
|
||||
;;(go +lsp) ; the hipster dialect
|
||||
;;(graphql +lsp) ; Give queries a REST
|
||||
;;(haskell +lsp) ; a language that's lazier than I am
|
||||
;;hy ; readability of scheme w/ speed of python
|
||||
;;idris ; a language you can depend on
|
||||
json ; At least it ain't XML
|
||||
;;(java +lsp) ; the poster child for carpal tunnel syndrome
|
||||
javascript ; all(hope(abandon(ye(who(enter(here))))))
|
||||
;;julia ; a better, faster MATLAB
|
||||
;;kotlin ; a better, slicker Java(Script)
|
||||
;;latex ; writing papers in Emacs has never been so fun
|
||||
;;lean ; for folks with too much to prove
|
||||
;;ledger ; be audit you can be
|
||||
;;lua ; one-based indices? one-based indices
|
||||
;;markdown ; writing docs for people to ignore
|
||||
;;nim ; python + lisp at the speed of c
|
||||
;;nix ; I hereby declare "nix geht mehr!"
|
||||
;;ocaml ; an objective camel
|
||||
org ; organize your plain life in plain text
|
||||
;;php ; perl's insecure younger brother
|
||||
;;plantuml ; diagrams for confusing people more
|
||||
;;purescript ; javascript, but functional
|
||||
;;python ; beautiful is better than ugly
|
||||
;;qt ; the 'cutest' gui framework ever
|
||||
;;racket ; a DSL for DSLs
|
||||
;;raku ; the artist formerly known as perl6
|
||||
;;rest ; Emacs as a REST client
|
||||
;;rst ; ReST in peace
|
||||
;;(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
|
||||
;;(rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
|
||||
;;scala ; java, but good
|
||||
;;(scheme +guile) ; a fully conniving family of lisps
|
||||
sh ; she sells {ba,z,fi}sh shells on the C xor
|
||||
;;sml
|
||||
;;solidity ; do you need a blockchain? No.
|
||||
;;swift ; who asked for emoji variables?
|
||||
;;terra ; Earth and Moon in alignment for performance.
|
||||
web ; the tubes
|
||||
yaml ; JSON, but readable
|
||||
;;zig ; C, but simpler
|
||||
|
||||
:email
|
||||
;;(mu4e +org +gmail)
|
||||
;;notmuch
|
||||
;;(wanderlust +gmail)
|
||||
|
||||
:app
|
||||
;;calendar
|
||||
;;emms
|
||||
;;everywhere ; *leave* Emacs!? You must be joking
|
||||
;;irc ; how neckbeards socialize
|
||||
;;(rss +org) ; emacs as an RSS reader
|
||||
;;twitter ; twitter client https://twitter.com/vnought
|
||||
|
||||
:config
|
||||
;;literate
|
||||
(default +bindings +smartparens))
|
|
@ -1,52 +0,0 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; $DOOMDIR/packages.el
|
||||
|
||||
;; To install a package with Doom you must declare them here and run 'doom sync'
|
||||
;; on the command line, then restart Emacs for the changes to take effect -- or
|
||||
;; use 'M-x doom/reload'.
|
||||
|
||||
|
||||
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
|
||||
;; (package! some-package)
|
||||
|
||||
;; To install a package directly from a remote git repo, you must specify a
|
||||
;; `:recipe'. You'll find documentation on what `:recipe' accepts here:
|
||||
;; https://github.com/radian-software/straight.el#the-recipe-format
|
||||
;; (package! another-package
|
||||
;; :recipe (:host github :repo "username/repo"))
|
||||
|
||||
;; If the package you are trying to install does not contain a PACKAGENAME.el
|
||||
;; file, or is located in a subdirectory of the repo, you'll need to specify
|
||||
;; `:files' in the `:recipe':
|
||||
;; (package! this-package
|
||||
;; :recipe (:host github :repo "username/repo"
|
||||
;; :files ("some-file.el" "src/lisp/*.el")))
|
||||
|
||||
;; If you'd like to disable a package included with Doom, you can do so here
|
||||
;; with the `:disable' property:
|
||||
;; (package! builtin-package :disable t)
|
||||
|
||||
;; You can override the recipe of a built in package without having to specify
|
||||
;; all the properties for `:recipe'. These will inherit the rest of its recipe
|
||||
;; from Doom or MELPA/ELPA/Emacsmirror:
|
||||
;; (package! builtin-package :recipe (:nonrecursive t))
|
||||
;; (package! builtin-package-2 :recipe (:repo "myfork/package"))
|
||||
|
||||
;; Specify a `:branch' to install a package from a particular branch or tag.
|
||||
;; This is required for some packages whose default branch isn't 'master' (which
|
||||
;; our package manager can't deal with; see radian-software/straight.el#279)
|
||||
;; (package! builtin-package :recipe (:branch "develop"))
|
||||
|
||||
;; Use `:pin' to specify a particular commit to install.
|
||||
;; (package! builtin-package :pin "1a2b3c4d5e")
|
||||
|
||||
|
||||
;; Doom's packages are pinned to a specific commit and updated from release to
|
||||
;; release. The `unpin!' macro allows you to unpin single packages...
|
||||
;; (unpin! pinned-package)
|
||||
;; ...or multiple packages
|
||||
;; (unpin! pinned-package another-pinned-package)
|
||||
;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
|
||||
;; (unpin! t)
|
||||
|
||||
(package! catppuccin-theme)
|
|
@ -1,114 +0,0 @@
|
|||
#+title: :ui doom
|
||||
#+subtitle: Make Doom fabulous again
|
||||
#+created: February 20, 2017
|
||||
#+since: 2.0.0
|
||||
|
||||
* Description :unfold:
|
||||
This module gives Doom its signature look: powered by the [[doom-package:doom-themes][doom-one]] theme
|
||||
(loosely inspired by [[https://github.com/atom/one-dark-syntax][Atom's One Dark theme]]) and [[doom-package:solaire-mode]]. Includes:
|
||||
|
||||
- A custom folded-region indicator for [[doom-package:hideshow]].
|
||||
- File-visiting buffers are slightly brighter (thanks to [[doom-package:solaire-mode]]).
|
||||
|
||||
** Maintainers
|
||||
- [[doom-user:][@hlissner]]
|
||||
|
||||
[[doom-contrib-maintainer:][Become a maintainer?]]
|
||||
|
||||
** Module flags
|
||||
/This module has no flags./
|
||||
|
||||
** Packages
|
||||
- [[doom-package:doom-themes]]
|
||||
- [[doom-package:solaire-mode]]
|
||||
|
||||
** Hacks
|
||||
/No hacks documented for this module./
|
||||
|
||||
** TODO Changelog
|
||||
# This section will be machine generated. Don't edit it by hand.
|
||||
/This module does not have a changelog yet./
|
||||
|
||||
* Installation
|
||||
[[id:01cffea4-3329-45e2-a892-95a384ab2338][Enable this module in your ~doom!~ block.]]
|
||||
|
||||
/This module has no external requirements./
|
||||
|
||||
* TODO Usage
|
||||
#+begin_quote
|
||||
This module has no usage documentation yet. [[doom-contrib-module:][Write some?]]
|
||||
#+end_quote
|
||||
|
||||
* TODO Configuration
|
||||
#+begin_quote
|
||||
/This module's configuration documentation is incomplete./ [[doom-contrib-module:][Complete it?]]
|
||||
#+end_quote
|
||||
|
||||
** Changing theme
|
||||
Although this module uses the ~doom-one~ theme by default, [[https://github.com/hlissner/emacs-doom-theme/][doom-themes]] offers a
|
||||
number of alternatives:
|
||||
|
||||
- *doom-one:* doom-themes' flagship theme, inspired by [[https://atom.io/][Atom's]] One Dark themes
|
||||
- *doom-vibrant:* a more vibrant version of doom-one
|
||||
- *doom-molokai:* based on Textmate's monokai
|
||||
- *doom-nova:* adapted from [[https://github.com/trevordmiller/nova-colors][Nova]]
|
||||
- *doom-one-light:* light version of doom-one
|
||||
- *doom-peacock:* based on Peacock from [[https://daylerees.github.io/][daylerees' themes]]
|
||||
- *doom-tomorrow-night:* by [[https://github.com/ChrisKempson/Tomorrow-Theme][Chris Kempson]]
|
||||
- And /many/ more...
|
||||
|
||||
This can be changed by changing the ~doom-theme~ variable, e.g.
|
||||
#+begin_src emacs-lisp
|
||||
;; in $DOOMDIR/config.el
|
||||
(setq doom-theme 'doom-molokai)
|
||||
#+end_src
|
||||
|
||||
** Changing fonts
|
||||
core/core-ui.el has four relevant variables:
|
||||
|
||||
- ~doom-font~ :: the default font to use in Doom Emacs.
|
||||
- ~doom-big-font~ :: the font to use when ~doom-big-font-mode~ is enabled.
|
||||
- ~doom-variable-pitch-font~ :: the font to use when ~variable-pitch-mode~ is active
|
||||
(or where the ~variable-pitch~ face is used).
|
||||
- ~doom-symbol-font~ :: the font used to display unicode symbols. This is
|
||||
ignored if the [[doom-module::ui unicode]] module is enabled.
|
||||
|
||||
#+begin_src emacs-lisp
|
||||
(setq doom-font (font-spec :family "Fira Mono" :size 12)
|
||||
doom-variable-pitch-font (font-spec :family "Fira Sans")
|
||||
doom-symbol-font (font-spec :family "JuliaMono")
|
||||
doom-big-font (font-spec :family "Fira Mono" :size 19))
|
||||
#+end_src
|
||||
|
||||
* Troubleshooting
|
||||
[[doom-report:][Report an issue?]]
|
||||
|
||||
** Strange font symbols
|
||||
If you're seeing strange unicode symbols, this is likely because you don't have
|
||||
~nerd-icons~'s font icon installed. You can install them with ~M-x
|
||||
nerd-icons-install-fonts~.
|
||||
|
||||
** Ugly background colors in tty Emacs for daemon users
|
||||
[[doom-package:solaire-mode]] is an aesthetic plugin that makes non-file-visiting buffers darker
|
||||
than the rest of the Emacs' frame (to visually differentiate temporary windows
|
||||
or sidebars from editing windows). This looks great in GUI Emacs, but can look
|
||||
questionable in the terminal.
|
||||
|
||||
It disables itself if you start tty Emacs with ~$ emacs -nw~, but if you create
|
||||
a tty frame from a daemon (which solaire-mode cannot anticipate), you'll get an
|
||||
ugly background instead.
|
||||
|
||||
If you only use Emacs in the terminal, your best bet is to disable the
|
||||
solaire-mode package:
|
||||
#+begin_src emacs-lisp
|
||||
;; in $DOOMDIR/packages.el
|
||||
(package! solaire-mode :disable t)
|
||||
#+end_src
|
||||
|
||||
* Frequently asked questions
|
||||
/This module has no FAQs yet./ [[doom-suggest-faq:][Ask one?]]
|
||||
|
||||
* TODO Appendix
|
||||
#+begin_quote
|
||||
This module has no appendix yet. [[doom-contrib-module:][Write one?]]
|
||||
#+end_quote
|
|
@ -1,23 +0,0 @@
|
|||
;;; ui/doom/config.el -*- lexical-binding: t; -*-
|
||||
|
||||
;;;###package pos-tip
|
||||
(setq pos-tip-internal-border-width 6
|
||||
pos-tip-border-width 1)
|
||||
|
||||
|
||||
(use-package! doom-themes
|
||||
;; improve integration w/ org-mode
|
||||
:hook (doom-load-theme . doom-themes-org-config)
|
||||
:init (setq doom-theme 'doom-one)
|
||||
;; more Atom-esque file icons for neotree/treemacs
|
||||
;; (when (modulep! :ui neotree)
|
||||
;; (add-hook 'doom-load-theme-hook #'doom-themes-neotree-config)
|
||||
;; (setq doom-themes-neotree-enable-variable-pitch t
|
||||
;; doom-themes-neotree-file-icons 'simple
|
||||
;; doom-themes-neotree-line-spacing 2))
|
||||
)
|
||||
|
||||
|
||||
(use-package! solaire-mode
|
||||
:hook (doom-load-theme . solaire-global-mode)
|
||||
:hook (+popup-buffer-mode . turn-on-solaire-mode))
|
|
@ -1,5 +0,0 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; ui/doom/packages.el
|
||||
|
||||
(package! doom-themes :pin "e506a8724156da3b1e62cb8136265e9705549d04")
|
||||
(package! solaire-mode :pin "c9334666bd208f3322e6118d30eba1b2438e2bb9")
|
|
@ -1,5 +0,0 @@
|
|||
;; -*- no-byte-compile: t; -*-
|
||||
;;; ui/doom/packages.el
|
||||
|
||||
(package! doom-themes :pin "1cac71a4b2434036496a49b4440fdba3d0b5b387")
|
||||
(package! solaire-mode :pin "c9334666bd208f3322e6118d30eba1b2438e2bb9")
|
|
@ -1,2 +0,0 @@
|
|||
|
||||
if test -e /home/marty/.nix-profile/etc/profile.d/nix.fish; . /home/marty/.nix-profile/etc/profile.d/nix.fish; end # added by Nix installer
|
|
@ -1,3 +0,0 @@
|
|||
if status is-interactive
|
||||
# Commands to run in interactive sessions can go here
|
||||
end
|
|
@ -1,32 +0,0 @@
|
|||
# This file contains fish universal variable definitions.
|
||||
# VERSION: 3.0
|
||||
SETUVAR __fish_initialized:3400
|
||||
SETUVAR fish_color_autosuggestion:555\x1ebrblack
|
||||
SETUVAR fish_color_cancel:\x2dr
|
||||
SETUVAR fish_color_command:blue
|
||||
SETUVAR fish_color_comment:red
|
||||
SETUVAR fish_color_cwd:green
|
||||
SETUVAR fish_color_cwd_root:red
|
||||
SETUVAR fish_color_end:green
|
||||
SETUVAR fish_color_error:brred
|
||||
SETUVAR fish_color_escape:brcyan
|
||||
SETUVAR fish_color_history_current:\x2d\x2dbold
|
||||
SETUVAR fish_color_host:normal
|
||||
SETUVAR fish_color_host_remote:yellow
|
||||
SETUVAR fish_color_normal:normal
|
||||
SETUVAR fish_color_operator:brcyan
|
||||
SETUVAR fish_color_param:cyan
|
||||
SETUVAR fish_color_quote:yellow
|
||||
SETUVAR fish_color_redirection:cyan\x1e\x2d\x2dbold
|
||||
SETUVAR fish_color_search_match:bryellow\x1e\x2d\x2dbackground\x3dbrblack
|
||||
SETUVAR fish_color_selection:white\x1e\x2d\x2dbold\x1e\x2d\x2dbackground\x3dbrblack
|
||||
SETUVAR fish_color_status:red
|
||||
SETUVAR fish_color_user:brgreen
|
||||
SETUVAR fish_color_valid_path:\x2d\x2dunderline
|
||||
SETUVAR fish_key_bindings:fish_default_key_bindings
|
||||
SETUVAR fish_pager_color_completion:normal
|
||||
SETUVAR fish_pager_color_description:B3A06D\x1eyellow\x1e\x2di
|
||||
SETUVAR fish_pager_color_prefix:normal\x1e\x2d\x2dbold\x1e\x2d\x2dunderline
|
||||
SETUVAR fish_pager_color_progress:brwhite\x1e\x2d\x2dbackground\x3dcyan
|
||||
SETUVAR fish_pager_color_selected_background:\x2dr
|
||||
SETUVAR fish_user_paths:/home/marty/\x2elocal/bin\x1e/home/marty/\x2econfig/emacs/bin/\x1e/home/marty/\x2elocal/bin/
|
|
@ -1,4 +0,0 @@
|
|||
function zen-browser
|
||||
|
||||
flatpak run io.github.zen_browser.zen
|
||||
end
|
|
@ -1,2 +0,0 @@
|
|||
file:///home/marty/.mozilla/firefox/
|
||||
file:///home/marty/Documents/
|
|
@ -1,84 +0,0 @@
|
|||
@define-color borders_breeze #454859;
|
||||
@define-color content_view_bg_breeze #1e1e2e;
|
||||
@define-color error_color_backdrop_breeze #876790;
|
||||
@define-color error_color_breeze #f38ba8;
|
||||
@define-color error_color_insensitive_backdrop_breeze #b36a83;
|
||||
@define-color error_color_insensitive_breeze #b36a83;
|
||||
@define-color insensitive_base_color_breeze #1e1e2e;
|
||||
@define-color insensitive_base_fg_color_breeze #999fb9;
|
||||
@define-color insensitive_bg_color_breeze #1a1a28;
|
||||
@define-color insensitive_borders_breeze #393b4c;
|
||||
@define-color insensitive_fg_color_breeze #999fb9;
|
||||
@define-color insensitive_selected_bg_color_breeze #1a1a28;
|
||||
@define-color insensitive_selected_fg_color_breeze #999fb9;
|
||||
@define-color insensitive_unfocused_bg_color_breeze #1a1a28;
|
||||
@define-color insensitive_unfocused_fg_color_breeze #999fb9;
|
||||
@define-color insensitive_unfocused_selected_bg_color_breeze #1a1a28;
|
||||
@define-color insensitive_unfocused_selected_fg_color_breeze #999fb9;
|
||||
@define-color link_color_breeze #a6e3a1;
|
||||
@define-color link_visited_color_breeze #cba6f7;
|
||||
@define-color success_color_backdrop_breeze #728396;
|
||||
@define-color success_color_breeze #a6e3a1;
|
||||
@define-color success_color_insensitive_backdrop_breeze #7da87f;
|
||||
@define-color success_color_insensitive_breeze #7da87f;
|
||||
@define-color theme_base_color_breeze #1e1e2e;
|
||||
@define-color theme_bg_color_breeze #181825;
|
||||
@define-color theme_button_background_backdrop_breeze #202031;
|
||||
@define-color theme_button_background_backdrop_insensitive_breeze #2b2c3d;
|
||||
@define-color theme_button_background_insensitive_breeze #2b2c3d;
|
||||
@define-color theme_button_background_normal_breeze #313244;
|
||||
@define-color theme_button_decoration_focus_backdrop_breeze #728396;
|
||||
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #7da87f;
|
||||
@define-color theme_button_decoration_focus_breeze #a6e3a1;
|
||||
@define-color theme_button_decoration_focus_insensitive_breeze #7da87f;
|
||||
@define-color theme_button_decoration_hover_backdrop_breeze #202031;
|
||||
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #2b2c3d;
|
||||
@define-color theme_button_decoration_hover_breeze #313244;
|
||||
@define-color theme_button_decoration_hover_insensitive_breeze #2b2c3d;
|
||||
@define-color theme_button_foreground_active_backdrop_breeze #808194;
|
||||
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #999fb9;
|
||||
@define-color theme_button_foreground_active_breeze #11111b;
|
||||
@define-color theme_button_foreground_active_insensitive_breeze #999fb9;
|
||||
@define-color theme_button_foreground_backdrop_breeze #808194;
|
||||
@define-color theme_button_foreground_backdrop_insensitive_breeze #999fb9;
|
||||
@define-color theme_button_foreground_insensitive_breeze #999fb9;
|
||||
@define-color theme_button_foreground_normal_breeze #cdd6f4;
|
||||
@define-color theme_fg_color_breeze #cdd6f4;
|
||||
@define-color theme_header_background_backdrop_breeze #1e1e2e;
|
||||
@define-color theme_header_background_breeze #181825;
|
||||
@define-color theme_header_background_light_breeze #181825;
|
||||
@define-color theme_header_foreground_backdrop_breeze #808194;
|
||||
@define-color theme_header_foreground_breeze #cdd6f4;
|
||||
@define-color theme_header_foreground_insensitive_backdrop_breeze #808194;
|
||||
@define-color theme_header_foreground_insensitive_breeze #808194;
|
||||
@define-color theme_hovering_selected_bg_color_breeze #313244;
|
||||
@define-color theme_selected_bg_color_breeze #a6e3a1;
|
||||
@define-color theme_selected_fg_color_breeze #11111b;
|
||||
@define-color theme_text_color_breeze #cdd6f4;
|
||||
@define-color theme_titlebar_background_backdrop_breeze #1e1e2e;
|
||||
@define-color theme_titlebar_background_breeze #181825;
|
||||
@define-color theme_titlebar_background_light_breeze #181825;
|
||||
@define-color theme_titlebar_foreground_backdrop_breeze #808194;
|
||||
@define-color theme_titlebar_foreground_breeze #cdd6f4;
|
||||
@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #808194;
|
||||
@define-color theme_titlebar_foreground_insensitive_breeze #808194;
|
||||
@define-color theme_unfocused_base_color_breeze #1e1e2e;
|
||||
@define-color theme_unfocused_bg_color_breeze #1e1e2e;
|
||||
@define-color theme_unfocused_fg_color_breeze #808194;
|
||||
@define-color theme_unfocused_selected_bg_color_alt_breeze #2e3242;
|
||||
@define-color theme_unfocused_selected_bg_color_breeze #2e3242;
|
||||
@define-color theme_unfocused_selected_fg_color_breeze #808194;
|
||||
@define-color theme_unfocused_text_color_breeze #808194;
|
||||
@define-color theme_unfocused_view_bg_color_breeze #1e1e2e;
|
||||
@define-color theme_unfocused_view_text_color_breeze #999fb9;
|
||||
@define-color theme_view_active_decoration_color_breeze #313244;
|
||||
@define-color theme_view_hover_decoration_color_breeze #313244;
|
||||
@define-color tooltip_background_breeze #1e1e2e;
|
||||
@define-color tooltip_border_breeze #4a4c60;
|
||||
@define-color tooltip_text_breeze #cdd6f4;
|
||||
@define-color unfocused_borders_breeze #363747;
|
||||
@define-color unfocused_insensitive_borders_breeze #393b4c;
|
||||
@define-color warning_color_backdrop_breeze #87848f;
|
||||
@define-color warning_color_breeze #f9e2af;
|
||||
@define-color warning_color_insensitive_backdrop_breeze #b7a788;
|
||||
@define-color warning_color_insensitive_breeze #b7a788;
|
|
@ -1 +0,0 @@
|
|||
@import 'colors.css';
|
|
@ -1,17 +0,0 @@
|
|||
[Settings]
|
||||
gtk-theme-name=Catppuccin-Mocha-Standard-Rosewater-Dark
|
||||
gtk-icon-theme-name=Adwaita
|
||||
gtk-font-name=FiraCode Nerd Font 12
|
||||
gtk-cursor-theme-name=Adwaita
|
||||
gtk-cursor-theme-size=24
|
||||
gtk-toolbar-style=GTK_TOOLBAR_ICONS
|
||||
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=1
|
|
@ -1,43 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="20"
|
||||
height="20"
|
||||
version="1.1"
|
||||
viewBox="0 0 20 20"
|
||||
id="svg4"
|
||||
sodipodi:docname="checkbox-checked-symbolic.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:zoom="14.916666"
|
||||
inkscape:cx="7.9776538"
|
||||
inkscape:cy="5.1620113"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid825" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 16.091797,6.5468751 c 0.127806,-3.5e-6 0.255581,0.04855 0.353515,0.1464844 0.195869,0.1958684 0.195869,0.5111627 0,0.7070308 L 9.3730471,14.472656 c -0.02449,0.02449 -0.05035,0.04611 -0.07815,0.06443 -0.02772,0.01839 -0.05585,0.03268 -0.08593,0.04492 -0.03009,0.01224 -0.06226,0.02122 -0.09376,0.02734 -0.03149,0.0061 -0.06375,0.0098 -0.09571,0.0098 -0.03195,0 -0.06226,-0.0036 -0.09375,-0.0098 -0.03149,-0.0061 -0.06367,-0.0151 -0.09375,-0.02734 -0.03009,-0.01224 -0.05818,-0.02656 -0.08593,-0.04492 -0.01389,-0.0092 -0.02786,-0.02051 -0.04101,-0.03125 -0.01312,-0.01071 -0.02679,-0.02099 -0.03903,-0.03323 l -4.18665,-4.188623 c -0.1958683,-0.195869 -0.1958687,-0.511162 5e-7,-0.707032 0.1958681,-0.195867 0.5111624,-0.195868 0.7070307,1e-6 l 3.8331198,3.835099 6.7187499,-6.7187499 c 0.09793,-0.097934 0.225707,-0.1464831 0.353516,-0.146484 z"
|
||||
sodipodi:nodetypes="cscscscscsccccsccccc" />
|
||||
</svg>
|
Before Width: | Height: | Size: 2 KiB |
|
@ -1,44 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="40"
|
||||
height="40"
|
||||
version="1.1"
|
||||
viewBox="0 0 40 40"
|
||||
id="svg4"
|
||||
sodipodi:docname="checkbox-checked-symbolic@2.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:zoom="7.458333"
|
||||
inkscape:cx="-8.9832406"
|
||||
inkscape:cy="11.061453"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid825" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 32.183594,13.09375 c 0.255612,-7e-6 0.511162,0.0971 0.70703,0.292969 0.391738,0.391737 0.391738,1.022325 0,1.414062 l -14.14453,14.144531 c -0.04898,0.04898 -0.1007,0.09222 -0.1563,0.12886 -0.05544,0.03678 -0.1117,0.06536 -0.17186,0.08984 -0.06018,0.02448 -0.12452,0.04244 -0.18752,0.05468 -0.06298,0.0122 -0.1275,0.0196 -0.19142,0.0196 -0.0639,0 -0.12452,-0.0072 -0.1875,-0.0196 -0.06298,-0.0122 -0.12734,-0.0302 -0.1875,-0.05468 -0.06018,-0.02448 -0.11636,-0.05312 -0.17186,-0.08984 -0.02778,-0.0184 -0.05572,-0.04102 -0.08202,-0.0625 -0.02624,-0.02142 -0.05358,-0.04198 -0.07806,-0.06646 L 8.9587542,20.567966 c -0.3917366,-0.391738 -0.3917374,-1.022324 1e-6,-1.414064 0.3917362,-0.391734 1.0223248,-0.391736 1.4140618,2e-6 l 7.666239,7.670198 13.4375,-13.4375 c 0.19586,-0.195868 0.451414,-0.292966 0.707032,-0.292968 z"
|
||||
sodipodi:nodetypes="cscscscscsccccsccccc"
|
||||
style="stroke-width:2" />
|
||||
</svg>
|
Before Width: | Height: | Size: 2 KiB |
|
@ -1,43 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="20"
|
||||
height="20"
|
||||
version="1.1"
|
||||
viewBox="0 0 20 20"
|
||||
id="svg4"
|
||||
sodipodi:docname="checkbox-mixed-symbolic.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="10.547676"
|
||||
inkscape:cx="0.094807614"
|
||||
inkscape:cy="19.340753"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4"
|
||||
width="20px">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid825" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 5.5,10 h 9 c 0.277,0 0.5,0.223 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 h -9 C 5.223,11 5,10.777 5,10.5 5,10.223 5.223,10 5.5,10 Z"
|
||||
sodipodi:nodetypes="sssssss" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,44 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="40"
|
||||
height="40"
|
||||
version="1.1"
|
||||
viewBox="0 0 40 40"
|
||||
id="svg4"
|
||||
sodipodi:docname="checkbox-mixed-symbolic@2.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="10.547676"
|
||||
inkscape:cx="0"
|
||||
inkscape:cy="19.29335"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4"
|
||||
width="20px">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid825" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 11,20 h 18 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 H 11 c -0.554,0 -1,-0.446 -1,-1 0,-0.554 0.446,-1 1,-1 z"
|
||||
sodipodi:nodetypes="sssssss"
|
||||
style="stroke-width:2" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,38 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 16 16"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="close.svg"
|
||||
id="svg824"
|
||||
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="defs5" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#424242"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="11.5625"
|
||||
inkscape:cx="7.3513514"
|
||||
inkscape:cy="13.837838"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="742"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg824" />
|
||||
<path
|
||||
d="m 4.464745,3.96488 c -0.12775,0 -0.2555,0.0486 -0.35339,0.14649 -0.19578,0.19586 -0.19578,0.51116 0,0.70703 L 7.292955,8 l -3.1816,3.1816 c -0.19578,0.19586 -0.19578,0.51116 0,0.70703 0.19578,0.19586 0.51118,0.19586 0.70704,0 l 3.18161,-3.1816 3.1816,3.1816 c 0.19578,0.19586 0.51114,0.19586 0.70704,0 0.19578,-0.19586 0.19578,-0.51116 0,-0.70703 L 8.707045,8 l 3.1816,-3.1816 c 0.19578,-0.19586 0.19578,-0.51116 0,-0.70703 -0.19578,-0.19586 -0.51117,-0.19586 -0.70704,0 l -3.1816,3.1816 -3.18161,-3.1816 C 4.720495,4.01347 4.592755,3.96488 4.465005,3.96488 Z"
|
||||
id="path2928"
|
||||
style="fill:#ffffff" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="32" height="32" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m8.9295 7.9298c-0.2555 0-0.511 0.0972-0.70678 0.29298-0.39156 0.39172-0.39156 1.0223 0 1.4141l6.3632 6.3632-6.3632 6.3632c-0.39156 0.39172-0.39156 1.0223 0 1.4141 0.39156 0.39172 1.0224 0.39172 1.4141 0l6.3632-6.3632 6.3632 6.3632c0.39156 0.39172 1.0223 0.39172 1.4141 0 0.39156-0.39172 0.39156-1.0223 0-1.4141l-6.3632-6.3632 6.3632-6.3632c0.39156-0.39172 0.39156-1.0223 0-1.4141-0.39156-0.39172-1.0223-0.39172-1.4141 0l-6.3632 6.3632-6.3632-6.3632c-0.1958-0.1958-0.45128-0.29298-0.70678-0.29298z" fill="#ffffff" stroke-width="2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 647 B |
|
@ -1,3 +0,0 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24">
|
||||
<path d="M0 0h12A12 12 0 1 1 0 12z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 111 B |
|
@ -1,38 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 16 16"
|
||||
version="1.1"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="maximize.svg"
|
||||
id="svg825"
|
||||
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="defs5" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#424242"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="23.125"
|
||||
inkscape:cx="11.243243"
|
||||
inkscape:cy="11.978378"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="742"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg825" />
|
||||
<path
|
||||
d="M 6,4 C 4.892,4 4,4.892 4,6 v 4 c 0,1.108 0.89201,2 2,2 h 4 c 1.10801,0 2,-0.892 2,-2 V 6 C 12,4.892 11.10799,4 10,4 Z m 0,1 h 4 c 0.554,0 1,0.44602 1,1 v 4 c 0,0.55398 -0.44602,1 -1,1 H 6 C 5.44603,11 5.00001,10.55398 5.00001,10 V 6 C 5.00001,5.44602 5.44604,5 6,5 Z"
|
||||
id="path2930"
|
||||
style="fill:#ffffff" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="32" height="32" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m12 8c-2.216 0-4 1.784-4 4v8c0 2.216 1.784 4 4 4h8c2.216 0 4-1.784 4-4v-8c0-2.216-1.784-4-4-4zm0 2h8c1.108 0 2 0.89204 2 2v8c0 1.108-0.89204 2-2 2h-8c-1.1079 0-2-0.89204-2-2v-8c0-1.108 0.89206-2 2-2z" fill="#ffffff" stroke-width="2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 350 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="14" height="14" version="1.1" viewBox="0 0 14 14" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m7 4c1.6569 0 3 1.3431 3 3s-1.3431 3-3 3-3-1.3431-3-3 1.3431-3 3-3z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 186 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="28" height="28" version="1.1" viewBox="0 0 28 28" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m14 8c3.3137 0 6 2.6863 6 6s-2.6863 6-6 6-6-2.6863-6-6 2.6863-6 6-6z"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 187 B |
|
@ -1,43 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 16 16"
|
||||
version="1.1"
|
||||
id="svg4"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
sodipodi:docname="minimize.svg"
|
||||
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="defs5" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#424242"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="23.125"
|
||||
inkscape:cx="5.7513514"
|
||||
inkscape:cy="9.8162162"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="742"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<rect
|
||||
x="4"
|
||||
y="8"
|
||||
width="8"
|
||||
height="1"
|
||||
rx="0.5"
|
||||
ry="0.5"
|
||||
id="rect2932"
|
||||
style="fill:#ffffff" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.1 KiB |
|
@ -1,3 +0,0 @@
|
|||
<svg width="32" height="32" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="8" y="15" width="16" height="2" rx="1" ry="1" fill="#ffffff" stroke-width="2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 195 B |
|
@ -1,42 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="20"
|
||||
height="20"
|
||||
version="1.1"
|
||||
viewBox="0 0 20 20"
|
||||
id="svg4"
|
||||
sodipodi:docname="radio-checked-symbolic.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="29.833333"
|
||||
inkscape:cx="9.6201118"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid825" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 10,8 c 1.104569,0 2,0.895431 2,2 0,1.104569 -0.895431,2 -2,2 C 8.895431,12 8,11.104569 8,10 8,8.895431 8.895431,8 10,8 Z"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,43 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="40"
|
||||
height="40"
|
||||
version="1.1"
|
||||
viewBox="0 0 40 40"
|
||||
id="svg4"
|
||||
sodipodi:docname="radio-checked-symbolic@2.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.7291666"
|
||||
inkscape:cx="-8.3128492"
|
||||
inkscape:cy="25.877095"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid825" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 20,16 c 2.209138,0 4,1.790862 4,4 0,2.209138 -1.790862,4 -4,4 -2.209138,0 -4,-1.790862 -4,-4 0,-2.209138 1.790862,-4 4,-4 z"
|
||||
sodipodi:nodetypes="sssss"
|
||||
style="stroke-width:2" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,43 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="20"
|
||||
height="20"
|
||||
version="1.1"
|
||||
viewBox="0 0 20 20"
|
||||
id="svg4"
|
||||
sodipodi:docname="checkbox-mixed-symbolic.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="10.547676"
|
||||
inkscape:cx="0.094807614"
|
||||
inkscape:cy="19.340753"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4"
|
||||
width="20px">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid825" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 5.5,10 h 9 c 0.277,0 0.5,0.223 0.5,0.5 0,0.277 -0.223,0.5 -0.5,0.5 h -9 C 5.223,11 5,10.777 5,10.5 5,10.223 5.223,10 5.5,10 Z"
|
||||
sodipodi:nodetypes="sssssss" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,44 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="40"
|
||||
height="40"
|
||||
version="1.1"
|
||||
viewBox="0 0 40 40"
|
||||
id="svg4"
|
||||
sodipodi:docname="checkbox-mixed-symbolic@2.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="10.547676"
|
||||
inkscape:cx="0"
|
||||
inkscape:cy="19.29335"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1011"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4"
|
||||
width="20px">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid825" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 11,20 h 18 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 H 11 c -0.554,0 -1,-0.446 -1,-1 0,-0.554 0.446,-1 1,-1 z"
|
||||
sodipodi:nodetypes="sssssss"
|
||||
style="stroke-width:2" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="rotate(180,12,12)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 796 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="matrix(-2,0,0,-2,48,48)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 782 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".3" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="rotate(180,12,12)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 814 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".3" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="matrix(-2,0,0,-2,48,48)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 800 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".25" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="matrix(1,0,0,-1,0,24)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 858 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".25" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="matrix(2,0,0,-2,0,48)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 838 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="matrix(1,0,0,-1,0,24)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 839 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="20" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="20" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="matrix(2,0,0,-2,0,48)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 811 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 766 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="scale(2)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 767 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".3" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 784 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".3" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="scale(2)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 785 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".25" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 824 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".25" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="scale(2)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 825 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 805 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="scale(2)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 806 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="rotate(90,12,12)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 795 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="matrix(0,2,-2,0,48,0)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 780 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".3" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="rotate(90,12,12)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 813 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".3" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="matrix(0,2,-2,0,48,0)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 798 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".25" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="rotate(90,12,12)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 853 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".25" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="matrix(0,2,-2,0,48,0)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 838 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="rotate(90,12,12)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 834 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="matrix(0,2,-2,0,48,0)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 819 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="rotate(-90,12,12)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 796 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="matrix(0,-2,2,0,0,48)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 780 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".3" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="rotate(-90,12,12)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 814 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-base-dark" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-primary-light" x1="4" x2="19.997" y1="4" y2="4" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".3" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-horz-marks-before-slider-dark" transform="matrix(0,-2,2,0,0,48)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path transform="rotate(45,12,12)" d="m6 6h6a6 6 0 1 1-6 6z" fill="url(#color-base-dark)" stroke="url(#color-primary-light)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 798 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".25" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="matrix(0,1,1,0,0,0)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 856 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" stop-opacity=".25" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="matrix(0,2,2,0,0,0)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 836 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="24" height="24" version="1.1" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="matrix(0,1,1,0,0,0)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 837 B |
|
@ -1,14 +0,0 @@
|
|||
<svg width="48" height="48" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<linearGradient id="color-primary-dark" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#a6e3a1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="color-surface" x1="4" x2="19.997" y1="4" y2="4" gradientTransform="rotate(45,12,12)" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#1e1e2e" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<g id="scale-slider" transform="matrix(0,2,2,0,0,0)">
|
||||
<rect width="24" height="24" fill="none"/>
|
||||
<path d="m12 3.5147 4.2426 4.2426a6 6 0 1 1-8.4853 0z" fill="url(#color-surface)" stroke="url(#color-primary-dark)" stroke-linecap="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 817 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="40" height="40" version="1.1" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="2" y="2" width="36" height="36" rx="4" ry="4" fill="#a6e3a1"/>
|
||||
<path d="m15.5 26.255-6.255-6.255-2.13 2.115 8.385 8.385 18-18-2.115-2.115z" fill="#1e1e2e"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 273 B |
|
@ -1,6 +0,0 @@
|
|||
<svg width="80" height="80" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="scale(2)">
|
||||
<rect x="2" y="2" width="36" height="36" rx="4" ry="4" fill="#a6e3a1"/>
|
||||
<path d="m15.5 26.255-6.255-6.255-2.13 2.115 8.385 8.385 18-18-2.115-2.115z" fill="#1e1e2e"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 287 B |
|
@ -1,4 +0,0 @@
|
|||
<svg width="40" height="40" version="1.1" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="2" y="2" width="36" height="36" rx="4" ry="4" fill="#a6e3a1"/>
|
||||
<path d="m15.5 26.255-6.255-6.255-2.13 2.115 8.385 8.385 18-18-2.115-2.115z" fill="#1e1e2e"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 273 B |
|
@ -1,6 +0,0 @@
|
|||
<svg width="80" height="80" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<g transform="scale(2)">
|
||||
<rect x="2" y="2" width="36" height="36" rx="4" ry="4" fill="#a6e3a1"/>
|
||||
<path d="m15.5 26.255-6.255-6.255-2.13 2.115 8.385 8.385 18-18-2.115-2.115z" fill="#1e1e2e"/>
|
||||
</g>
|
||||
</svg>
|
Before Width: | Height: | Size: 287 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="40" height="40" version="1.1" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="2" y="2" width="36" height="36" rx="4" ry="4" fill="#181825" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" style="paint-order:stroke fill markers"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 282 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="80" height="80" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="4" y="4" width="72" height="72" rx="8" ry="8" fill="#181825" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 262 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="40" height="40" version="1.1" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="2" y="2" width="36" height="36" rx="4" ry="4" fill="#1e1e2e" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" style="paint-order:stroke fill markers"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 282 B |
|
@ -1,3 +0,0 @@
|
|||
<svg width="80" height="80" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<rect x="4" y="4" width="72" height="72" rx="8" ry="8" fill="#1e1e2e" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" style="paint-order:stroke fill markers"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 262 B |
|
@ -1,43 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
viewBox="0 0 16 16"
|
||||
id="svg4"
|
||||
sodipodi:docname="small-checkbox-checked-symbolic.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:zoom="15.821514"
|
||||
inkscape:cx="10.176017"
|
||||
inkscape:cy="9.0383259"
|
||||
inkscape:window-width="1486"
|
||||
inkscape:window-height="974"
|
||||
inkscape:window-x="128"
|
||||
inkscape:window-y="69"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid1068" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 11.943359,5.4550781 c 0.12781,0 0.255582,0.04855 0.353516,0.1464844 0.195869,0.1958686 0.195869,0.5111627 0,0.7070313 L 7.3457031,11.257812 c -0.1958686,0.19587 -0.5111626,0.19587 -0.7070312,0 L 3.8105469,8.4296875 c -0.1958686,-0.1958686 -0.1958686,-0.5111627 0,-0.7070313 0.1958686,-0.1958685 0.5111626,-0.1958685 0.7070312,0 L 6.9921875,10.197266 11.587891,5.6015625 c 0.09793,-0.097934 0.227659,-0.1464844 0.355468,-0.1464844 z"
|
||||
sodipodi:nodetypes="sscccsssccs" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,44 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="32"
|
||||
height="32"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32"
|
||||
id="svg4"
|
||||
sodipodi:docname="small-checkbox-checked-symbolic@2.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:snap-global="false"
|
||||
inkscape:zoom="7.910757"
|
||||
inkscape:cx="17.191781"
|
||||
inkscape:cy="29.074335"
|
||||
inkscape:window-width="1486"
|
||||
inkscape:window-height="974"
|
||||
inkscape:window-x="128"
|
||||
inkscape:window-y="69"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid1068" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 23.886718,10.910156 c 0.25562,0 0.511164,0.0971 0.707032,0.292969 0.391738,0.391737 0.391738,1.022325 0,1.414063 l -9.902344,9.898436 c -0.391737,0.39174 -1.022325,0.39174 -1.414062,0 L 7.6210938,16.859375 c -0.3917372,-0.391737 -0.3917372,-1.022325 0,-1.414063 0.3917372,-0.391737 1.0223252,-0.391737 1.4140624,0 l 4.9492188,4.94922 9.191407,-9.191407 c 0.19586,-0.195868 0.455318,-0.292969 0.710936,-0.292969 z"
|
||||
sodipodi:nodetypes="sscccsssccs"
|
||||
style="stroke-width:2" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,42 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
viewBox="0 0 16 16"
|
||||
id="svg4"
|
||||
sodipodi:docname="small-checkbox-mixed-symbolic.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="22.375"
|
||||
inkscape:cx="7.150838"
|
||||
inkscape:cy="13.810056"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid967" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 4.5,8 h 7 C 11.777,8 12,8.223 12,8.5 12,8.777 11.777,9 11.5,9 h -7 C 4.223,9 4,8.777 4,8.5 4,8.223 4.223,8 4.5,8 Z"
|
||||
sodipodi:nodetypes="sssssss" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,43 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="32"
|
||||
height="32"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32"
|
||||
id="svg4"
|
||||
sodipodi:docname="small-checkbox-mixed-symbolic@2.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="11.1875"
|
||||
inkscape:cx="5.5418994"
|
||||
inkscape:cy="19.843575"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid967" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 9,16 h 14 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 H 9 C 8.446,18 8,17.554 8,17 8,16.446 8.446,16 9,16 Z"
|
||||
sodipodi:nodetypes="sssssss"
|
||||
style="stroke-width:2" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,38 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
viewBox="0 0 16 16"
|
||||
id="svg4"
|
||||
sodipodi:docname="small-radio-checked-symbolic.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="22.375"
|
||||
inkscape:cx="8.5363128"
|
||||
inkscape:cy="11.486034"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
id="path2"
|
||||
d="m 8,6 c 1.1045695,0 2,0.8954305 2,2 0,1.1045695 -0.8954305,2 -2,2 C 6.8954305,10 6,9.1045695 6,8 6,6.8954305 6.8954305,6 8,6 Z"
|
||||
sodipodi:nodetypes="sssss" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,39 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="32"
|
||||
height="32"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32"
|
||||
id="svg4"
|
||||
sodipodi:docname="small-radio-checked-symbolic@2.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="22.375"
|
||||
inkscape:cx="8.5363128"
|
||||
inkscape:cy="11.486034"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4" />
|
||||
<path
|
||||
id="path2"
|
||||
d="m 16,12 c 2.209139,0 4,1.790861 4,4 0,2.209139 -1.790861,4 -4,4 -2.209139,0 -4,-1.790861 -4,-4 0,-2.209139 1.790861,-4 4,-4 z"
|
||||
sodipodi:nodetypes="sssss"
|
||||
style="stroke-width:2" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.2 KiB |
|
@ -1,42 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="16"
|
||||
height="16"
|
||||
version="1.1"
|
||||
viewBox="0 0 16 16"
|
||||
id="svg4"
|
||||
sodipodi:docname="small-checkbox-mixed-symbolic.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="22.375"
|
||||
inkscape:cx="7.150838"
|
||||
inkscape:cy="13.810056"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid967" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 4.5,8 h 7 C 11.777,8 12,8.223 12,8.5 12,8.777 11.777,9 11.5,9 h -7 C 4.223,9 4,8.777 4,8.5 4,8.223 4.223,8 4.5,8 Z"
|
||||
sodipodi:nodetypes="sssssss" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,43 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="32"
|
||||
height="32"
|
||||
version="1.1"
|
||||
viewBox="0 0 32 32"
|
||||
id="svg4"
|
||||
sodipodi:docname="small-checkbox-mixed-symbolic@2.svg"
|
||||
inkscape:version="1.1.1 (3bf5ae0d25, 2021-09-20, custom)"
|
||||
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="defs8" />
|
||||
<sodipodi:namedview
|
||||
id="namedview6"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pagecheckerboard="0"
|
||||
showgrid="false"
|
||||
inkscape:zoom="11.1875"
|
||||
inkscape:cx="5.5418994"
|
||||
inkscape:cy="19.843575"
|
||||
inkscape:window-width="1920"
|
||||
inkscape:window-height="1012"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg4">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid967" />
|
||||
</sodipodi:namedview>
|
||||
<path
|
||||
id="path2"
|
||||
d="m 9,16 h 14 c 0.554,0 1,0.446 1,1 0,0.554 -0.446,1 -1,1 H 9 C 8.446,18 8,17.554 8,17 8,16.446 8.446,16 9,16 Z"
|
||||
sodipodi:nodetypes="sssssss"
|
||||
style="stroke-width:2" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.3 KiB |
|
@ -1,46 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 16 16"
|
||||
version="1.1"
|
||||
sodipodi:docname="unmaximize.svg"
|
||||
inkscape:version="1.1.2 (0a00cf5339, 2022-02-04)"
|
||||
id="svg831"
|
||||
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="defs6" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#424242"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="1440"
|
||||
inkscape:window-height="742"
|
||||
id="namedview6"
|
||||
showgrid="true"
|
||||
inkscape:zoom="29.580633"
|
||||
inkscape:cx="2.095966"
|
||||
inkscape:cy="10.006547"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="32"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:pagecheckerboard="0"
|
||||
inkscape:current-layer="svg831" />
|
||||
<path
|
||||
d="M 6,6 C 4.892,6 4,6.892 4,8 v 2 c 0,1.108 0.892,2 2,2 h 2 c 1.108,0 2,-0.892 2,-2 V 8 C 10,6.892 9.108,6 8,6 Z m 0,1 h 2 c 0.554,0 1,0.446 1,1 v 2 c 0,0.554 -0.446,1 -1,1 H 6 C 5.446,11 5,10.554 5,10 V 8 C 5,7.446 5.446,7 6,7 Z"
|
||||
id="path2896"
|
||||
style="fill:#ffffff" />
|
||||
<path
|
||||
d="M 8,4 C 6.892,4 6,4.892 6,6 H 7 C 7,5.446 7.446,5 8,5 h 2 c 0.554,0 1,0.446 1,1 v 2 c 0,0.554 -0.446,1 -1,1 v 1 c 1.108,0 2,-0.892 2,-2 V 6 C 12,4.892 11.108,4 10,4 Z"
|
||||
opacity="0.35"
|
||||
id="path2898"
|
||||
style="fill:#ffffff" />
|
||||
</svg>
|
Before Width: | Height: | Size: 1.6 KiB |
|
@ -1,4 +0,0 @@
|
|||
<svg width="32" height="32" version="1.1" viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m12 12c-2.216 0-4 1.784-4 4v4c0 2.216 1.784 4 4 4h4c2.216 0 4-1.784 4-4v-4c0-2.216-1.784-4-4-4zm0 2h4c1.108 0 2 0.892 2 2v4c0 1.108-0.892 2-2 2h-4c-1.108 0-2-0.892-2-2v-4c0-1.108 0.892-2 2-2z" fill="#ffffff" stroke-width="2"/>
|
||||
<path d="m16 8c-2.216 0-4 1.784-4 4h2c0-1.108 0.892-2 2-2h4c1.108 0 2 0.892 2 2v4c0 1.108-0.892 2-2 2v2c2.216 0 4-1.784 4-4v-4c0-2.216-1.784-4-4-4z" fill="#ffffff" opacity=".35" stroke-width="2"/>
|
||||
</svg>
|
Before Width: | Height: | Size: 540 B |
|
@ -1,84 +0,0 @@
|
|||
@define-color borders_breeze #454859;
|
||||
@define-color content_view_bg_breeze #1e1e2e;
|
||||
@define-color error_color_backdrop_breeze #876790;
|
||||
@define-color error_color_breeze #f38ba8;
|
||||
@define-color error_color_insensitive_backdrop_breeze #b36a83;
|
||||
@define-color error_color_insensitive_breeze #b36a83;
|
||||
@define-color insensitive_base_color_breeze #1e1e2e;
|
||||
@define-color insensitive_base_fg_color_breeze #999fb9;
|
||||
@define-color insensitive_bg_color_breeze #1a1a28;
|
||||
@define-color insensitive_borders_breeze #393b4c;
|
||||
@define-color insensitive_fg_color_breeze #999fb9;
|
||||
@define-color insensitive_selected_bg_color_breeze #1a1a28;
|
||||
@define-color insensitive_selected_fg_color_breeze #999fb9;
|
||||
@define-color insensitive_unfocused_bg_color_breeze #1a1a28;
|
||||
@define-color insensitive_unfocused_fg_color_breeze #999fb9;
|
||||
@define-color insensitive_unfocused_selected_bg_color_breeze #1a1a28;
|
||||
@define-color insensitive_unfocused_selected_fg_color_breeze #999fb9;
|
||||
@define-color link_color_breeze #a6e3a1;
|
||||
@define-color link_visited_color_breeze #cba6f7;
|
||||
@define-color success_color_backdrop_breeze #728396;
|
||||
@define-color success_color_breeze #a6e3a1;
|
||||
@define-color success_color_insensitive_backdrop_breeze #7da87f;
|
||||
@define-color success_color_insensitive_breeze #7da87f;
|
||||
@define-color theme_base_color_breeze #1e1e2e;
|
||||
@define-color theme_bg_color_breeze #181825;
|
||||
@define-color theme_button_background_backdrop_breeze #202031;
|
||||
@define-color theme_button_background_backdrop_insensitive_breeze #2b2c3d;
|
||||
@define-color theme_button_background_insensitive_breeze #2b2c3d;
|
||||
@define-color theme_button_background_normal_breeze #313244;
|
||||
@define-color theme_button_decoration_focus_backdrop_breeze #728396;
|
||||
@define-color theme_button_decoration_focus_backdrop_insensitive_breeze #7da87f;
|
||||
@define-color theme_button_decoration_focus_breeze #a6e3a1;
|
||||
@define-color theme_button_decoration_focus_insensitive_breeze #7da87f;
|
||||
@define-color theme_button_decoration_hover_backdrop_breeze #202031;
|
||||
@define-color theme_button_decoration_hover_backdrop_insensitive_breeze #2b2c3d;
|
||||
@define-color theme_button_decoration_hover_breeze #313244;
|
||||
@define-color theme_button_decoration_hover_insensitive_breeze #2b2c3d;
|
||||
@define-color theme_button_foreground_active_backdrop_breeze #808194;
|
||||
@define-color theme_button_foreground_active_backdrop_insensitive_breeze #999fb9;
|
||||
@define-color theme_button_foreground_active_breeze #11111b;
|
||||
@define-color theme_button_foreground_active_insensitive_breeze #999fb9;
|
||||
@define-color theme_button_foreground_backdrop_breeze #808194;
|
||||
@define-color theme_button_foreground_backdrop_insensitive_breeze #999fb9;
|
||||
@define-color theme_button_foreground_insensitive_breeze #999fb9;
|
||||
@define-color theme_button_foreground_normal_breeze #cdd6f4;
|
||||
@define-color theme_fg_color_breeze #cdd6f4;
|
||||
@define-color theme_header_background_backdrop_breeze #1e1e2e;
|
||||
@define-color theme_header_background_breeze #181825;
|
||||
@define-color theme_header_background_light_breeze #181825;
|
||||
@define-color theme_header_foreground_backdrop_breeze #808194;
|
||||
@define-color theme_header_foreground_breeze #cdd6f4;
|
||||
@define-color theme_header_foreground_insensitive_backdrop_breeze #808194;
|
||||
@define-color theme_header_foreground_insensitive_breeze #808194;
|
||||
@define-color theme_hovering_selected_bg_color_breeze #313244;
|
||||
@define-color theme_selected_bg_color_breeze #a6e3a1;
|
||||
@define-color theme_selected_fg_color_breeze #11111b;
|
||||
@define-color theme_text_color_breeze #cdd6f4;
|
||||
@define-color theme_titlebar_background_backdrop_breeze #1e1e2e;
|
||||
@define-color theme_titlebar_background_breeze #181825;
|
||||
@define-color theme_titlebar_background_light_breeze #181825;
|
||||
@define-color theme_titlebar_foreground_backdrop_breeze #808194;
|
||||
@define-color theme_titlebar_foreground_breeze #cdd6f4;
|
||||
@define-color theme_titlebar_foreground_insensitive_backdrop_breeze #808194;
|
||||
@define-color theme_titlebar_foreground_insensitive_breeze #808194;
|
||||
@define-color theme_unfocused_base_color_breeze #1e1e2e;
|
||||
@define-color theme_unfocused_bg_color_breeze #1e1e2e;
|
||||
@define-color theme_unfocused_fg_color_breeze #808194;
|
||||
@define-color theme_unfocused_selected_bg_color_alt_breeze #2e3242;
|
||||
@define-color theme_unfocused_selected_bg_color_breeze #2e3242;
|
||||
@define-color theme_unfocused_selected_fg_color_breeze #808194;
|
||||
@define-color theme_unfocused_text_color_breeze #808194;
|
||||
@define-color theme_unfocused_view_bg_color_breeze #1e1e2e;
|
||||
@define-color theme_unfocused_view_text_color_breeze #999fb9;
|
||||
@define-color theme_view_active_decoration_color_breeze #313244;
|
||||
@define-color theme_view_hover_decoration_color_breeze #313244;
|
||||
@define-color tooltip_background_breeze #1e1e2e;
|
||||
@define-color tooltip_border_breeze #4a4c60;
|
||||
@define-color tooltip_text_breeze #cdd6f4;
|
||||
@define-color unfocused_borders_breeze #363747;
|
||||
@define-color unfocused_insensitive_borders_breeze #393b4c;
|
||||
@define-color warning_color_backdrop_breeze #87848f;
|
||||
@define-color warning_color_breeze #f9e2af;
|
||||
@define-color warning_color_insensitive_backdrop_breeze #b7a788;
|
||||
@define-color warning_color_insensitive_breeze #b7a788;
|
|
@ -1,12 +0,0 @@
|
|||
[Settings]
|
||||
gtk-application-prefer-dark-theme=true
|
||||
gtk-cursor-theme-name=Catppuccin-Mocha-Dark-Cursors
|
||||
gtk-cursor-theme-size=32
|
||||
gtk-decoration-layout=icon:minimize,maximize,close
|
||||
gtk-enable-animations=true
|
||||
gtk-font-name=FiraCode Nerd Font, 12
|
||||
gtk-icon-theme-name=breeze-dark
|
||||
gtk-modules=colorreload-gtk-module
|
||||
gtk-primary-button-warps-slider=true
|
||||
gtk-sound-theme-name=freedesktop
|
||||
gtk-xft-dpi=98304
|