Initial commit
|
@ -0,0 +1 @@
|
|||
ventoy/
|
|
@ -0,0 +1,11 @@
|
|||
# Changelog
|
||||
All notable changes to the project will be documented in this file.
|
||||
|
||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [Unreleased]
|
||||
|
||||
## [1.0.0] - 2021-02-13
|
||||
|
||||
Initial release.
|
|
@ -0,0 +1,149 @@
|
|||
# Contributing
|
||||
|
||||
- [Code Of Conduct](#code-of-conduct)
|
||||
- [Submission Guidelines](#submission-guidelines)
|
||||
- [Commit Message Guidelines](#commit-message-guidelines)
|
||||
|
||||
## Code Of Conduct
|
||||
|
||||
As contributors and maintainers of the project, we pledge to respect everyone who contributes by posting issues,
|
||||
updating documentation, submitting pull requests, providing feedback in comments and any other associated project
|
||||
activities.
|
||||
|
||||
### Principles
|
||||
|
||||
- Be constructive
|
||||
- Be positive
|
||||
- Be respectful
|
||||
- Be courtesy
|
||||
- Be honest
|
||||
- Be trustworthy
|
||||
- Never resort to personal attacks
|
||||
- Never troll
|
||||
- Never publicly or privately harass
|
||||
- Never insult
|
||||
|
||||
### Violations
|
||||
|
||||
If a community member associated to the project violates this code of conduct, the maintainers of the project may take
|
||||
appropriate actions as deemed necessary. Such actions maybe but not limited to, removing issues, comments, public
|
||||
relations and/or blocking accounts.
|
||||
|
||||
### Feedback
|
||||
|
||||
If you are subject to or witness of unacceptable behavior or have any other
|
||||
concerns, please contact us.
|
||||
|
||||
## Submission Guidelines
|
||||
|
||||
### Submitting An Issue
|
||||
|
||||
- All issues must be submitted using GitLab issues.
|
||||
- Search first before creating an issue.
|
||||
- Preview the issue to ensure it is rendering as intended.
|
||||
- Be as descriptive as possible.
|
||||
- Provide steps required to re-produce.
|
||||
- Utilize the provided form fields.
|
||||
- Attach necessary reference documents (error messages, screenshots, sample
|
||||
data, logs, etc.).
|
||||
- **Do Not** submit or reply to an issue outside of GitLab.
|
||||
- **Do Not** submit multiple issues within one submission.
|
||||
- **Do Not** duplicate an issue.
|
||||
|
||||
### Commenting On A Issue
|
||||
|
||||
- **Do Not** comment on a issue outside of GitLab.
|
||||
- Stay on topic per the issue description.
|
||||
|
||||
### Issue Closure
|
||||
|
||||
Valid reasons for closing an issue:
|
||||
|
||||
- Duplicate issue.
|
||||
- A reference to the duplicate must be added before closure.
|
||||
- Lacks enough information to re-produce.
|
||||
- No longer relevant.
|
||||
- Off topic.
|
||||
- Resolved.
|
||||
- Multiple issues within the submission.
|
||||
- Will not be resolved.
|
||||
- Provide a reason that this issue will not be resolved.
|
||||
|
||||
### Issue Re-Opening
|
||||
|
||||
- Reasons for re-opening:
|
||||
- Issue has not been resolved.
|
||||
- A detailed comment is required.
|
||||
- **Do Not** re-open an issue that was closed more than 2 months ago. Instead
|
||||
Create a new issue.
|
||||
|
||||
## Commit Message Guidelines
|
||||
|
||||
Git commit messages must adhere to a specific format. This is done to ensure
|
||||
good communication, consistency and readability.
|
||||
|
||||
### Commit Message Format
|
||||
|
||||
Each commit message consists of three properties as shown below.
|
||||
|
||||
Property | Sub-Property | Character Limit | Mandatory
|
||||
---------|---------------|-----------------|----------
|
||||
header | type, subject | 100 | True
|
||||
body | | 100 | False
|
||||
footer | | 100 | False
|
||||
|
||||
Structure
|
||||
```
|
||||
<type>: <subject>
|
||||
<BLANK LINE>
|
||||
<body>
|
||||
<BLANK LINE>
|
||||
<footer>
|
||||
```
|
||||
|
||||
#### Type
|
||||
|
||||
Use one of the following applicable type.
|
||||
|
||||
- build
|
||||
- Changes that affect the build system or external dependencies.
|
||||
- ci
|
||||
- Changes continuous integration (CI) configuration files and scripts.
|
||||
- docs
|
||||
- Documentation only changes.
|
||||
- feat
|
||||
- A new feature.
|
||||
- fix
|
||||
- A bug fix.
|
||||
- perf
|
||||
- A code change that improves performance.
|
||||
- refactor
|
||||
- A code change that neither fixes a bug nor adds a feature.
|
||||
- revert
|
||||
- When commit reverts a previous commit.
|
||||
- style
|
||||
- Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.).
|
||||
- test
|
||||
- Adding or modifying tests.
|
||||
|
||||
#### Subject
|
||||
|
||||
- Be concise description of the change.
|
||||
- Use the imperative, present tense: "change" not "changed" nor "changes".
|
||||
- Do not capitalize the first letter.
|
||||
- No period/dot (.) at the end.
|
||||
|
||||
#### Body
|
||||
|
||||
- Use the imperative, present tense: "change" not "changed" nor "changes".
|
||||
- Include the motivation for the change and contrast this with previous
|
||||
behavior.
|
||||
- If commit type is **revert**, in the body state `This reverts commit <hash>`.
|
||||
The `<hash>` is the hash value of the commit being reverted.
|
||||
|
||||
#### Footer
|
||||
|
||||
- Reference GitLab issue(s) that the commit closes.
|
||||
- State breaking changes.
|
||||
- Breaking changes start with **BREAKING CHANGE:** with a space or two
|
||||
newlines. Following is the description of change, motivation for change and migration notes.
|
|
@ -0,0 +1,21 @@
|
|||
MIT License
|
||||
|
||||
Copyright (c) 2021 Adam Douglas
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
|
@ -0,0 +1,202 @@
|
|||
# Adamsdesk Ventoy Grub Theme
|
||||
|
||||
A simple Ventoy GNU Grub theme that mimics the website theme of [Adamsdesk.com](https://adamsdesk.com).
|
||||
|
||||
## Screenshots
|
||||
|
||||
### Main Menu
|
||||
|
||||
![Main Menu](screenshots/ventoy-ad-theme-main-menu.jpg)
|
||||
|
||||
### Memdisk
|
||||
|
||||
![Memdisk](screenshots/ventoy-ad-theme-memdisk.jpg)
|
||||
|
||||
### Power Menu
|
||||
|
||||
![Power Menu](screenshots/ventoy-ad-theme-power-menu.jpg)
|
||||
|
||||
### TreeView
|
||||
|
||||
![TreeView](screenshots/ventoy-ad-theme-treeview.jpg)
|
||||
|
||||
### Localboot Menu
|
||||
|
||||
![Localboot Menu](screenshots/ventoy-ad-theme-localboot-menu.jpg)
|
||||
|
||||
### Tools Menu
|
||||
|
||||
![Tools Menu](screenshots/ventoy-ad-theme-tools-menu.jpg)
|
||||
|
||||
### Grub Console
|
||||
|
||||
![Grub Console](screenshots/ventoy-ad-theme-console.jpg)
|
||||
|
||||
### Grub Boot Parameters
|
||||
|
||||
![Grub Boot Parameters](screenshots/ventoy-ad-theme-edit-params.jpg)
|
||||
|
||||
## Directory Structure
|
||||
|
||||
The directory structure listed below is in general terms and only those special files/directories are listed for
|
||||
explanation purposes.
|
||||
|
||||
```console
|
||||
.
|
||||
├── screenshots/ < Screenshots of theme
|
||||
├── src/ < Referenced source build files
|
||||
├── ventoy/ < Temporary build directory
|
||||
├── .gitignore < Git ignore configuration
|
||||
├── build.sh < Build BASH script
|
||||
├── CHANGELOG.md < Project change log
|
||||
├── CONTRIBUTING.md < Project contributing guidelines
|
||||
├── LICENSE < Project source code license
|
||||
└── README.md < Project read me
|
||||
```
|
||||
|
||||
## Development
|
||||
|
||||
### Assumptions
|
||||
|
||||
- Have an understanding of general Linux practices.
|
||||
- Have experienced working knowledge within a CLI (command-line interface).
|
||||
- Using a Linux operating system.
|
||||
- Installed all required dependencies as stated in [System Requirements](#system-requirements) section.
|
||||
- Installation is done via Linux CLI.
|
||||
- Steps prefixed with a "$" (dollar sign) represents the CLI prompt. The text
|
||||
after the "$" is to be entered at the CLI.
|
||||
- Steps prefixed with a "#" (number sign) represents the CLI prompt with
|
||||
elevated user permissions (e.g. root). The text after the "#" is to be entered
|
||||
at the CLI.
|
||||
- A single backslash character beside another character is used to escape the
|
||||
proceeding character. In this case backslash character is not to to be entered
|
||||
at the CLI.
|
||||
- These instructions are an example of installation and configuration.
|
||||
|
||||
### System Requirements
|
||||
|
||||
- cp (GNU coreutils) v8.32
|
||||
- find (GNU findutils) v4.7.0
|
||||
- Git v2.30.0
|
||||
- Inkscape v1.0.2 (e86c870879, 2021-01-15)
|
||||
- mkdir (GNU coreutils) v8.32
|
||||
- Ventoy v1.0.34
|
||||
|
||||
### Build Instructions
|
||||
|
||||
1. Download the project.
|
||||
```console
|
||||
$ git clone https://gitlab.com/adouglas/adamsdesk-ventoy-grub-theme.git
|
||||
```
|
||||
1. Change to project directory.
|
||||
```console
|
||||
$ cd adamsdesk-ventoy-grub-theme.git
|
||||
```
|
||||
1. Run build script.
|
||||
```console
|
||||
$ ./build.sh
|
||||
```
|
||||
```console
|
||||
ventoy/
|
||||
├── theme
|
||||
│ └── adamsdesk
|
||||
│ ├── adamsdesk.png
|
||||
│ ├── icons
|
||||
│ │ ├── alpinelinux.png
|
||||
│ │ ├── archlinux.png
|
||||
│ │ ├── cd.png
|
||||
│ │ ├── debian.png
|
||||
│ │ ├── deepin.png
|
||||
│ │ ├── elementaryos.png
|
||||
│ │ ├── fedora.png
|
||||
│ │ ├── freedos.png
|
||||
│ │ ├── gentoo.png
|
||||
│ │ ├── kali.png
|
||||
│ │ ├── kubuntu.png
|
||||
│ │ ├── linuxmint.png
|
||||
│ │ ├── linux.png
|
||||
│ │ ├── lubuntu.png
|
||||
│ │ ├── mageia.png
|
||||
│ │ ├── manjaro.png
|
||||
│ │ ├── openbsd.png
|
||||
│ │ ├── opensuse.png
|
||||
│ │ ├── solus.png
|
||||
│ │ ├── ubcd.png
|
||||
│ │ ├── ubuntu-budgie.png
|
||||
│ │ ├── ubuntukylin.png
|
||||
│ │ ├── ubuntu-mate.png
|
||||
│ │ ├── ubuntu.png
|
||||
│ │ ├── ubuntustudio.png
|
||||
│ │ ├── windows.png
|
||||
│ │ └── xubuntu.png
|
||||
│ ├── select_c.png
|
||||
│ ├── select_e.png
|
||||
│ ├── select_w.png
|
||||
│ ├── terminus-12.pf2
|
||||
│ ├── terminus-14.pf2
|
||||
│ ├── terminus-16.pf2
|
||||
│ ├── terminus-18.pf2
|
||||
│ └── theme.txt
|
||||
└── ventoy.json
|
||||
```
|
||||
1. Copy build directory to desired Ventoy installation.
|
||||
```console
|
||||
$ cp -rp ventoy/ /mnt/usb/
|
||||
```
|
||||
|
||||
## Attribution
|
||||
|
||||
I'm grateful for all the creators who have have openly licensed their work to make this project possible.
|
||||
|
||||
### Fonts
|
||||
|
||||
- [Terminus Font](https://sourceforge.net/projects/terminus-font/)
|
||||
|
||||
### Icons
|
||||
|
||||
- [Alpine Linux](https://www.svgrepo.com/svg/305688/alpinelinux)
|
||||
- [Arch Linux](https://www.svgrepo.com/svg/305739/archlinux)
|
||||
- [CD](https://www.svgrepo.com/svg/51861/compact-disc)
|
||||
- [Debian](https://www.svgrepo.com/svg/305939/deepin)
|
||||
- [Deepin](https://www.svgrepo.com/svg/305938/debian)
|
||||
- [ElementaryOS](https://www.svgrepo.com/svg/305993/elementary)
|
||||
- [Fedora](https://freebiesupply.com/logos/fedora-logo-2/)
|
||||
- [FreeDOS](http://www.freedos.org/press-kit/logos.html)
|
||||
- [Gentoo](https://www.svgrepo.com/svg/306090/gentoo)
|
||||
- [Kali Linux](https://seeklogo.com/vector-logo/285900/kali-linux)
|
||||
- [Kubuntu](https://commons.wikimedia.org/wiki/File:Kubuntu_logo.svg)
|
||||
- [Linux Mint](https://www.svgrepo.com/svg/306345/linuxmint)
|
||||
- [Linux Penguin](https://www.svgrepo.com/svg/306344/linux)
|
||||
- [Lubuntu](https://commons.wikimedia.org/wiki/File:Lubuntu_logo_only.svg)
|
||||
- [Mageia](https://commons.wikimedia.org/wiki/File:Mageia_logo.svg)
|
||||
- [Manjaro](https://www.svgrepo.com/svg/306371/manjaro)
|
||||
- [OpenBSD](https://www.svgrepo.com/svg/306507/openbsd)
|
||||
- [openSUSE](https://www.svgrepo.com/svg/306517/opensuse)
|
||||
- [Solus](https://www.svgrepo.com/svg/306754/solus)
|
||||
- [Ubuntu Budgie](https://commons.wikimedia.org/wiki/File:Ubuntu_Budgie_No_Wordmark.svg)
|
||||
- [Ubuntu Kylin](https://www.ubuntukylin.com/jintro/download.php?class1=464&lang=en) ([svg](https://www.ubuntukylin.com/public/images/version2019/images/UKlogo/5.svg))
|
||||
- [Ubuntu Mate](https://commons.wikimedia.org/wiki/File:Ubuntu_MATE_rondel_logo.svg)
|
||||
- [Ubuntu Studio](https://commons.wikimedia.org/wiki/File:Ubuntustudio_v3_logo_only.svg)
|
||||
- [Ubuntu](https://www.svgrepo.com/svg/25424/ubuntu-logo)
|
||||
- [Windows](https://www.svgrepo.com/svg/54206/windows)
|
||||
- [Xubuntu](https://commons.wikimedia.org/wiki/File:Xubuntu_Icon.svg)
|
||||
|
||||
### Software
|
||||
|
||||
- [Git](https://git-scm.com/)
|
||||
- [GNU Core Utilities](https://www.gnu.org/software/coreutils/)
|
||||
- [GNU Findutils](https://www.gnu.org/software/findutils/)
|
||||
- [GNU Grub](https://www.gnu.org/software/grub/)
|
||||
- [Inkscape](https://inkscape.org/)
|
||||
- [Ventoy](https://ventoy.net/)
|
||||
|
||||
## Copyright License
|
||||
|
||||
The copyright license (LICENSE) is only referring to the source code.
|
||||
|
||||
Adamsdesk logo Copyright (c) 2020 - 2021 Adam Douglas
|
||||
|
||||
All other logos / icons are copyright to those respected holders.
|
||||
|
||||
[Terminus Font](https://sourceforge.net/projects/terminus-font/) is licensed under the SIL Open Font License, Version
|
||||
1.1. The license is included as OFL.TXT, and is also available with a FAQ at: https://scripts.sil.org/OFL
|
|
@ -0,0 +1,62 @@
|
|||
#!/usr/bin/env bash
|
||||
#title : Build Ventoy Grub Theme
|
||||
#description : Generate the Ventoy Grub theme files and directory structure to current working directory under
|
||||
# "ventoy/".
|
||||
#date : 2021-02-13
|
||||
#usage : build
|
||||
#dependencies : cp, find, inkscape, mkdir
|
||||
#bash_version : GNU bash, version 5.1.4(1)-release (x86_64-pc-linux-gnu)
|
||||
declare -a dependencies=("cp" "find" "inkscape" "mkdir")
|
||||
|
||||
prepare() {
|
||||
if [[ -d "ventoy/" ]]
|
||||
then
|
||||
quit "Error: The build directory \"ventoy/\", already exists. Build has been halted."
|
||||
fi
|
||||
|
||||
checkDepdenencies
|
||||
}
|
||||
|
||||
checkDepdenencies() {
|
||||
for i in "${dependencies[@]}";
|
||||
do
|
||||
checkCmdExists "$i"
|
||||
done
|
||||
|
||||
if [[ $cmdNotFound != '' ]]
|
||||
then
|
||||
quit "Error: The following command(s) where not found:${cmdNotFound::-1}."
|
||||
fi
|
||||
}
|
||||
|
||||
checkCmdExists() {
|
||||
if ! [ -x "$(command -v $1)" ]
|
||||
then
|
||||
cmdNotFound="$cmdNotFound $1,"
|
||||
fi
|
||||
}
|
||||
|
||||
quit() {
|
||||
if [[ "$1" = 0 ]]
|
||||
then
|
||||
exit 0
|
||||
else
|
||||
printf "%b\n" "$1"
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
build() {
|
||||
mkdir -p ./ventoy/theme/adamsdesk/icons || quit "Error: Unable to create directory \"ventoy/theme/adamsdesk/icons\". Build has been halted."
|
||||
cp ./src/fonts/*.pf2 ./ventoy/theme/adamsdesk/ || quit "Error: Unable to copy fonts. Build has been halted."
|
||||
cp ./src/menu/select_*.png ./ventoy/theme/adamsdesk/ || quit "Error: Unable to copy fonts. Build has been halted."
|
||||
cp ./src/config/theme.txt ./ventoy/theme/adamsdesk/ || quit "Error: Unable to copy fonts. Build has been halted."
|
||||
cp ./src/config/ventoy.json ./ventoy/ || quit "Error: Unable to copy fonts. Build has been halted."
|
||||
cd src/icons/ || quit "Error: Unable to change directory to \"src/icons\"."
|
||||
find -name "*.svg" ! -name adamsdesk.svg -exec sh -c 'inkscape $1 -w 48 -h 48 -o ../../ventoy/theme/adamsdesk/icons/${1%.svg}.png' _ {} \; || quit "Error: Unable to convert icons from SVG to PNG. Build has been halted."
|
||||
inkscape adamsdesk.svg -w 128 -h 91 -o ../../ventoy/theme/adamsdesk/adamsdesk.png || quit "Error: Unable to convert icons from SVG to PNG. Build has been halted."
|
||||
}
|
||||
|
||||
prepare
|
||||
build
|
||||
quit 0
|
After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 73 KiB |
After Width: | Height: | Size: 82 KiB |
After Width: | Height: | Size: 83 KiB |
After Width: | Height: | Size: 56 KiB |
After Width: | Height: | Size: 70 KiB |
After Width: | Height: | Size: 85 KiB |
|
@ -0,0 +1,56 @@
|
|||
# GRUB2 gfxmenu Linux theme
|
||||
# Designed for any resolution
|
||||
|
||||
# Global Property
|
||||
title-text: ""
|
||||
title-color: "#cccccc"
|
||||
title-font: "Terminus Regular 18"
|
||||
desktop-color: "#212121"
|
||||
terminal-font: "Terminus Regular 16"
|
||||
terminal-left: "0"
|
||||
terminal-top: "0"
|
||||
terminal-width: "100%"
|
||||
terminal-height: "100%"
|
||||
terminal-border: "0"
|
||||
|
||||
# Show the boot menu
|
||||
+ boot_menu {
|
||||
left = 10%
|
||||
top = 20%
|
||||
width = 80%
|
||||
height = 60%
|
||||
item_font = "Terminus Regular 16"
|
||||
item_color = "#cccccc"
|
||||
selected_item_color = "#ffcc00"
|
||||
icon_width = 48
|
||||
icon_height = 48
|
||||
item_icon_space = 24
|
||||
item_height = 56
|
||||
item_padding = 8
|
||||
item_spacing = 16
|
||||
selected_item_pixmap_style = "select_*.png"
|
||||
scrollbar = true
|
||||
scrollbar_width = 20
|
||||
scrollbar_thumb = "slider_*.png"
|
||||
}
|
||||
+ image {
|
||||
file = "adamsdesk.png"
|
||||
left = 46%
|
||||
top = 4%
|
||||
}
|
||||
|
||||
+ hbox{
|
||||
left = 45%
|
||||
top = 95%
|
||||
width = 10%
|
||||
height = 25
|
||||
+ label {text = "@VTOY_HOTKEY_TIP@" color = "#808080" align = "right"}
|
||||
}
|
||||
|
||||
+ hbox{
|
||||
left = 90%
|
||||
top = 5
|
||||
width = 10%
|
||||
height = 25
|
||||
+ label {text = "@VTOY_MEM_DISK@" color = "red" align = "left"}
|
||||
}
|
|
@ -0,0 +1,133 @@
|
|||
{
|
||||
"theme": {
|
||||
"file": "/ventoy/theme/adamsdesk/theme.txt",
|
||||
"ventoy_left": "5%",
|
||||
"ventoy_top": "95%",
|
||||
"ventoy_color": "#808080",
|
||||
"fonts": [
|
||||
"/ventoy/theme/adamsdesk/terminus-12.pf2",
|
||||
"/ventoy/theme/adamsdesk/terminus-14.pf2",
|
||||
"/ventoy/theme/adamsdesk/terminus-16.pf2",
|
||||
"/ventoy/theme/adamsdesk/terminus-18.pf2"
|
||||
]
|
||||
},
|
||||
|
||||
"menu_class": [
|
||||
{
|
||||
"key": "alpine",
|
||||
"class": "alpinelinux"
|
||||
},
|
||||
{
|
||||
"key": "archlinux",
|
||||
"class": "archlinux"
|
||||
},
|
||||
{
|
||||
"key": "debian",
|
||||
"class": "debian"
|
||||
},
|
||||
{
|
||||
"key": "deepin",
|
||||
"class": "deepin"
|
||||
},
|
||||
{
|
||||
"key": "elementary",
|
||||
"class": "elementaryos"
|
||||
},
|
||||
{
|
||||
"key": "Fedora",
|
||||
"class": "fedora"
|
||||
},
|
||||
{
|
||||
"key": "FD",
|
||||
"class": "freedos"
|
||||
},
|
||||
{
|
||||
"key": "gentoo",
|
||||
"class": "gentoo"
|
||||
},
|
||||
{
|
||||
"key": "HBCD",
|
||||
"class": "cd"
|
||||
},
|
||||
{
|
||||
"key": "kali",
|
||||
"class": "kali"
|
||||
},
|
||||
{
|
||||
"key": "kubuntu",
|
||||
"class": "kubuntu"
|
||||
},
|
||||
{
|
||||
"key": "linux-",
|
||||
"class": "linux"
|
||||
},
|
||||
{
|
||||
"key": "linuxmint",
|
||||
"class": "linuxmint"
|
||||
},
|
||||
{
|
||||
"key": "lubuntu",
|
||||
"class": "lubuntu"
|
||||
},
|
||||
{
|
||||
"key": "manjaro",
|
||||
"class": "manjaro"
|
||||
},
|
||||
{
|
||||
"key": "Mageia",
|
||||
"class": "mageia"
|
||||
},
|
||||
{
|
||||
"key": "openbsd",
|
||||
"class": "openbsd"
|
||||
},
|
||||
{
|
||||
"key": "openSUSE",
|
||||
"class": "opensuse"
|
||||
},
|
||||
{
|
||||
"key": "Solus",
|
||||
"class": "solus"
|
||||
},
|
||||
{
|
||||
"key": "SpinRite",
|
||||
"class": "cd"
|
||||
},
|
||||
{
|
||||
"key": "systemrescue",
|
||||
"class": "cd"
|
||||
},
|
||||
{
|
||||
"key": "ubcd",
|
||||
"class": "ubcd"
|
||||
},
|
||||
{
|
||||
"key": "ubuntu-budgie-",
|
||||
"class": "ubuntu-budgie"
|
||||
},
|
||||
{
|
||||
"key": "ubuntukylin",
|
||||
"class": "ubuntukylin"
|
||||
},
|
||||
{
|
||||
"key": "ubuntu-mate-",
|
||||
"class": "ubuntu-mate"
|
||||
},
|
||||
{
|
||||
"key": "ubuntu-",
|
||||
"class": "ubuntu"
|
||||
},
|
||||
{
|
||||
"key": "ubuntustudio",
|
||||
"class": "ubuntustudio"
|
||||
},
|
||||
{
|
||||
"key": "Win10",
|
||||
"class": "windows"
|
||||
},
|
||||
{
|
||||
"key": "xubuntu",
|
||||
"class": "xubuntu"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -0,0 +1,94 @@
|
|||
Copyright (C) 2020 Dimitar Toshkov Zhekov,
|
||||
with Reserved Font Name "Terminus Font".
|
||||
|
||||
This Font Software is licensed under the SIL Open Font License, Version 1.1.
|
||||
This license is copied below, and is also available with a FAQ at:
|
||||
http://scripts.sil.org/OFL
|
||||
|
||||
|
||||
-----------------------------------------------------------
|
||||
SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007
|
||||
-----------------------------------------------------------
|
||||
|
||||
PREAMBLE
|
||||
The goals of the Open Font License (OFL) are to stimulate worldwide
|
||||
development of collaborative font projects, to support the font creation
|
||||
efforts of academic and linguistic communities, and to provide a free and
|
||||
open framework in which fonts may be shared and improved in partnership
|
||||
with others.
|
||||
|
||||
The OFL allows the licensed fonts to be used, studied, modified and
|
||||
redistributed freely as long as they are not sold by themselves. The
|
||||
fonts, including any derivative works, can be bundled, embedded,
|
||||
redistributed and/or sold with any software provided that any reserved
|
||||
names are not used by derivative works. The fonts and derivatives,
|
||||
however, cannot be released under any other type of license. The
|
||||
requirement for fonts to remain under this license does not apply
|
||||
to any document created using the fonts or their derivatives.
|
||||
|
||||
DEFINITIONS
|
||||
"Font Software" refers to the set of files released by the Copyright
|
||||
Holder(s) under this license and clearly marked as such. This may
|
||||
include source files, build scripts and documentation.
|
||||
|
||||
"Reserved Font Name" refers to any names specified as such after the
|
||||
copyright statement(s).
|
||||
|
||||
"Original Version" refers to the collection of Font Software components as
|
||||
distributed by the Copyright Holder(s).
|
||||
|
||||
"Modified Version" refers to any derivative made by adding to, deleting,
|
||||
or substituting -- in part or in whole -- any of the components of the
|
||||
Original Version, by changing formats or by porting the Font Software to a
|
||||
new environment.
|
||||
|
||||
"Author" refers to any designer, engineer, programmer, technical
|
||||
writer or other person who contributed to the Font Software.
|
||||
|
||||
PERMISSION & CONDITIONS
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of the Font Software, to use, study, copy, merge, embed, modify,
|
||||
redistribute, and sell modified and unmodified copies of the Font
|
||||
Software, subject to the following conditions:
|
||||
|
||||
1) Neither the Font Software nor any of its individual components,
|
||||
in Original or Modified Versions, may be sold by itself.
|
||||
|
||||
2) Original or Modified Versions of the Font Software may be bundled,
|
||||
redistributed and/or sold with any software, provided that each copy
|
||||
contains the above copyright notice and this license. These can be
|
||||
included either as stand-alone text files, human-readable headers or
|
||||
in the appropriate machine-readable metadata fields within text or
|
||||
binary files as long as those fields can be easily viewed by the user.
|
||||
|
||||
3) No Modified Version of the Font Software may use the Reserved Font
|
||||
Name(s) unless explicit written permission is granted by the corresponding
|
||||
Copyright Holder. This restriction only applies to the primary font name as
|
||||
presented to the users.
|
||||
|
||||
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
|
||||
Software shall not be used to promote, endorse or advertise any
|
||||
Modified Version, except to acknowledge the contribution(s) of the
|
||||
Copyright Holder(s) and the Author(s) or with their explicit written
|
||||
permission.
|
||||
|
||||
5) The Font Software, modified or unmodified, in part or in whole,
|
||||
must be distributed entirely under this license, and must not be
|
||||
distributed under any other license. The requirement for fonts to
|
||||
remain under this license does not apply to any document created
|
||||
using the Font Software.
|
||||
|
||||
TERMINATION
|
||||
This license becomes null and void if any of the above conditions are
|
||||
not met.
|
||||
|
||||
DISCLAIMER
|
||||
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
|
||||
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
|
||||
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
||||
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
|
||||
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
||||
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
|
||||
OTHER DEALINGS IN THE FONT SOFTWARE.
|
|
@ -0,0 +1,838 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="1056.6506"
|
||||
height="747.25519"
|
||||
version="1.1"
|
||||
viewBox="0 0 279.57215 197.71127"
|
||||
id="svg268"
|
||||
sodipodi:docname="adamsdesk.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<defs
|
||||
id="defs272" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3263"
|
||||
inkscape:window-height="1853"
|
||||
id="namedview270"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:pagecheckerboard="false"
|
||||
inkscape:zoom="1.2541667"
|
||||
inkscape:cx="295.78647"
|
||||
inkscape:cy="448.33913"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg268" />
|
||||
<title
|
||||
id="title2">Adamsdesk logo</title>
|
||||
<metadata
|
||||
id="metadata4">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Adamsdesk logo</dc:title>
|
||||
<dc:date>January 2, 2020</dc:date>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Adam Douglas</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:rights>
|
||||
<cc:Agent>
|
||||
<dc:title>All Rights Reserved</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:rights>
|
||||
<dc:description>https://adamsdesk.com/</dc:description>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="translate(1828.631,484.1633)"
|
||||
display="none"
|
||||
id="g8">
|
||||
<rect
|
||||
x="-2492.1001"
|
||||
y="-945.65002"
|
||||
width="2270.6001"
|
||||
height="1579.8"
|
||||
rx="0"
|
||||
ry="0"
|
||||
fill="#ffffff"
|
||||
fill-opacity="0.99848"
|
||||
stroke-linecap="round"
|
||||
stroke-width="0.265"
|
||||
id="rect6" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(1774.231,418.0433)"
|
||||
display="none"
|
||||
id="g244">
|
||||
<g
|
||||
stroke-width="0.26458"
|
||||
id="g18">
|
||||
<text
|
||||
x="116.61943"
|
||||
y="93.606461"
|
||||
font-family="'Open Sans'"
|
||||
font-size="7.0556px"
|
||||
font-weight="600"
|
||||
letter-spacing="0px"
|
||||
style="line-height:1.25"
|
||||
xml:space="preserve"
|
||||
id="text12"><tspan
|
||||
x="116.61943"
|
||||
y="93.606461"
|
||||
stroke-width="0.26458"
|
||||
id="tspan10" /></text>
|
||||
<path
|
||||
d="m -1700.9,-294.94 -12.674,-35.245 h -48.527 l -12.414,35.245 h -21.876 l 47.485,-127.44 h 22.571 l 47.485,127.44 z m -18.143,-53.128 -11.893,-34.551 q -1.3022,-3.4724 -3.646,-10.938 -2.2571,-7.4657 -3.1252,-10.938 -2.3439,10.678 -6.8581,23.352 l -11.459,33.075 z"
|
||||
id="path14" />
|
||||
<path
|
||||
d="m -1507.4,-416.98 c -1.4131,-0.0568 -2.7986,-0.14728 -4.2586,-0.14728 h -39.238 v 126.92 h 35.505 c 2.7446,0 5.4079,-0.0875 7.9912,-0.26148 v -17.625 c -2.5495,0.26186 -5.1837,0.4377 -7.9912,0.4377 h -14.758 v -92.106 h 17.97 c 1.6444,0 3.2303,0.0631 4.7795,0.16485 z"
|
||||
id="path16" />
|
||||
</g>
|
||||
<path
|
||||
d="m -1604.2,-417.93 v 31.598 c 2.7871,5.5734 4.2557,12.991 4.2773,22.818 0.022,9.8752 -1.4283,18.095 -4.2773,24.777 v 29.934 c 3.0638,-1.9967 5.8874,-4.273 8.4339,-6.874 10.922,-11.214 16.384,-27.394 16.384,-48.538 0,-19.917 -5.2709,-35.366 -15.813,-46.347 -2.7156,-2.8286 -5.7251,-5.2746 -9.0049,-7.3675 z"
|
||||
fill="#d4ff2a"
|
||||
id="path20" />
|
||||
<g
|
||||
fill="#666666"
|
||||
id="g30">
|
||||
<path
|
||||
d="m -1128.1,-40.435 h 22.156 l -57.521,127.73 h -30.211 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path22" />
|
||||
<path
|
||||
d="m -1133.2,33.354 h 21.797 l -0.04,17.507 h -28.11 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path24" />
|
||||
<path
|
||||
d="m -1119,-40.195 h 25.002 l -0.046,25.902 h -32.244 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path26" />
|
||||
<path
|
||||
d="m -1105.9,-40.435 h 21.093 v 127.74 h -21.093 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path28" />
|
||||
</g>
|
||||
<path
|
||||
d="m -1639.2,-317.45 c 14.93,-1.2004 26.73,-9.3046 32.657,-19.662 v 28.752 c -5.5896,3.4463 -19.241,9.1661 -32.657,9.166 z"
|
||||
fill="#d4ff2a"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path32" />
|
||||
<path
|
||||
d="m -1661.8,-317.45 h 22.585 v 18.256 h -22.585 z"
|
||||
fill="#d4ff2a"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path34" />
|
||||
<path
|
||||
d="m -1056.1,-40.398 v 26 c 30.392,0 45.078,8.4804 45.078,37.37 0,28.431 -15.061,43.907 -45.078,46.519 v 17.788 c 21.45,-1.224 38.234,-6.7138 50.352,-16.47 13.856,-11.214 20.784,-27.394 20.784,-48.538 0,-19.917 -6.6869,-35.366 -20.06,-46.347 -12.407,-10.187 -29.473,-15.586 -51.076,-16.322 z"
|
||||
fill="#666666"
|
||||
stroke-width="0.26458"
|
||||
id="path36" />
|
||||
<path
|
||||
d="m -1638.7,-426.92 c 14.754,1.0039 22.047,2.9144 32.094,8.5973 v 30.706 c -5.5355,-9.7259 -19.097,-13.266 -32.352,-13.266 z"
|
||||
fill="#d4ff2a"
|
||||
stroke="#ffffff"
|
||||
stroke-linecap="square"
|
||||
stroke-width="1.3229"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path38" />
|
||||
<path
|
||||
d="m -1661.7,-426.92 h 19.198 v 26.037 h -19.198 z"
|
||||
fill="#d4ff2a"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path40" />
|
||||
<path
|
||||
d="m -1500.5,-417.61 v 17.54 c 25.222,1.6718 37.845,16.94 37.845,45.83 0,28.431 -12.644,43.907 -37.845,46.519 v 17.788 c 18.008,-1.224 32.099,-6.7138 42.272,-16.47 11.633,-11.214 17.449,-27.394 17.449,-48.538 0,-19.917 -5.6138,-35.366 -16.841,-46.347 -10.416,-10.187 -24.743,-15.586 -42.88,-16.322 z"
|
||||
stroke-width="0.26458"
|
||||
id="path42" />
|
||||
<g
|
||||
fill="#666666"
|
||||
id="g114">
|
||||
<path
|
||||
d="m -1085.1,69.491 h 22.585 v 17.818 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path44" />
|
||||
<path
|
||||
d="m -1085.9,-40.443 h 22.585 v 26.045 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path46" />
|
||||
<path
|
||||
d="m -1210.2,139.48 h 22.156 l -57.522,127.73 h -30.211 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path48" />
|
||||
<path
|
||||
d="m -1216.1,213.27 h 22.206 l -0.041,17.507 h -28.637 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path50" />
|
||||
<path
|
||||
d="m -1201.1,139.72 h 25.002 l -0.046,25.902 h -32.244 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path52" />
|
||||
<path
|
||||
d="m -1188.1,139.48 h 21.093 v 127.74 h -21.093 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path54" />
|
||||
<g
|
||||
id="g66">
|
||||
<path
|
||||
d="m -1159.4,139.52 v 26 c 30.392,0 45.078,8.4804 45.078,37.37 0,28.431 -15.061,43.907 -45.078,46.519 v 17.788 c 21.45,-1.224 38.234,-6.7138 50.352,-16.47 13.856,-11.214 20.784,-27.394 20.784,-48.538 0,-19.917 -6.6869,-35.366 -20.06,-46.347 -12.407,-10.187 -29.473,-15.586 -51.076,-16.322 z"
|
||||
stroke-width="0.26458"
|
||||
id="path56" />
|
||||
<path
|
||||
d="m -924.88,143.12 v 0.008 h -20.984 v 0.24029 h -0.108 l 0.108,-0.24029 h -22.156 l -65.576,127.73 h 30.21 l 45.749,-101.59 h 11.772 v 101.6 h 43.553 V 253.05 h -22.46 v -83.889 h 22.476 v -26.045 z m -48.192,73.797 -6.3536,17.507 h 28.11 l 0.0403,-17.507 z"
|
||||
stroke="#666666"
|
||||
stroke-linecap="square"
|
||||
stroke-width="2.6458"
|
||||
style="paint-order:normal"
|
||||
id="path58" />
|
||||
<path
|
||||
d="m -896.01,143.17 v 26 c 30.392,0 45.078,8.4804 45.078,37.37 0,28.431 -15.061,43.907 -45.078,46.519 v 17.788 c 21.45,-1.224 38.234,-6.7138 50.352,-16.47 13.856,-11.214 20.784,-27.394 20.784,-48.538 0,-19.917 -6.6869,-35.366 -20.06,-46.347 -12.407,-10.187 -29.473,-15.586 -51.076,-16.322 z"
|
||||
stroke="#666666"
|
||||
stroke-linecap="square"
|
||||
stroke-width="2.6458"
|
||||
id="path60" />
|
||||
<path
|
||||
d="m -752.09,52.292 c -5.7992,-0.0136 -9.4944,-0.029 -17.998,-0.0398 -1.9634,-0.002 -5.9308,-0.002 -8.0553,-0.004 -0.33067,15.998 -15.363,18.527 -45.047,20.012 v 16.427 c 21.45,-0.70363 38.234,-3.8595 50.351,-9.468 13.48,-6.2716 20.383,-15.253 20.749,-26.926 z"
|
||||
stroke-width="0.26458"
|
||||
id="path62" />
|
||||
<path
|
||||
d="m -823.19,-38.991 v 26.003 c 30.392,0 45.078,13.541 45.078,46.673 0,0.36194 -0.0278,0.69663 -0.0315,1.0549 2.1245,0.005 6.0919,0.003 8.0553,0.008 8.504,0.0216 12.199,0.0523 17.998,0.0794 0.0103,-0.65002 0.0351,-1.2878 0.0351,-1.9462 0,-22.842 -6.6868,-40.559 -20.06,-53.152 -12.407,-11.683 -29.472,-17.875 -51.075,-18.719 z"
|
||||
stroke-width="0.26458"
|
||||
id="path64" />
|
||||
</g>
|
||||
<path
|
||||
d="m -895.19,-39.028 h 22.156 l -57.521,127.73 h -30.211 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path68" />
|
||||
<path
|
||||
d="m -900.25,34.761 h 21.797 l -0.0404,17.507 h -28.11 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path70" />
|
||||
<path
|
||||
d="m -886.09,-38.788 h 25.002 l -0.0463,25.902 h -32.244 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path72" />
|
||||
<path
|
||||
d="m -873.04,-39.028 h 21.093 v 127.74 h -21.093 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path74" />
|
||||
<g
|
||||
id="g84">
|
||||
<path
|
||||
d="m -852.38,72.262 h 22.585 v 16.454 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path76" />
|
||||
<path
|
||||
d="m -852.78,-39.035 h 22.585 v 26.045 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path78" />
|
||||
<path
|
||||
d="m -1209.5,29.415 c -5.7992,-0.02217 -9.4943,-0.04721 -17.998,-0.06483 -1.9634,-0.0041 -5.9307,-0.003 -8.0553,-0.0068 -0.3306,26.055 -15.363,40.271 -45.047,42.69 v 16.653 c 21.45,-1.1459 38.234,-6.2855 50.351,-15.419 13.48,-10.214 20.383,-24.84 20.749,-43.852 z"
|
||||
stroke-width="0.26458"
|
||||
id="path80" />
|
||||
<path
|
||||
d="M -1280.6,-38.991 V -13.8 c 30.392,0 45.078,8.2165 45.078,36.208 0,0.30578 -0.028,0.58854 -0.032,0.89122 2.1246,0.0039 6.0919,0.0028 8.0554,0.007 8.504,0.01823 12.199,0.04415 17.998,0.06709 0.01,-0.54917 0.035,-1.088 0.035,-1.6443 0,-19.298 -6.6867,-34.266 -20.06,-44.905 -12.407,-9.8702 -29.472,-15.101 -51.075,-15.815 z"
|
||||
stroke-width="0.26458"
|
||||
id="path82" />
|
||||
</g>
|
||||
<path
|
||||
d="m -1352.6,-39.028 h 22.156 l -57.521,127.73 h -30.211 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path86" />
|
||||
<path
|
||||
d="m -1357.6,34.761 h 21.797 l -0.04,17.507 h -28.11 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path88" />
|
||||
<path
|
||||
d="m -1343.5,-38.788 h 25.002 l -0.046,25.902 h -32.244 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path90" />
|
||||
<path
|
||||
d="m -1330.4,-39.028 h 21.093 v 127.74 h -21.093 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path92" />
|
||||
<g
|
||||
id="g102">
|
||||
<path
|
||||
d="m -1309.3,72.262 h 22.585 v 16.454 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path94" />
|
||||
<path
|
||||
d="m -1310.2,-39.035 h 22.585 v 26.045 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path96" />
|
||||
<path
|
||||
d="m -1297.1,232.21 c -5.7991,-0.0136 -9.4943,-0.029 -17.998,-0.0398 -1.9635,-0.002 -5.9308,-0.002 -8.0554,-0.004 -0.3306,15.998 -15.363,18.527 -45.047,20.012 v 16.427 c 21.45,-0.70363 38.234,-3.8595 50.351,-9.468 13.48,-6.2716 20.383,-15.253 20.749,-26.926 z"
|
||||
stroke-width="0.26458"
|
||||
id="path98" />
|
||||
<path
|
||||
d="m -1368.2,140.93 v 26.003 c 30.392,0 45.078,13.541 45.078,46.673 0,0.36194 -0.028,0.69663 -0.032,1.0549 2.1246,0.005 6.0919,0.003 8.0554,0.008 8.504,0.0216 12.199,0.0523 17.998,0.0794 0.01,-0.65002 0.035,-1.2878 0.035,-1.9462 0,-22.842 -6.6868,-40.559 -20.06,-53.152 -12.407,-11.683 -29.472,-17.875 -51.075,-18.719 z"
|
||||
stroke-width="0.26458"
|
||||
id="path100" />
|
||||
</g>
|
||||
<path
|
||||
d="m -1440.2,140.89 -65.576,127.73 h 30.21 l 49.232,-109.33 1.4392,-18.409 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path104" />
|
||||
<path
|
||||
d="m -1445.3,214.68 h 21.797 l -0.04,17.507 h -28.11 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path106" />
|
||||
<path
|
||||
d="m -1418.1,140.89 h 21.093 v 127.74 h -21.093 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path108" />
|
||||
<path
|
||||
d="m -1397.4,252.18 h 22.585 v 16.454 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path110" />
|
||||
<path
|
||||
d="m -1397.4,140.88 h 22.585 v 26.045 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path112" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.91662,0,0,2.037,-126.28,-304.14)"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.73183"
|
||||
id="g120">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path116" />
|
||||
<path
|
||||
d="m -1506,287.41 -4.4179,6.6152 h 202.9 l 5.6659,-6.6152 z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path118" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(0.80103,0,0,1.8236,-73.688,-242.46)"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.82738"
|
||||
id="g126">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path122" />
|
||||
<path
|
||||
d="m -1506,287.41 -4.4179,6.6152 h 208.57 l 5.1528,-6.6152 z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path124" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.0625,0,0,2.2739,560.04,-373.01)"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.64335"
|
||||
id="g132">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path128" />
|
||||
<path
|
||||
d="m -1506,287.41 -4.4179,6.6152 h 204.14 l 4.4233,-6.6152 z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path130" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.0417,0,0,1.8712,147.1,-438.78)"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.71624"
|
||||
id="g138">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path134" />
|
||||
<path
|
||||
d="m -1506,287.41 -4.4179,6.6152 h 202.81 l 5.7602,-6.6152 z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path136" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.0316,0,0,1.8712,358.03,-438.78)"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.71976"
|
||||
id="g144">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path140" />
|
||||
<path
|
||||
d="m -1506,287.41 -4.4179,6.6152 h 202.81 l 5.7585,-6.6152 z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path142" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.033,0,0,1.8712,593.04,-438.78)"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.71926"
|
||||
id="g150">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path146" />
|
||||
<path
|
||||
d="m -1506,287.41 -4.4179,6.6152 h 203.53 l 5.0379,-6.6152 z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path148" />
|
||||
</g>
|
||||
<g
|
||||
fill="#666666"
|
||||
id="g166">
|
||||
<path
|
||||
d="m -979.93,324.69 h 22.155 l -57.521,127.73 h -30.211 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path152" />
|
||||
<path
|
||||
d="m -970.83,324.93 h 25.002 l -0.046,25.902 h -32.244 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path154" />
|
||||
<path
|
||||
d="m -957.78,324.69 h 21.093 v 127.74 h -21.093 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path156" />
|
||||
<path
|
||||
d="m -907.93,324.73 v 26 c 30.392,0 45.078,8.4804 45.078,37.37 0,28.431 -15.061,43.907 -45.078,46.519 v 17.788 c 21.45,-1.224 38.234,-6.7138 50.351,-16.47 13.856,-11.214 20.784,-27.394 20.784,-48.538 0,-19.917 -6.6869,-35.366 -20.06,-46.347 -12.407,-10.187 -29.472,-15.586 -51.075,-16.322 z"
|
||||
stroke-width="0.26458"
|
||||
id="path158" />
|
||||
<path
|
||||
d="m -985.47,398.48 h 144.74 l -6.7933,17.507 h -143.81 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path160" />
|
||||
<path
|
||||
d="m -936.94,434.62 h 22.585 v 17.818 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path162" />
|
||||
<path
|
||||
d="m -937.75,324.68 h 22.585 v 26.045 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path164" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.0769,0,0,2.2594,573.87,-185.2)"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.64109"
|
||||
id="g172">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path168" />
|
||||
<path
|
||||
d="m -1507.6,287.41 -8.2242,6.6152 h 206.56 l 8.391,-6.6152 z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path170" />
|
||||
</g>
|
||||
<g
|
||||
fill="#666666"
|
||||
id="g188">
|
||||
<path
|
||||
d="m -1276.3,324.69 h 22.156 l -57.521,127.73 h -30.211 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path174" />
|
||||
<path
|
||||
d="m -1267.2,324.93 h 25.002 l -0.046,25.902 h -32.244 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path176" />
|
||||
<path
|
||||
d="m -1254.1,324.69 h 21.093 v 127.74 h -21.093 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path178" />
|
||||
<path
|
||||
d="m -1199,324.73 v 26 c 30.392,0 45.078,8.4804 45.078,37.37 0,28.431 -15.061,43.907 -45.078,46.519 v 17.788 c 21.45,-1.224 38.234,-6.7138 50.352,-16.47 13.856,-11.214 20.784,-27.394 20.784,-48.538 0,-19.917 -6.6869,-35.366 -20.06,-46.347 -12.407,-10.187 -29.473,-15.586 -51.076,-16.322 z"
|
||||
stroke-width="0.26458"
|
||||
id="path180" />
|
||||
<path
|
||||
d="m -1273,398.48 h 34.249 l -1.8398,17.507 h -38.946 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path182" />
|
||||
<path
|
||||
d="m -1233.3,434.62 h 22.585 v 17.818 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path184" />
|
||||
<path
|
||||
d="m -1234.1,324.68 h 22.585 v 26.045 h -22.585 z"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path186" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.0615,0,0,2.2534,254.14,-182.99)"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.64659"
|
||||
id="g194">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path190" />
|
||||
<path
|
||||
d="m -1507.6,287.41 -8.2242,6.6152 h 213.92 V 287.41 Z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path192" />
|
||||
</g>
|
||||
<g
|
||||
fill="#666666"
|
||||
id="g214">
|
||||
<path
|
||||
d="m -1591.2,441.79 11.046,-2.9201 7.3313,-1.3455 6.4977,-1.889 6.2598,-2.1174 5.5258,-2.3575 6.2776,-2.7384 5.6353,-3.0447 3.7065,-2.3042 3.8004,-2.0077 4.2347,-1.9094 5.145,-1.8067 6.2979,-2.3163 -0.058,26.619 z"
|
||||
id="path196" />
|
||||
<circle
|
||||
cx="-891.09998"
|
||||
cy="645.64001"
|
||||
r="5.4624"
|
||||
display="inline"
|
||||
stroke="#666666"
|
||||
stroke-linecap="square"
|
||||
stroke-linejoin="bevel"
|
||||
stroke-width="1.5875"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="circle198" />
|
||||
<path
|
||||
d="m -1566.7,514.31 h 22.156 l -57.521,127.73 h -30.211 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path200" />
|
||||
<path
|
||||
d="m -1557.6,514.55 h 25.002 l -0.046,25.902 h -32.244 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path202" />
|
||||
<path
|
||||
d="m -1544.5,514.31 h 21.093 v 127.74 h -21.093 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path204" />
|
||||
<path
|
||||
d="m -1479,514.35 -10.395,26 c 30.392,0 45.078,8.4804 45.078,37.37 0,28.431 -15.065,43.907 -45.082,46.519 l 10.407,17.788 c 21.45,-1.224 27.83,-6.7138 39.948,-16.47 13.856,-11.214 20.784,-27.394 20.784,-48.538 0,-19.917 -6.6869,-35.366 -20.06,-46.347 -12.407,-10.187 -19.077,-15.586 -40.68,-16.322 z"
|
||||
display="inline"
|
||||
stroke-width="0.26458"
|
||||
id="path206" />
|
||||
<path
|
||||
d="m -1563.4,588.1 h 34.249 l -1.8398,17.507 h -38.946 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path208" />
|
||||
<path
|
||||
d="m -1523.7,624.24 h 21.785 l 12.514,17.818 h -34.299 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path210" />
|
||||
<path
|
||||
d="m -1524.5,514.3 h 35.089 l -12.504,26.045 h -22.585 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path212" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.0615,0,0,2.8393,-36.291,-159.13)"
|
||||
display="inline"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.57602"
|
||||
id="g220">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path216" />
|
||||
<path
|
||||
d="m -1507.6,287.41 -8.2242,6.6152 h 213.92 V 287.41 Z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path218" />
|
||||
</g>
|
||||
<g
|
||||
fill="#666666"
|
||||
id="g236">
|
||||
<path
|
||||
d="m -1021,515.75 h 22.156 l -57.521,127.73 h -30.211 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path222" />
|
||||
<path
|
||||
d="m -1011.9,515.99 h 25.002 l -0.046,25.902 h -32.244 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path224" />
|
||||
<path
|
||||
d="m -998.86,515.75 h 21.093 v 127.74 h -21.093 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path226" />
|
||||
<path
|
||||
d="m -956.44,515.78 -0.0162,26 c 30.392,0 45.633,8.4804 45.633,37.37 0,28.431 -15.061,43.907 -45.078,46.519 v 17.788 c 21.45,-1.224 38.234,-6.7138 50.352,-16.47 13.856,-11.214 20.784,-27.394 20.784,-48.538 0,-19.917 -6.6869,-35.366 -20.06,-46.347 -12.407,-10.187 -30.011,-15.586 -51.614,-16.322 z"
|
||||
display="inline"
|
||||
stroke-width="0.26458"
|
||||
id="path228" />
|
||||
<path
|
||||
d="m -1017.8,589.54 h 34.249 l -1.8398,17.507 h -38.946 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path230" />
|
||||
<path
|
||||
d="m -978.03,625.67 h 22.585 v 17.818 h -22.585 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path232" />
|
||||
<path
|
||||
d="m -978.84,515.74 h 22.585 v 26.045 h -22.585 z"
|
||||
display="inline"
|
||||
style="paint-order:stroke fill markers"
|
||||
id="path234" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.0641,0,0,2.855,512.82,-162.73)"
|
||||
display="inline"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.57373"
|
||||
id="g242">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path238" />
|
||||
<path
|
||||
d="m -1508,287.41 -7.7806,6.6152 h 202.38 V 287.41 Z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
display="inline"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal"
|
||||
id="path240" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
fill="#666666"
|
||||
id="g260"
|
||||
transform="matrix(0.26568667,0,0,0.26568667,-5.8900281,-2.5470584)"
|
||||
style="stroke-width:3.76383">
|
||||
<path
|
||||
d="m 387.73,9.6222 h 102.43 l -265.93,590.54 H 84.56 Z"
|
||||
style="stroke-width:3.76383;paint-order:stroke fill markers"
|
||||
id="path246" />
|
||||
<path
|
||||
d="m 429.8,10.732 h 115.59 l -0.21264,119.75 h -149.07 z"
|
||||
style="stroke-width:3.76383;paint-order:stroke fill markers"
|
||||
id="path248" />
|
||||
<path
|
||||
d="m 490.15,9.6222 h 97.517 v 590.58 H 490.15 Z"
|
||||
style="stroke-width:3.76383;paint-order:stroke fill markers"
|
||||
id="path250" />
|
||||
<path
|
||||
d="m 685,9.5867 v 120.41 c 140.51,0 213.67,39.206 213.67,172.77 0,131.44 -70.237,202.99 -209.01,215.06 v 82.373 c 99.166,-5.6592 177.37,-31.175 233.39,-76.28 64.059,-51.846 96.09,-126.65 96.09,-224.4 0,-92.081 -30.915,-163.5 -92.744,-214.27 -57.359,-47.096 -138.24,-72.19 -238.11,-75.595 z"
|
||||
stroke-width="0.995834"
|
||||
id="path252" />
|
||||
<path
|
||||
d="m 402.79,350.76 h 158.34 l -8.5057,80.938 h -180.06 z"
|
||||
style="stroke-width:3.76383;paint-order:stroke fill markers"
|
||||
id="path254" />
|
||||
<path
|
||||
d="m 586.48,517.83 h 104.41 v 82.373 H 586.48 Z"
|
||||
style="stroke-width:3.76383;paint-order:stroke fill markers"
|
||||
id="path256" />
|
||||
<path
|
||||
d="m 581.82,9.5867 h 104.41 v 120.41 H 581.82 Z"
|
||||
style="stroke-width:3.76383;paint-order:stroke fill markers"
|
||||
id="path258" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.307019,0,0,3.5067984,1981.154,-833.37583)"
|
||||
shape-rendering="auto"
|
||||
stroke-width="0.467091"
|
||||
id="g266">
|
||||
<path
|
||||
d="m -1512.7,290.71 h 210.82"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
dominant-baseline="auto"
|
||||
fill="#999999"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal;stroke-width:1.83963"
|
||||
id="path262" />
|
||||
<path
|
||||
d="m -1508,287.41 -7.7806,6.6152 h 202.38 V 287.41 Z"
|
||||
color="#000000"
|
||||
color-rendering="auto"
|
||||
dominant-baseline="auto"
|
||||
fill="#666666"
|
||||
image-rendering="auto"
|
||||
solid-color="#000000"
|
||||
stop-color="#000000"
|
||||
style="font-variant-ligatures:normal;font-variant-position:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-alternates:normal;font-variant-east-asian:normal;font-feature-settings:normal;font-variation-settings:normal;text-indent:0;text-decoration:none;text-decoration-line:none;text-decoration-style:solid;text-decoration-color:#000000;text-transform:none;text-orientation:mixed;white-space:normal;shape-padding:0;shape-margin:0;inline-size:0;isolation:auto;mix-blend-mode:normal;stroke-width:1.83963"
|
||||
id="path264" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 40 KiB |
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="48"
|
||||
height="48"
|
||||
viewBox="0 0 48 48"
|
||||
role="img"
|
||||
version="1.1"
|
||||
id="svg1780"
|
||||
sodipodi:docname="alpinelinux.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
inkscape:export-filename="/home/adam/Development/adamsdesk-ventoy-grub-theme/assets/icons/alpinelinux.png"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96">
|
||||
<metadata
|
||||
id="metadata1786">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Alpine Linux icon</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs1784" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2160"
|
||||
id="namedview1782"
|
||||
showgrid="false"
|
||||
inkscape:zoom="26.604893"
|
||||
inkscape:cx="16.665839"
|
||||
inkscape:cy="24.969855"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg1780"
|
||||
inkscape:document-rotation="0" />
|
||||
<title
|
||||
id="title1776">Alpine Linux icon</title>
|
||||
<path
|
||||
d="M 11.999698,3.388379 0.01347407,24.157442 11.999698,44.926504 H 35.988136 L 47.974361,24.157442 35.988136,3.388379 Z m 7.927536,11.017015 5.385607,5.55547 3.193397,3.1874 0.0041,-0.0041 4.816074,4.722148 c -0.399675,0.279773 -0.771372,0.50359 -1.125083,0.687439 a 7.5058788,7.5058788 0 0 1 -0.991192,0.433648 5.3995966,5.3995966 0 0 1 -0.849308,0.221819 c -0.261786,0.04596 -0.499592,0.06794 -0.715416,0.06794 -0.259788,0 -0.483606,-0.02797 -0.675449,-0.06794 a 2.6318537,2.6318537 0 0 1 -0.479609,-0.143883 1.8984518,1.8984518 0 0 1 -0.399674,-0.225816 l -2.122269,-2.18222 -6.073048,-6.077045 -2.198207,2.104285 -6.134997,6.138993 a 1.9464126,1.9464126 0 0 1 -0.399674,0.22182 2.5459238,2.5459238 0 0 1 -0.473614,0.145881 c -0.191843,0.03997 -0.417659,0.06595 -0.67545,0.06595 -0.2158229,0 -0.4536289,-0.01799 -0.7154159,-0.06195 a 5.3955999,5.3955999 0 0 1 -0.849373,-0.227746 7.489892,7.489892 0 0 1 -0.991191,-0.433648 10.44748,10.44748 0 0 1 -1.125082,-0.68544 z m 9.432307,1.568722 9.150539,9.188506 2.761747,2.703795 a 10.47146,10.47146 0 0 1 -1.12708,0.687439 7.4539212,7.4539212 0 0 1 -0.987196,0.433646 5.3896047,5.3896047 0 0 1 -0.851305,0.22182 c -0.259789,0.04596 -0.501592,0.06794 -0.719414,0.06794 -0.257789,0 -0.481607,-0.02797 -0.673451,-0.06794 a 2.5679059,2.5679059 0 0 1 -0.769372,-0.291763 c -0.06595,-0.03996 -0.09992,-0.07193 -0.105913,-0.07994 l -2.461993,-2.434015 -4.218559,-4.218559 -0.667457,0.667456 -3.117457,-3.09148 3.78891,-3.790908 z m -11.922276,8.233285 v 5.053878 a 4.252532,4.252532 0 0 1 -0.71142,-0.06994 5.5254939,5.5254939 0 0 1 -0.843313,-0.23181 7.4099571,7.4099571 0 0 1 -0.975204,-0.427653 10.425498,10.425498 0 0 1 -1.109096,-0.679445 l 3.637035,-3.647026 z"
|
||||
id="path1778"
|
||||
style="fill:#808080;fill-opacity:1;stroke-width:0.999996"
|
||||
inkscape:export-xdpi="96"
|
||||
inkscape:export-ydpi="96" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.6 KiB |
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24px"
|
||||
height="24px"
|
||||
viewBox="0 0 24 24"
|
||||
role="img"
|
||||
version="1.1"
|
||||
id="svg904"
|
||||
sodipodi:docname="archlinux.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata910">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Arch Linux icon</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs908" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3057"
|
||||
inkscape:window-height="1622"
|
||||
id="namedview906"
|
||||
showgrid="false"
|
||||
inkscape:zoom="37.625"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg904" />
|
||||
<title
|
||||
id="title900">Arch Linux icon</title>
|
||||
<path
|
||||
d="M11.390232.60509C10.375655 3.09168 9.764285 4.7185 8.63513 7.13162c.692712.734695 1.542857 1.589214 2.923032 2.553937-1.484256-.610496-2.49621-1.223615-3.25277-1.859475-1.444897 3.015743-3.710204 7.311953-8.30554 15.568513 3.612246-2.08513 6.411955-3.36997 9.020993-3.861516-.111954-.48105-.175802-1.003208-.17143-1.54723l.0035-.115453c.057725-2.314286 1.261224-4.09417 2.68688-3.972595 1.425656.119825 2.53382 2.095627 2.477843 4.409038-.010496.43557-.06035.85452-.146064 1.242857 2.58105.504665 5.351895 1.78688 8.914286 3.844024-.702333-1.29271-1.329447-2.4586-1.928572-3.569387-.943732-.731196-1.926822-1.6828-3.933236-2.71312 1.3793.3586 2.366764.77143 3.136443 1.23411C13.970407 7.010922 13.478862 5.503924 11.390232.60509zM22.897813 21.360193v-.623615h-.233528v-.083965h.561516v.083965h-.2344v.623615h-.093587M23.322886 21.360193v-.70758h.14169l.167056.501166c.015744.04723.027114.082215.03411.10583.007873-.025365.020118-.06385.038485-.113703l.168805-.493294h.126822v.70758h-.090962v-.593003l-.206414.593003h-.083965l-.204665-.602624v.602623h-.090962"
|
||||
id="path902"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1,103 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
style="enable-background:new 0 0 60 60;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="cd.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"><metadata
|
||||
id="metadata1034"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs1032" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2017"
|
||||
inkscape:window-height="1409"
|
||||
id="namedview1030"
|
||||
showgrid="false"
|
||||
inkscape:zoom="15.05"
|
||||
inkscape:cx="30"
|
||||
inkscape:cy="30"
|
||||
inkscape:window-x="439"
|
||||
inkscape:window-y="174"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Capa_1" />
|
||||
<g
|
||||
id="g997"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
d="M 30,0 C 13.458,0 0,13.458 0,30 0,46.542 13.458,60 30,60 46.542,60 60,46.542 60,30 60,13.458 46.542,0 30,0 Z m 0,58 C 14.561,58 2,45.439 2,30 2,14.561 14.561,2 30,2 45.439,2 58,14.561 58,30 58,45.439 45.439,58 30,58 Z"
|
||||
id="path991"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 30,22 c -4.411,0 -8,3.589 -8,8 0,4.411 3.589,8 8,8 4.411,0 8,-3.589 8,-8 0,-4.411 -3.589,-8 -8,-8 z m 0,14 c -3.309,0 -6,-2.691 -6,-6 0,-3.309 2.691,-6 6,-6 3.309,0 6,2.691 6,6 0,3.309 -2.691,6 -6,6 z"
|
||||
id="path993"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 30,16 c -7.72,0 -14,6.28 -14,14 0,7.72 6.28,14 14,14 7.72,0 14,-6.28 14,-14 0,-7.72 -6.28,-14 -14,-14 z m 0,26 c -6.617,0 -12,-5.383 -12,-12 0,-6.617 5.383,-12 12,-12 6.617,0 12,5.383 12,12 0,6.617 -5.383,12 -12,12 z"
|
||||
id="path995"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g999">
|
||||
</g>
|
||||
<g
|
||||
id="g1001">
|
||||
</g>
|
||||
<g
|
||||
id="g1003">
|
||||
</g>
|
||||
<g
|
||||
id="g1005">
|
||||
</g>
|
||||
<g
|
||||
id="g1007">
|
||||
</g>
|
||||
<g
|
||||
id="g1009">
|
||||
</g>
|
||||
<g
|
||||
id="g1011">
|
||||
</g>
|
||||
<g
|
||||
id="g1013">
|
||||
</g>
|
||||
<g
|
||||
id="g1015">
|
||||
</g>
|
||||
<g
|
||||
id="g1017">
|
||||
</g>
|
||||
<g
|
||||
id="g1019">
|
||||
</g>
|
||||
<g
|
||||
id="g1021">
|
||||
</g>
|
||||
<g
|
||||
id="g1023">
|
||||
</g>
|
||||
<g
|
||||
id="g1025">
|
||||
</g>
|
||||
<g
|
||||
id="g1027">
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 2.6 KiB |
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24px"
|
||||
height="24px"
|
||||
viewBox="0 0 24 24"
|
||||
role="img"
|
||||
version="1.1"
|
||||
id="svg1694"
|
||||
sodipodi:docname="debian.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata1700">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Debian icon</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs1698" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2285"
|
||||
inkscape:window-height="1561"
|
||||
id="namedview1696"
|
||||
showgrid="false"
|
||||
inkscape:zoom="37.625"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg1694" />
|
||||
<title
|
||||
id="title1690">Debian icon</title>
|
||||
<path
|
||||
d="M13.88 12.68c-.4 0 .08.2.6.28.14-.1.27-.22.39-.33a3 3 0 0 1-.99.05M16.02 12.15c.23-.33.4-.69.47-1.06-.06.27-.2.5-.33.73-.75.47-.07-.27 0-.56-.8 1.01-.11.6-.14.89M16.8 10.1c.05-.72-.14-.5-.2-.22.07.04.13.5.2.22M12.38.31c.2.04.45.07.42.12.23-.05.28-.1-.43-.12M12.8.43l-.15.03.14-.01V.43M19.42 10.37c.02.64-.2.95-.38 1.5l-.35.18c-.28.54.03.35-.17.78-.44.39-1.34 1.22-1.62 1.3-.2 0 .14-.25.19-.34-.59.4-.48.6-1.37.85l-.03-.06c-2.22 1.04-5.3-1.02-5.25-3.84-.03.17-.07.13-.12.2a3.55 3.55 0 0 1 2-3.5 3.36 3.36 0 0 1 3.73.48 3.34 3.34 0 0 0-2.72-1.3c-1.18.01-2.28.76-2.65 1.57-.6.38-.67 1.47-.93 1.66-.36 2.6.66 3.72 2.38 5.04.27.19.08.21.12.35a4.7 4.7 0 0 1-1.53-1.16c.23.33.47.66.8.91-.55-.18-1.27-1.3-1.48-1.35.93 1.66 3.78 2.92 5.26 2.3a6.2 6.2 0 0 1-2.33-.28c-.33-.16-.77-.51-.7-.57a5.8 5.8 0 0 0 5.9-.84c.44-.35.93-.94 1.07-.95-.2.32.04.16-.12.44.44-.72-.2-.3.46-1.24l.24.33c-.09-.6.74-1.32.66-2.26.19-.3.2.3 0 .97.29-.74.08-.85.15-1.46.08.2.18.42.23.63-.18-.7.2-1.2.28-1.6-.09-.05-.28.3-.32-.53 0-.37.1-.2.14-.28-.08-.05-.26-.32-.38-.86.08-.13.22.33.34.34-.08-.42-.2-.75-.2-1.08-.34-.68-.12.1-.4-.3-.34-1.09.3-.25.34-.74.54.77.84 1.96.98 2.46-.1-.6-.28-1.2-.49-1.76.16.07-.26-1.24.21-.37A7.82 7.82 0 0 0 17.7 1.6c.18.17.42.39.33.42-.75-.45-.62-.48-.73-.67-.61-.25-.65.02-1.06 0C15.08.73 14.86.8 13.8.4l.05.23c-.77-.25-.9.1-1.73 0-.05-.04.27-.14.53-.18-.74.1-.7-.14-1.43.03.17-.13.36-.21.55-.32-.6.04-1.44.35-1.18.07C9.6.68 7.85 1.3 6.87 2.22L6.84 2c-.45.54-1.96 1.61-2.08 2.31l-.13.03c-.23.4-.38.85-.57 1.26-.3.52-.45.2-.4.28-.6 1.22-.9 2.25-1.16 3.1.18.27 0 1.65.07 2.76-.3 5.46 3.84 10.77 8.36 12 .67.23 1.65.23 2.49.25-.99-.28-1.12-.15-2.08-.49-.7-.32-.85-.7-1.34-1.13l.2.35c-.97-.34-.57-.42-1.36-.67l.21-.27c-.31-.03-.83-.53-.97-.81l-.34.01c-.41-.5-.63-.87-.61-1.16l-.11.2c-.13-.21-1.52-1.9-.8-1.51-.13-.12-.31-.2-.5-.55l.14-.17c-.35-.44-.64-1.02-.62-1.2.2.24.32.3.45.33-.88-2.17-.93-.12-1.6-2.2l.15-.02c-.1-.16-.18-.34-.26-.51l.06-.6c-.63-.74-.18-3.1-.09-4.4.07-.54.53-1.1.88-1.98l-.21-.04c.4-.71 2.34-2.87 3.24-2.76.43-.55-.09 0-.18-.14.96-.99 1.26-.7 1.9-.88.7-.4-.6.16-.27-.15 1.2-.3.85-.7 2.42-.85.16.1-.39.14-.52.26 1-.49 3.15-.37 4.56.27 1.63.77 3.46 3.01 3.53 5.13l.08.02c-.04.85.13 1.82-.17 2.71l.2-.42M9.54 13.23l-.05.28c.26.35.47.73.8 1.01-.24-.47-.42-.66-.75-1.3M10.16 13.2c-.14-.15-.22-.34-.31-.52.08.32.26.6.43.88l-.12-.36M21.1 10.82l-.07.15c-.1.76-.34 1.51-.69 2.21.4-.73.65-1.54.75-2.36M12.45.12c.27-.1.66-.05.95-.12-.37.03-.74.05-1.1.1l.15.02M3.01 5.14c.07.57-.43.8.11.42.3-.66-.11-.18-.1-.42M2.38 7.8c.12-.39.15-.62.2-.84-.35.44-.17.53-.2.83"
|
||||
id="path1692"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 4.1 KiB |
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24px"
|
||||
height="24px"
|
||||
viewBox="0 0 24 24"
|
||||
role="img"
|
||||
version="1.1"
|
||||
id="svg2319"
|
||||
sodipodi:docname="deepin.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata2325">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs2323" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2552"
|
||||
inkscape:window-height="1467"
|
||||
id="namedview2321"
|
||||
showgrid="false"
|
||||
inkscape:zoom="37.625"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2319" />
|
||||
<title
|
||||
id="title2315">deepin icon</title>
|
||||
<path
|
||||
d="M16.104.696c-1.724-.63-3.49-.8-5.205-.64-1.988.157-2.958.772-2.9.661-3.251 1.16-6 3.657-7.272 7.157-2.266 6.234.944 13.128 7.168 15.398 6.228 2.27 13.111-.945 15.378-7.179C25.54 9.86 22.33 2.966 16.104.696zM8.305 22.145a10.767 10.767 0 0 1-1.867-.904c2.9.223 6.686-.445 9.239-2.834 0 0 4.866-3.888 1.345-10.269 0 0 .568 2.572-.156 4.687 0 0-.69 2.877-3.757 3.712-4.517 1.231-9.664-1.93-11.816-3.463-.162-1.574-.018-3.2.56-4.788.855-2.352 2.463-4.188 4.427-5.42-.49 3.436-.102 6.6.456 7.925.749 1.777 2.05 3.85 4.59 4.115 2.54.267 3.94-2.11 3.94-2.11 1.304-1.98 1.508-4.823 1.488-4.892-.02-.07-.347-.257-.347-.257-.877 3.549-2.323 4.734-2.323 4.734-2.28 2.201-3.895.675-3.895.675-1.736-1.865-.52-4.895-.52-4.895.68-2.064 2.66-5.084 4.905-6.62.374.092.75.15 1.12.284a10.712 10.712 0 0 1 3.554 2.16c-1.641.599-4.291 1.865-4.291 1.865-4.201 1.77-4.485 4.446-4.485 4.446-.435 2.758 1.754 1.59 1.754 1.59 2.252-1.097 3.359-4.516 3.359-4.516-.703-.134-1.257.08-1.257.08-.899 2.22-2.733 3.132-2.733 3.132-.722.382-.89-.293-.89-.293-.122-.506.522-.592.522-.592 1-.389 1.639-1.439 1.784-1.868.144-.43.412-.464.412-.464a12.998 12.998 0 0 1 2.619-.535c1.7-.209 4.303.602 4.303.602.584.235 1.144.41 1.641.551.954 2.384 1.105 5.098.16 7.7-2.039 5.61-8.236 8.504-13.841 6.462z"
|
||||
id="path2317"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24px"
|
||||
height="24px"
|
||||
viewBox="0 0 24 24"
|
||||
role="img"
|
||||
version="1.1"
|
||||
id="svg2950"
|
||||
sodipodi:docname="elementaryos.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata2956">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs2954" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2104"
|
||||
inkscape:window-height="1475"
|
||||
id="namedview2952"
|
||||
showgrid="false"
|
||||
inkscape:zoom="37.625"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2950" />
|
||||
<title
|
||||
id="title2946">elementary icon</title>
|
||||
<path
|
||||
d="M12 0a12 12 0 1 0 0 24 12 12 0 0 0 0-24zm0 1a11 11 0 0 1 10.59 8.01 19.09 19.09 0 0 1-4.66 6.08c-.94.81-1.96 1.53-3.08 2.04-1.13.5-2.37.8-3.6.72a6.23 6.23 0 0 1-2.66-.76 20.02 20.02 0 0 0 5.68-4.58 9.97 9.97 0 0 0 2.31-4.17c.18-.79.2-1.6.04-2.4a4.42 4.42 0 0 0-1.08-2.11 4.33 4.33 0 0 0-2-1.19 5.25 5.25 0 0 0-2.33-.08A7.8 7.8 0 0 0 7.2 4.85a9.77 9.77 0 0 0-2.94 7.49 7.88 7.88 0 0 0 1.95 4.59 18 18 0 0 1-3.56.85A11 11 0 0 1 12 1zm.07 2.22c.77 0 1.55.24 2.17.7.55.42.97 1.02 1.2 1.68.23.65.3 1.37.21 2.06a7.85 7.85 0 0 1-1.7 3.76 16.22 16.22 0 0 1-6.37 4.96c-.48-.42-.9-.92-1.2-1.48a6.61 6.61 0 0 1-.75-3.87c.12-1.32.58-2.6 1.2-3.79a7.92 7.92 0 0 1 3.02-3.42c.68-.37 1.45-.6 2.22-.6zm10.83 7.3A11 11 0 0 1 3.52 19a19.8 19.8 0 0 0 3.63-1.2c.51.4 1.08.71 1.67.94a8 8 0 0 0 5.44-.04 13.3 13.3 0 0 0 4.64-2.95 20 20 0 0 0 4-5.22z"
|
||||
id="path2948"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="2500"
|
||||
height="2500"
|
||||
viewBox="0 0 256 256"
|
||||
preserveAspectRatio="xMidYMid"
|
||||
version="1.1"
|
||||
id="svg3627"
|
||||
sodipodi:docname="fedora.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata3633">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs3631" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2614"
|
||||
inkscape:window-height="1563"
|
||||
id="namedview3629"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.3612"
|
||||
inkscape:cx="1250"
|
||||
inkscape:cy="1250"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg3627" />
|
||||
<path
|
||||
id="path3621"
|
||||
style="fill:#808080;fill-opacity:1;stroke-width:9.76562"
|
||||
d="M 1244.4199 -1.984375 C 1240.8823 -1.972118 1237.3441 -1.9470893 1233.8066 -1.9082031 C 1032.3877 0.37607959 831.72349 52.119575 654.73438 148.31836 C 439.13029 264.67065 259.16256 445.83679 144.31641 662.24219 C 48.216659 841.86691 -2.1469694 1045.4333 -2.0019531 1249.1602 C -1.9256055 1574.064 -2.1557715 1898.9707 -1.8886719 2223.873 C -0.12616211 2304.5537 38.057984 2383.351 100.10938 2434.9199 C 152.99031 2479.8517 222.67534 2503.8873 292.00781 2501.9648 C 617.22069 2501.8867 942.4344 2502.1182 1267.6465 2501.8496 C 1468.7856 2499.3513 1669.0534 2447.5147 1845.7734 2351.4004 C 2053.3169 2239.2355 2227.8406 2067.1124 2342.9453 1861.1836 C 2441.5821 1685.7164 2496.3551 1485.9723 2501.5254 1284.7441 C 2507.3377 1081.8312 2463.2238 877.67689 2372.9453 695.82031 C 2268.4497 483.7985 2102.4083 302.74361 1900.4043 180.01172 C 1725.3912 73.060051 1523.54 10.623452 1318.6758 -0.13671875 C 1293.9486 -1.4945812 1269.1835 -2.0701739 1244.4199 -1.984375 z M 1615.9941 293.96484 C 1686.6333 293.87767 1757.2763 306.42327 1823.377 331.36328 C 1960.6055 382.44791 2076.78 487.00738 2142.4688 617.82422 C 2204.6065 739.74981 2221.3045 883.75229 2189.8535 1016.8555 C 2159.6282 1146.9897 2082.9919 1265.4454 1977.3633 1347.1211 C 1879.6381 1423.5154 1757.1772 1467.47 1633.1523 1470.4902 C 1525.218 1471.0181 1417.2755 1470.5705 1309.3379 1470.7188 L 1309.3379 1674.834 C 1308.8777 1721.1737 1310.3838 1767.5603 1308.3105 1813.8672 C 1301.2681 1943.3971 1249.319 2069.7903 1163.5488 2167.0801 C 1133.5832 2201.4711 1099.5052 2232.2047 1062.377 2258.6641 C 1061.9734 2258.9536 1061.5683 2259.2408 1061.1641 2259.5293 C 1060.5498 2259.9647 1059.9363 2260.4009 1059.3203 2260.834 C 1025.0584 2285.0864 988.22776 2305.7018 949.49805 2322.0059 C 812.98178 2380.2956 654.10871 2383.6541 515.21484 2331.2969 C 381.77413 2281.8128 268.04656 2181.9093 201.32812 2056.248 C 136.34462 1935.5821 116.3794 1791.7181 145.10742 1657.7754 C 173.18091 1523.1587 250.99021 1399.9969 359.54297 1315.7617 C 457.41063 1239.0264 580.16665 1194.8196 704.51562 1191.8047 C 812.44938 1191.2778 920.39116 1191.7263 1028.3281 1191.5781 L 1028.3281 907.38281 C 1027.2337 852.98146 1031.5346 798.30387 1044.5273 745.37891 C 1075.9745 612.30611 1156.1305 491.73707 1265.9492 410.40625 C 1272.336 405.62855 1278.825 400.99273 1285.4043 396.49023 C 1285.7227 396.27188 1286.0425 396.0556 1286.3613 395.83789 C 1287.4054 395.1265 1288.4493 394.41535 1289.498 393.71094 C 1290.7565 392.86379 1292.0201 392.02461 1293.2852 391.1875 C 1293.4447 391.08215 1293.604 390.97629 1293.7637 390.87109 C 1384.7783 330.77752 1492.754 296.66099 1601.8691 294.15039 C 1606.577 294.03222 1611.2849 293.97066 1615.9941 293.96484 z M 1618.4785 575.24414 C 1614.359 575.26015 1610.2317 575.34772 1606.0977 575.52148 C 1528.7797 577.82065 1453.0077 611.03398 1398.5527 666.35156 C 1344.6306 720.27405 1311.967 795.17036 1309.5547 871.61133 C 1309.0049 964.58323 1309.4756 1057.5693 1309.3184 1150.5469 C 1308.5188 1170.5135 1323.7201 1188.7839 1342.8418 1192.459 C 1435.2561 1192.4516 1527.6703 1192.5024 1620.084 1192.4102 C 1697.6127 1192.1646 1774.8048 1160.5482 1830.8262 1106.7383 C 1890.4036 1050.3437 1925.9879 969.92488 1927.0195 888.2168 C 1929.082 805.32226 1895.7204 722.65335 1836.8691 663.88281 C 1795.4007 621.78534 1741.5937 592.44039 1684.168 579.57227 C 1662.3114 577.17338 1640.4877 575.15859 1618.4785 575.24414 z M 720.69141 1469.8594 C 651.0145 1469.6149 581.75834 1493.9063 527.35156 1537.6738 C 459.84166 1591.1205 416.43212 1673.6305 411.2832 1759.1191 C 405.44545 1840.3677 433.324 1922.7725 487.33203 1983.9688 C 530.3324 2033.566 589.63636 2068.4483 653.41797 2082.7324 C 683.62745 2086.0634 713.86979 2088.4278 744.34375 2086.0859 C 817.14659 2080.8124 887.74056 2048.1333 939.11328 1995.9434 C 993.05357 1942.0153 1025.7245 1867.0172 1028.1113 1790.6836 C 1028.6611 1698.3818 1028.1904 1606.0672 1028.3477 1513.7598 C 1030.0522 1493.349 1014.7575 1473.6279 994.83789 1469.8594 L 720.69141 1469.8594 z "
|
||||
transform="scale(0.1024)" />
|
||||
</svg>
|
After Width: | Height: | Size: 5.5 KiB |
|
@ -0,0 +1,80 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
width="468pt"
|
||||
height="363pt"
|
||||
viewBox="0 0 468 363"
|
||||
preserveAspectRatio="xMidYMid meet"
|
||||
id="svg4342"
|
||||
sodipodi:docname="freedos.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<defs
|
||||
id="defs4346" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2710"
|
||||
inkscape:window-height="1579"
|
||||
id="namedview4344"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.8657025"
|
||||
inkscape:cx="312"
|
||||
inkscape:cy="242"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg4342" />
|
||||
<metadata
|
||||
id="metadata4314">
|
||||
Made by Mateusz Viste "Fox"
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="matrix(0.132955,0,0,-0.132955,-16.044619,392.94544)"
|
||||
fill="#000000"
|
||||
stroke="none"
|
||||
id="g4340"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
d="M 1590,2663 C 1271,2640 1020,2478 805,2159 683,1977 647,1866 579,1465 c -6,-36 -8,-117 -4,-203 8,-157 1,-141 84,-195 19,-12 63,-60 98,-105 34,-46 74,-93 87,-103 l 25,-19 -31,-67 c -48,-102 -45,-243 5,-243 19,0 92,53 147,106 l 45,44 100,-39 c 356,-139 781,-108 1111,80 l 88,51 34,-38 c 19,-22 60,-71 90,-109 103,-128 123,-139 148,-78 41,96 31,178 -42,364 l -18,47 69,66 c 83,79 73,77 118,18 63,-84 193,-180 293,-218 70,-26 71,-2 8,101 -116,186 -123,241 -45,351 54,78 115,137 166,161 41,19 43,32 13,60 -51,46 -152,58 -235,29 -50,-18 -59,-12 -72,45 -158,703 -620,1128 -1196,1097 -17,-1 -50,-3 -75,-5 z m 385,-86 c 169,-42 296,-117 421,-249 223,-238 350,-523 413,-926 1,-2 16,9 34,24 55,46 166,75 235,59 27,-5 26,-7 -63,-99 -155,-160 -164,-275 -34,-458 13,-17 16,-28 8,-28 -49,0 -265,234 -260,282 6,60 -74,18 -122,-65 -14,-23 -37,-53 -52,-67 l -27,-25 -28,34 c -26,30 -30,32 -49,19 l -20,-14 20,-34 c 63,-102 128,-290 129,-365 0,-83 -24,-82 -83,4 -46,69 -176,210 -208,226 -68,36 -106,12 -54,-34 51,-44 51,-44 -76,-114 C 1927,620 1380,589 1179,690 1068,747 892,881 848,942 l -21,31 24,-6 c 13,-3 65,-17 116,-31 205,-56 774,-65 883,-14 142,66 158,161 18,108 -249,-95 -762,-67 -1068,57 -74,30 -141,58 -149,61 -18,7 -9,324 13,452 60,351 248,687 469,838 23,16 59,40 80,55 140,96 535,139 762,84 z M 959,739 c 13,-17 22,-31 20,-33 -44,-30 -111,-67 -116,-62 -9,9 14,78 34,103 23,29 33,28 62,-8 z"
|
||||
id="path4316"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 928,1584 c -119,-64 -155,-279 -61,-365 156,-145 374,-40 377,181 2,138 -193,251 -316,184 z m 177,-52 c 111,-69 128,-154 53,-259 -120,-167 -362,-12 -287,184 32,85 153,124 234,75 z"
|
||||
id="path4318"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 985,1491 c -94,-39 -79,-201 19,-209 44,-4 62,8 82,56 42,101 -15,188 -101,153 z m 79,-44 c 6,-9 7,-19 3,-23 -12,-13 -82,10 -85,28 -6,32 61,28 82,-5 z"
|
||||
id="path4320"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 1409,1520 c -152,-46 -147,-280 8,-336 67,-23 106,-18 147,20 133,127 15,368 -155,316 z m 91,-55 c 88,-46 101,-145 28,-222 -61,-65 -178,10 -178,112 0,96 73,150 150,110 z"
|
||||
id="path4322"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 1405,1414 c -43,-66 -7,-167 53,-148 59,19 82,48 82,104 0,63 -101,96 -135,44 z m 85,-9 c 16,-19 5,-34 -20,-28 -24,6 -34,19 -25,33 9,14 31,12 45,-5 z"
|
||||
id="path4324"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.1 KiB |
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24px"
|
||||
height="24px"
|
||||
viewBox="0 0 24 24"
|
||||
role="img"
|
||||
version="1.1"
|
||||
id="svg4976"
|
||||
sodipodi:docname="gentoo.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata4982">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Gentoo icon</dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs4980" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2686"
|
||||
inkscape:window-height="1473"
|
||||
id="namedview4978"
|
||||
showgrid="false"
|
||||
inkscape:zoom="37.625"
|
||||
inkscape:cx="5.2093023"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg4976" />
|
||||
<title
|
||||
id="title4972">Gentoo icon</title>
|
||||
<path
|
||||
d="M9.956.097a7.252 7.252 0 0 0-1.25.115C4.397 1 1.365 4.73 1.107 7.186c-.125 1.205.525 2.108.883 2.506.969 1.076 2.9 1.898 4.141 2.58-1.795 1.53-2.618 2.277-3.429 3.128-1.214 1.274-2.067 2.676-2.07 3.68 0 .323-.053 1.355.368 2.17.158.306.608 1.327 1.964 2.092.867.49 2.102.67 3.31.497 3.742-.534 8.753-3.707 12.328-6.662 2.279-1.884 3.945-3.709 4.426-4.607.388-.725.431-2.026.206-2.843-.64-2.318-5.84-7.067-10.091-8.978A7.761 7.761 0 0 0 9.956.097zm-.007.067a7.341 7.341 0 0 1 3.317.749c3.433 1.687 9.233 6.43 9.661 8.814.53 2.948-9.852 10.929-16.167 12.174-2.45.481-4.539.613-5.492-1.975-.826-2.243.776-3.884 3.135-6.04.98-.895 1.76-1.564 2.935-2.556.065-.068-5.66-2.042-5.842-4.308C1.307 4.693 4.995.394 9.716.172c.078-.004.155-.007.233-.008zM9.838.68a5.602 5.602 0 0 0-.502.031c-2.319.244-2.763.543-4.864 2.132-.704.533-2 1.829-2.331 3.366-.127.586.023 1.091.444 1.446 1.35 1.135 3.61 2.056 5.465 2.947.543.26.184.733-.692 1.492-2.21 1.913-5.198 4.242-5.407 6.017-.098.836.188 1.972 1.203 2.554 1.186.679 3.647.236 5.291-.376 2.402-.895 5.557-2.869 8.062-4.809 2.604-2.018 5.026-4.58 5.146-4.998.147-.513.132-.988-.152-1.533-.445-.855-1.041-1.491-1.681-2.203-1.718-1.81-3.534-3.401-5.708-4.62-1.423-.798-2.69-1.47-4.274-1.446zm1.066 3.594c.542 0 1.167.171 1.838.496 1.675.81 3.395 2.937-.015 4.161-.927.333-3.869-.818-3.779-2.388.089-1.558.847-2.27 1.956-2.269zm.283 1.356c-.315-.002-.571.078-.689.26-.552.855-.3 1.461.211 1.848.19-.454 2.138.042 2.13.468.02-.01.04-.02.055-.032 1.69-1.272-.468-2.536-1.707-2.544z"
|
||||
id="path4974"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.1 KiB |
After Width: | Height: | Size: 8.9 KiB |
|
@ -0,0 +1,92 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
inkscape:export-ydpi="41.27"
|
||||
inkscape:export-xdpi="41.27"
|
||||
inkscape:export-filename="/home/adam/Pictures/ubuntu.png"
|
||||
sodipodi:docname="kubuntu.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
xml:space="preserve"
|
||||
enable-background="new 0 0 779.617 170.079"
|
||||
viewBox="0 0 599.99999 600.00001"
|
||||
height="600"
|
||||
width="600"
|
||||
y="0px"
|
||||
x="0px"
|
||||
id="kubuntu__x5F__black"
|
||||
version="1.1"><metadata
|
||||
id="metadata27"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs25"><inkscape:perspective
|
||||
id="perspective29"
|
||||
inkscape:persp3d-origin="389.8085 : 486.61502 : 1"
|
||||
inkscape:vp_z="779.61699 : 514.96152 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_x="0 : 514.96152 : 1"
|
||||
sodipodi:type="inkscape:persp3d" /><inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 430.42202 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="0.99999999 : 430.42202 : 1"
|
||||
inkscape:persp3d-origin="0.5 : 430.25535 : 1"
|
||||
id="perspective3135" /><inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 430.42202 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="0.99999999 : 430.42202 : 1"
|
||||
inkscape:persp3d-origin="0.5 : 430.25535 : 1"
|
||||
id="perspective3415" /><inkscape:perspective
|
||||
sodipodi:type="inkscape:persp3d"
|
||||
inkscape:vp_x="0 : 430.42202 : 1"
|
||||
inkscape:vp_y="0 : 1000 : 0"
|
||||
inkscape:vp_z="0.99999999 : 430.42202 : 1"
|
||||
inkscape:persp3d-origin="0.5 : 430.25535 : 1"
|
||||
id="perspective2861" /></defs><sodipodi:namedview
|
||||
inkscape:document-rotation="0"
|
||||
inkscape:current-layer="kubuntu__x5F__black"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:window-y="297"
|
||||
inkscape:window-x="805"
|
||||
inkscape:cy="291.14038"
|
||||
inkscape:cx="280.53679"
|
||||
inkscape:zoom="1.190888"
|
||||
showgrid="false"
|
||||
id="namedview23"
|
||||
inkscape:window-height="1223"
|
||||
inkscape:window-width="1913"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:pageopacity="0"
|
||||
guidetolerance="10"
|
||||
gridtolerance="10"
|
||||
objecttolerance="10"
|
||||
borderopacity="1"
|
||||
bordercolor="#666666"
|
||||
pagecolor="#ffffff" />
|
||||
|
||||
|
||||
<g
|
||||
transform="matrix(6.7228488,0,0,6.7229017,-5263.9361,-70.921047)"
|
||||
id="g3647"><path
|
||||
id="path2819-8-3-8"
|
||||
style="fill:#808080;fill-opacity:1;stroke-width:6.72288"
|
||||
d="M 299.99414,0 C 134.31249,0 0,134.3094 0,299.99023 0,465.66904 134.31249,600 299.99414,600 465.6824,600 600,465.66904 600,299.99023 600,134.3094 465.6824,0 299.99414,0 Z m -18.87891,60.181641 c 1.63236,-0.108741 3.20088,0.781265 3.92579,2.302734 l 29.625,62.283205 c 14.43099,0.42374 28.90608,2.90656 43.02343,7.41406 l 47.59961,-47.531249 c 1.31059,-1.315455 3.36252,-1.5651 4.96289,-0.591797 l 37.83789,23.013676 c 1.64231,0.9988 2.35814,3.01413 1.7168,4.8164 l -23.01758,64.79883 c 8.69005,9.64577 16.05668,20.22203 22.01953,31.46094 l 70.6543,0.0508 c 1.87061,0.002 3.4951,1.28023 3.93945,3.0918 l 10.48047,43.0332 c 0.46134,1.86499 -0.45298,3.7912 -2.18945,4.62109 L 442.70898,278.42383 253.25,162.24414 234.28516,74.710938 c 0.01,-1.8736 1.29446,-3.497158 3.10156,-3.939454 l 43.02734,-10.482422 c 0.23356,-0.0574 0.46798,-0.09189 0.70117,-0.107421 z M 142.16016,123.55273 c 0.68029,0.0439 1.35668,0.25964 1.96093,0.6543 l 67.79883,61.75781 -10.19726,221.19141 -60.47071,66.88867 c -1.60588,0.96518 -3.66162,0.71261 -4.97851,-0.60156 l -31.3125,-31.31641 c -1.36324,-1.3578 -1.58445,-3.48238 -0.5293,-5.09375 l 37.82031,-57.67578 c -7.13656,-12.55011 -12.53703,-26.2072 -16.02148,-40.61133 L 60.886719,322.77344 c -1.80492,-0.43624 -3.082032,-2.05853 -3.082031,-3.93164 v -44.28711 c 0,-1.9222 1.349558,-3.58218 3.222656,-3.97071 l 67.322266,-14.0039 c 3.72576,-12.43694 8.93543,-24.22748 15.43945,-35.16211 l -36.66992,-60.39258 c -0.97064,-1.59908 -0.72314,-3.65168 0.59375,-4.97266 l 31.32227,-31.3164 c 0.84607,-0.85203 1.99118,-1.25682 3.125,-1.1836 z m 296.83203,207.1211 90.23633,20.20508 c 1.63798,0.90963 2.44415,2.81811 1.96289,4.61523 l -11.50391,42.76563 c -0.49594,1.85906 -2.22549,3.11179 -4.14844,3.00195 l -68.85547,-3.97852 c -7.31157,12.44896 -16.44823,23.94623 -27.18945,34.15625 l 18.78125,64.5918 c 0.52306,1.78171 -0.24419,3.69967 -1.86719,4.63477 l -38.375,22.10937 c -1.66552,0.9596 -3.77709,0.6185 -5.04882,-0.81055 l -45.74219,-51.34375 c -12.6362,2.98045 -25.45238,4.35264 -38.17383,4.17579 l -34.02344,61.92382 c -0.90099,1.63934 -2.80346,2.44841 -4.60547,1.9668 l -42.77148,-11.50586 c -1.85702,-0.49241 -3.10357,-2.22098 -2.99609,-4.14258 l 23.13085,-87.54687 z"
|
||||
transform="matrix(0.14874647,0,0,0.1487453,782.99189,10.549172)" /><g
|
||||
id="g4835-5-6-3"
|
||||
transform="matrix(0.415288,0,0,0.415288,609.13611,80.906538)"
|
||||
style="fill:#ffffff;fill-opacity:1" /><g
|
||||
id="g4835-5-6-3-7"
|
||||
transform="matrix(-0.21579109,0.35482154,-0.35482154,-0.21579109,919.22927,-144.75119)"
|
||||
style="fill:#ffffff;fill-opacity:1" /><g
|
||||
id="g4835-5-6-3-1"
|
||||
transform="matrix(-0.20731956,-0.35983709,0.35983709,-0.20731956,958.85963,231.66525)"
|
||||
style="fill:#ffffff;fill-opacity:1" /><path
|
||||
style="fill:#808080;fill-opacity:1"
|
||||
d="m 849.15577,55.172072 c 0,11.895612 -9.64397,21.540458 -21.54035,21.540458 -11.89591,0 -21.53953,-9.644846 -21.53953,-21.540458 0,-11.895759 9.64362,-21.539088 21.53953,-21.539088 11.89638,0 21.54035,9.643329 21.54035,21.539088 z"
|
||||
id="path2819-8-3-8-5" /></g></svg>
|
After Width: | Height: | Size: 5.8 KiB |
After Width: | Height: | Size: 9.4 KiB |
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24px"
|
||||
height="24px"
|
||||
viewBox="0 0 24 24"
|
||||
role="img"
|
||||
version="1.1"
|
||||
id="svg2329"
|
||||
sodipodi:docname="linuxmint.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata2335">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs2333" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2420"
|
||||
inkscape:window-height="1441"
|
||||
id="namedview2331"
|
||||
showgrid="false"
|
||||
inkscape:zoom="37.625"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg2329" />
|
||||
<title
|
||||
id="title2325">Linux Mint icon</title>
|
||||
<path
|
||||
d="M0 1.693v4.193h1.828c1.276 0 1.502.865 1.502 2.058l.01 7.412c0 3.84 3.44 6.951 7.68 6.951h10.464c1.342 0 2.516-.83 2.516-2.108V8.706c0-3.84-3.44-6.95-7.683-6.95h-4.405v-.013L0 1.693zm5.723 2.566h2.102V14.82c0 1.413.984 2.51 2.139 2.51l7.17.03c1.496 0 2.661-1.01 2.661-2.206l-.012-5.607a1.2 1.2 0 0 0-.386-.91 1.224 1.224 0 0 0-.917-.384c-.374 0-.65.12-.918.384a1.2 1.2 0 0 0-.386.91v4.798h-2.223V9.548c0-.364-.124-.648-.389-.91a1.208 1.208 0 0 0-.917-.384c-.366 0-.647.12-.914.384-.265.262-.39.546-.39.91v4.798H10.12V9.548c0-.95.36-1.792 1.042-2.466a3.445 3.445 0 0 1 2.485-1.022c.937 0 1.752.345 2.413.97a3.448 3.448 0 0 1 2.42-.97c.954 0 1.803.348 2.485 1.022a3.385 3.385 0 0 1 1.041 2.466l.009 5.991c-.105 1.004-.539 1.894-1.28 2.637h-.002a4.367 4.367 0 0 1-3.174 1.314H9.574v-.038c-.976-.103-1.846-.519-2.57-1.217-.845-.825-1.281-1.846-1.281-3.01V4.26z"
|
||||
id="path2327"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.4 KiB |
|
@ -0,0 +1,107 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
viewBox="0 0 600 600"
|
||||
height="600"
|
||||
width="600"
|
||||
id="svg83"
|
||||
version="1.1"
|
||||
sodipodi:docname="lubuntu.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2126"
|
||||
id="namedview21"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.7285157"
|
||||
inkscape:cx="304.00829"
|
||||
inkscape:cy="240.80415"
|
||||
inkscape:window-x="3840"
|
||||
inkscape:window-y="34"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg83"
|
||||
inkscape:document-rotation="0"
|
||||
showguides="false" />
|
||||
<metadata
|
||||
id="metadata89">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs87" />
|
||||
<g
|
||||
id="g750"
|
||||
transform="matrix(1.0986335,0,0,1.0986335,-2.9941007e-6,-3.3078078e-4)"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<g
|
||||
id="g3647"
|
||||
transform="matrix(-7.1710344,0,0,7.1710908,6330.5859,-133.95867)"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<g
|
||||
style="fill:#808080;fill-opacity:1"
|
||||
transform="matrix(0.415288,0,0,0.415288,609.13611,80.906538)"
|
||||
id="g4835-5-6-3" />
|
||||
<g
|
||||
style="fill:#808080;fill-opacity:1"
|
||||
transform="matrix(-0.21579109,0.35482154,-0.35482154,-0.21579109,919.22927,-144.75119)"
|
||||
id="g4835-5-6-3-7" />
|
||||
<g
|
||||
style="fill:#808080;fill-opacity:1"
|
||||
transform="matrix(-0.20731956,-0.35983709,0.35983709,-0.20731956,958.85963,231.66525)"
|
||||
id="g4835-5-6-3-1" />
|
||||
<path
|
||||
id="path2819-8-3-8-5"
|
||||
style="fill:#808080;fill-opacity:1;stroke-width:13.9277"
|
||||
d="M 299.99414,0 C 134.31247,0 0,134.33094 0,300.00977 0,465.69062 134.31247,600 299.99414,600 465.68235,600 600,465.69062 600,300.00977 600,134.33094 465.68235,0 299.99414,0 Z m 39.07422,117.70117 c 2.94904,-0.0139 5.89822,0.13901 8.83008,0.46485 25.14883,2.79496 48.47232,18.69109 60.25586,41.0664 l 141.69531,19.5293 H 388.35547 c -10.07542,-12.88629 -25.29517,-21.63763 -41.50781,-23.86719 -11.57814,-1.59216 -23.58758,0.0792 -34.28907,4.77344 -10.7013,4.69463 -20.06363,12.39768 -26.72656,21.99219 -6.66275,9.59469 -10.60784,21.05305 -11.26367,32.71289 -0.65583,11.65984 1.98035,23.48553 7.52539,33.76562 -10.66474,-11.55758 -17.69328,-26.41575 -19.86133,-41.98633 -2.16804,-15.57057 0.53448,-31.78483 7.63672,-45.8125 7.10224,-14.02766 18.57185,-25.80771 32.41016,-33.28711 11.24347,-6.07686 24.00987,-9.29146 36.78906,-9.35156 z M 85.138672,145.30273 302.01562,301.11719 123.11914,200.82422 c -5.43301,16.19436 -6.06417,33.96372 -1.79297,50.50195 3.72884,14.4378 11.16195,27.90496 21.39258,38.75977 7.38004,7.83043 16.20967,14.27946 25.88477,18.99218 l 121.37304,34.12891 -150.02539,-24.53711 c 1.4753,14.40932 6.87528,28.39816 15.4668,40.06446 15.2177,20.66405 40.6566,33.41216 66.33203,33.24023 -25.62919,6.88354 -54.03542,2.70684 -76.59375,-11.26172 -15.20659,-9.41613 -27.73129,-23.1065 -35.75391,-39.08398 C 101.3799,325.65143 97.882003,307.43463 99.417969,289.625 l 31.580081,8.88086 C 119.84414,292.11808 109.72561,283.93372 101.27148,274.25195 86.149985,256.93448 76.343122,235.0454 73.490234,212.24023 c -2.852869,-22.80496 1.25832,-46.43355 11.648438,-66.9375 z m 291.742188,78.31836 c -0.16131,2.30031 -0.24058,4.60626 -0.22266,6.91211 0.14536,28.58456 13.38977,55.27266 26.46094,80.69922 13.07135,25.42657 26.57498,51.91073 27.30859,80.48633 0.6103,23.77082 -8.00282,47.38661 -22.44335,66.28711 -14.44036,18.9005 -34.46831,33.19508 -56.41993,42.37695 -30.65013,12.8202 -65.33032,15.80903 -97.72461,8.42188 l -24.99609,59.33593 v -83.12304 c 30.39544,6.70767 62.81409,3.94685 91.63477,-7.80469 17.49669,-7.13427 33.77766,-17.61076 46.5332,-31.54297 12.75553,-13.9322 21.86823,-31.41375 24.65625,-50.08984 3.73278,-25.00515 -3.81045,-50.16373 -11.21094,-74.33985 -7.40031,-24.17629 -14.82607,-49.39643 -10.85742,-74.36523 1.27957,-8.05017 3.74079,-15.91063 7.28125,-23.25391 z"
|
||||
transform="matrix(-0.12693031,0,0,0.12692932,882.79954,18.680418)" />
|
||||
</g>
|
||||
<g
|
||||
transform="matrix(1.6332749,0,0,1.6332749,-943.27495,-701.28981)"
|
||||
id="g3185"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<g
|
||||
transform="matrix(0.99888162,0,0,0.99809723,-380.89834,-1118.5405)"
|
||||
id="g3147-6"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<g
|
||||
transform="translate(15,2)"
|
||||
id="g3159-3"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
transform="translate(-8)"
|
||||
id="g3179"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<g
|
||||
id="text3142"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:21.2227px;line-height:125%;font-family:FontAwesome;-inkscape-font-specification:FontAwesome;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#808080;fill-opacity:1;stroke:none"
|
||||
transform="matrix(1.0005173,0,0,0.99948297,0.16863416,0)" />
|
||||
<g
|
||||
id="text3152"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:20.9884px;line-height:125%;font-family:FontAwesome;-inkscape-font-specification:FontAwesome;text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#808080;fill-opacity:1;stroke:none"
|
||||
transform="matrix(1.0005173,0,0,0.99948297,9,0)" />
|
||||
</g>
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 6.1 KiB |
|
@ -0,0 +1,415 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="136"
|
||||
height="213.91142"
|
||||
id="svg9247"
|
||||
sodipodi:docname="mageia.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3048"
|
||||
inkscape:window-height="1674"
|
||||
id="namedview3096"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="2.1127098"
|
||||
inkscape:cx="89.325183"
|
||||
inkscape:cy="126.63197"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg9247" />
|
||||
<defs
|
||||
id="defs9249">
|
||||
<linearGradient
|
||||
x1="-51.767601"
|
||||
y1="235.84129"
|
||||
x2="-51.767601"
|
||||
y2="253.84129"
|
||||
id="SVGID_12_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,-0.80292847,1022.6884)">
|
||||
<stop
|
||||
id="stop83"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop85"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-75.768997"
|
||||
y1="249.84129"
|
||||
x2="-75.768997"
|
||||
y2="265.84329"
|
||||
id="SVGID_11_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,-0.80292847,1022.6884)">
|
||||
<stop
|
||||
id="stop76"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop78"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-48.767601"
|
||||
y1="198.83839"
|
||||
x2="-48.767601"
|
||||
y2="220.8394"
|
||||
id="SVGID_10_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,-0.80292847,1022.6884)">
|
||||
<stop
|
||||
id="stop69"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop71"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-70.767601"
|
||||
y1="217.8394"
|
||||
x2="-70.767601"
|
||||
y2="237.84129"
|
||||
id="SVGID_9_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,-0.80292847,1022.6884)">
|
||||
<stop
|
||||
id="stop62"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop64"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-84.767601"
|
||||
y1="190.83839"
|
||||
x2="-84.767601"
|
||||
y2="214.8394"
|
||||
id="SVGID_8_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,-0.80292847,1022.6884)">
|
||||
<stop
|
||||
id="stop55"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop57"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-68.768997"
|
||||
y1="67.834"
|
||||
x2="-68.769096"
|
||||
y2="193.83791"
|
||||
id="SVGID_7_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,214.5,339.5771)">
|
||||
<stop
|
||||
id="stop48"
|
||||
style="stop-color:#252d42;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop50"
|
||||
style="stop-color:#485e82;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="421.94781"
|
||||
y1="169.6572"
|
||||
x2="421.94781"
|
||||
y2="191.8867"
|
||||
id="SVGID_13_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4379"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4381"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-51.767601"
|
||||
y1="235.84129"
|
||||
x2="-51.767601"
|
||||
y2="253.84129"
|
||||
id="SVGID_12_-6"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4372"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4374"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-75.768997"
|
||||
y1="249.84129"
|
||||
x2="-75.768997"
|
||||
y2="265.84329"
|
||||
id="SVGID_11_-6"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4365"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4367"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-48.767601"
|
||||
y1="198.83839"
|
||||
x2="-48.767601"
|
||||
y2="220.8394"
|
||||
id="SVGID_10_-9"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4358"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4360"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-70.767601"
|
||||
y1="217.8394"
|
||||
x2="-70.767601"
|
||||
y2="237.84129"
|
||||
id="SVGID_9_-9"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4351"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4353"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-84.767601"
|
||||
y1="190.83839"
|
||||
x2="-84.767601"
|
||||
y2="214.8394"
|
||||
id="SVGID_8_-1"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4344"
|
||||
style="stop-color:#2397d4;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4346"
|
||||
style="stop-color:#65e7ff;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-68.768997"
|
||||
y1="67.834"
|
||||
x2="-68.769096"
|
||||
y2="193.83791"
|
||||
id="SVGID_7_-5"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,214.5,339.5771)">
|
||||
<stop
|
||||
id="stop4337"
|
||||
style="stop-color:#252d42;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4339"
|
||||
style="stop-color:#485e82;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="421.94781"
|
||||
y1="87.412102"
|
||||
x2="421.94781"
|
||||
y2="161.147"
|
||||
id="SVGID_6_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4328"
|
||||
style="stop-color:#252d42;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4330"
|
||||
style="stop-color:#485e82;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="89.801804"
|
||||
y1="87.414101"
|
||||
x2="89.801804"
|
||||
y2="161.1479"
|
||||
id="SVGID_5_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4321"
|
||||
style="stop-color:#252d42;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4323"
|
||||
style="stop-color:#485e82;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="363.0806"
|
||||
y1="87.414101"
|
||||
x2="363.0806"
|
||||
y2="161.14841"
|
||||
id="SVGID_4_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4314"
|
||||
style="stop-color:#252d42;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4316"
|
||||
style="stop-color:#485e82;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="481.40869"
|
||||
y1="87.414101"
|
||||
x2="481.40869"
|
||||
y2="161.147"
|
||||
id="SVGID_3_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4307"
|
||||
style="stop-color:#252d42;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4309"
|
||||
style="stop-color:#485e82;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="191.85789"
|
||||
y1="87.414101"
|
||||
x2="191.85789"
|
||||
y2="161.147"
|
||||
id="SVGID_2_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1.2857964,0,0,-1.2857964,258.25103,1168.7191)">
|
||||
<stop
|
||||
id="stop4300"
|
||||
style="stop-color:#252d42;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4302"
|
||||
style="stop-color:#485e82;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="277.86081"
|
||||
y1="84.733398"
|
||||
x2="277.86081"
|
||||
y2="162.6368"
|
||||
id="SVGID_1_"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(1,0,0,-1,214.5,339.5771)">
|
||||
<stop
|
||||
id="stop4293"
|
||||
style="stop-color:#252d42;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop4295"
|
||||
style="stop-color:#485e82;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata9252">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
transform="translate(-125,-521.36748)"
|
||||
id="layer1"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<g
|
||||
transform="translate(-0.20803944,7.0000505)"
|
||||
id="g5423"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
d="m 177.89056,597.12767 h -0.01 c -6.6729,0 -12.10712,-5.42671 -12.11419,-12.09501 -0.01,-6.69051 5.42514,-12.12528 12.1041,-12.13236 6.68298,0 12.1162,5.42671 12.12426,12.09501 0,6.69052 -5.42512,12.1263 -12.10408,12.13337 v 0 z"
|
||||
id="path3042-0-6-4"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 210.60812,588.24494 c -6.23094,0 -11.30246,-5.06615 -11.30657,-11.29167 -0.01,-6.24198 5.06123,-11.31635 11.2963,-11.32148 6.23916,0 11.31068,5.0651 11.31683,11.29063 0,6.24197 -5.06224,11.31635 -11.29628,11.32252 h -0.01 z"
|
||||
id="path3056-6-4-1"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m -10,-15.700835 a 7,7 0 1 1 -14,0 7,7 0 1 1 14,0 z"
|
||||
transform="matrix(1.4421651,0,0,1.4421651,215.7232,578.60266)"
|
||||
id="path4104"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 94,-16.522263 a 11.5,11.5 0 1 1 -23,0 11.5,11.5 0 1 1 23,0 z"
|
||||
transform="matrix(0.80761247,0,0,0.80761247,140.73061,552.34319)"
|
||||
id="path4106"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 11,-37.522263 a 10.5,10.5 0 1 1 -21,0 10.5,10.5 0 1 1 21,0 z"
|
||||
transform="matrix(0.76915473,0,0,0.76915473,187.18756,551.30398)"
|
||||
id="path4132"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
<path
|
||||
d="M 143.92581,615.04098 C 133.47541,628.58646 125,643.82201 125,662.2789 c 0,40.00634 30.35843,73 68,73 37.64044,0 68,-32.99349 68,-73 0,-18.46054 -8.48889,-33.21199 -19.53017,-47.2379 -4.14024,-4.34463 -10.11757,-3.69864 -14.46899,-0.91856 -12.73296,6.58855 -19.60609,9.22094 -34.00084,9.15646 -13.92202,-0.0624 -21.23667,-2.33602 -33.97033,-9.27735 -4.35142,-2.65919 -10.96363,-3.3052 -15.10386,1.03943 z M 153,626.2789 c 13.19828,7.29754 24.96911,11 40,11 15.0436,0 26.79494,-3.70251 40,-11 7.2055,10.15985 14,22.7579 14,36 0,32.80129 -24.17531,59 -54,59 -29.82612,0 -55,-26.19854 -55,-59 0,-13.22462 7.77879,-25.8322 15,-36 z"
|
||||
id="path3347-1"
|
||||
style="color:#000000;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:medium;line-height:normal;font-family:Sans;-inkscape-font-specification:Sans;text-indent:0;text-align:start;text-decoration:none;text-decoration-line:none;letter-spacing:normal;word-spacing:normal;text-transform:none;writing-mode:lr-tb;direction:ltr;baseline-shift:baseline;text-anchor:start;display:inline;overflow:visible;visibility:visible;fill:#808080;fill-opacity:1;stroke:none;stroke-width:14;marker:none;enable-background:accumulate" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 13 KiB |
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24px"
|
||||
height="24px"
|
||||
viewBox="0 0 24 24"
|
||||
role="img"
|
||||
version="1.1"
|
||||
id="svg3858"
|
||||
sodipodi:docname="manjaro.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata3864">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs3862" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2554"
|
||||
inkscape:window-height="1601"
|
||||
id="namedview3860"
|
||||
showgrid="false"
|
||||
inkscape:zoom="37.625"
|
||||
inkscape:cx="12"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg3858" />
|
||||
<title
|
||||
id="title3854">Manjaro icon</title>
|
||||
<path
|
||||
d="M0 0v24h6.75V6.75h8.625V0H0zm8.625 8.625V24h6.75V8.625h-6.75zM17.25 0v24H24V0h-6.75z"
|
||||
id="path3856"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 1.6 KiB |
After Width: | Height: | Size: 17 KiB |
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24px"
|
||||
height="24px"
|
||||
viewBox="0 0 24 24"
|
||||
role="img"
|
||||
version="1.1"
|
||||
id="svg4673"
|
||||
sodipodi:docname="opensuse.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata4679">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs4677" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2635"
|
||||
inkscape:window-height="1457"
|
||||
id="namedview4675"
|
||||
showgrid="false"
|
||||
inkscape:zoom="37.625"
|
||||
inkscape:cx="5.2093023"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="754"
|
||||
inkscape:window-y="280"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg4673" />
|
||||
<title
|
||||
id="title4669">openSUSE icon</title>
|
||||
<path
|
||||
d="M21.51 8.107a.976.976 0 0 0-.708.264.993.993 0 0 0 .64 1.714.991.991 0 0 0 1.024-.954.992.992 0 0 0-.955-1.024zm.162 1.082c-.242 0-.438-.131-.438-.292 0-.163.196-.293.438-.293.243 0 .44.13.44.293 0 .16-.197.292-.44.292zm2.306 1.18c.007-.006.024-.02.022-.034-.055-.343-.565-2.004-.952-2.404-.106-.109-.191-.216-.364-.317-1.398-.814-4.713-1.306-4.869-1.328 0 0-.015-.004-.026.007-.009.008-.01.024-.01.024l-.015.764c-.339-.114-2.8-.91-5.108-.99C10.7 6.024 7.85 5.77 4.072 8.093l-.111.07C2.184 9.27.957 10.637.316 12.224c-.201.5-.472 1.628-.204 2.688.116.464.331.93.621 1.347.656.943 1.757 1.568 2.943 1.674 1.674.15 2.941-.602 3.392-2.01.31-.971 0-2.397-1.188-3.124-.967-.591-2.006-.457-2.609-.058-.523.347-.819.886-.814 1.477.012 1.05.917 1.608 1.567 1.61.189 0 .378-.033.592-.103a.921.921 0 0 0 .227-.1l.025-.015.015-.01-.005.003a.535.535 0 0 0 .217-.587.533.533 0 0 0-.612-.377l-.036.008-.05.015-.072.025c-.15.037-.262.04-.286.041-.076-.005-.45-.117-.45-.527v-.005c0-.151.06-.257.093-.314.117-.183.435-.362.866-.325.565.05.973.34 1.243.886.25.508.185 1.134-.17 1.592-.35.454-.976.647-1.809.557a2.48 2.48 0 0 1-1.946-1.327c-.389-.735-.41-1.607-.055-2.276.85-1.604 2.455-1.587 3.334-1.435 1.302.226 2.784 1.427 3.309 2.814.085.22.128.396.166.556l.057.24 1.47.718c.032.015.043.02.055.011.016-.011.007-.042.007-.042-.01-.033-.03-.063-.065-.475-.027-.365-.084-1.365.42-1.86.195-.195.492-.367.728-.423.964-.235 2.094-.073 3.163 1.164.553.64.823.93.959 1.061 0 0 .03.03.047.043.018.015.03.027.055.041.045.025 1.838.85 1.838.85s.022.011.037-.008c.016-.02.001-.038.001-.038-.012-.014-1.137-1.468-.937-2.665.158-.954.917-.867 1.967-.749.343.04.733.085 1.137.094 1.127.007 2.342-.201 3.09-.529.485-.21.794-.35.988-.526.07-.058.106-.152.143-.253l.027-.066c.031-.082.077-.254.097-.348.009-.042.018-.083-.016-.11-.032-.024-.104.02-.104.02-.329.198-1.15.573-1.919.589-.954.019-2.887-.966-3.087-1.07-.134-.32-.268-.639-.404-.957 1.383.911 2.53 1.415 3.408 1.492.977.088 1.74-.446 2.07-.668.043-.028.086-.06.126-.092zm-3.923-1.311c.014-.379.173-.73.45-.988a1.414 1.414 0 0 1 1.017-.38 1.423 1.423 0 0 1 1.37 1.468c-.015.379-.174.73-.45.987-.277.26-.638.394-1.019.381a1.424 1.424 0 0 1-1.368-1.468z"
|
||||
id="path4671"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 3.7 KiB |
|
@ -0,0 +1,57 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="24px"
|
||||
height="24px"
|
||||
viewBox="0 0 24 24"
|
||||
role="img"
|
||||
version="1.1"
|
||||
id="svg6025"
|
||||
sodipodi:docname="solus.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata6031">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs6029" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3263"
|
||||
inkscape:window-height="1536"
|
||||
id="namedview6027"
|
||||
showgrid="false"
|
||||
inkscape:zoom="37.625"
|
||||
inkscape:cx="5.2093023"
|
||||
inkscape:cy="12"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg6025" />
|
||||
<title
|
||||
id="title6021">Solus icon</title>
|
||||
<path
|
||||
d="M7.453 0c-.18.587-.369 1.167-.565 1.75A11.638 11.638 0 0 0 0 12.364a11.638 11.638 0 0 0 .516 3.403l-.339.598L0 16.73l.279.143a3.448 3.448 0 0 0 .741.222A11.638 11.638 0 0 0 2 18.868c4.034.343 8.55.512 12.446-.056 3.192-.463 5.94-1.423 7.735-3.117.252-.233.474-.474.674-.722.019-.038.037-.053.06-.076.011 0 .026-.037.038-.052.015 0 .03-.038.041-.057.008 0 .015-.038.023-.038.33-.444.587-.892.801-1.31l.181-.365-.365-.365a5.936 5.936 0 0 0-.361-.35A11.638 11.638 0 0 0 11.635.722a11.638 11.638 0 0 0-3.211.463C7.96.508 7.596.041 7.453 0zm.365 1.637C9.06 3.82 10.13 5.06 11.454 7.457c.132 1.524.67 9.45.727 10.181-.392-.037-2.485-.24-5.104-.515-1.43-.147-2.899-.316-4.092-.49l-1.9-.447c2.149-3.787 5.551-9.727 6.737-14.548zm4.543 6.18s4.991 3.927 7.092 8.73c-2.56 1.26-4.916 1.098-6.361 1.09 1.023-2.634 1.023-6.21-.73-9.82zm3.456 2.184a45.14 45.14 0 0 1 2.91.907c1.768.629 3.417 1.49 4.365 2.364a6.956 6.956 0 0 1-2.91 2.91c.151-1.495-.39-2.933-1.456-4.002-.787-.787-1.822-1.453-2.91-2.183zm6.707 6.478c-2.352 1.667-5.126 2.68-7.965 3.112a41.026 41.026 0 0 1-3.715.34h-.323a53.48 53.48 0 0 1-3.727 0 85.763 85.763 0 0 1-4.178-.23h-.003c2.555 3.255 6.993 4.893 11.092 4.102a11.367 11.367 0 0 0 4.498-1.852 11.638 11.638 0 0 0 .007 0c.312-.214.614-.444.903-.685a11.638 11.638 0 0 0 .038-.037 11.555 11.555 0 0 0 3.376-4.762zM2.511 19.584a11.638 11.638 0 0 0 .023.038c-.008 0-.015-.038-.023-.038z"
|
||||
id="path6023"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</svg>
|
After Width: | Height: | Size: 2.9 KiB |
|
@ -0,0 +1,120 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 60 60"
|
||||
style="enable-background:new 0 0 60 60;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="ubcd.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"><metadata
|
||||
id="metadata1034"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /><dc:title></dc:title></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs1032" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2017"
|
||||
inkscape:window-height="1409"
|
||||
id="namedview1030"
|
||||
showgrid="false"
|
||||
inkscape:zoom="10.641957"
|
||||
inkscape:cx="6.0648132"
|
||||
inkscape:cy="24.859284"
|
||||
inkscape:window-x="439"
|
||||
inkscape:window-y="174"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Capa_1"
|
||||
inkscape:document-rotation="0" />
|
||||
<g
|
||||
id="g997"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
d="M 30,0 C 13.458,0 0,13.458 0,30 0,46.542 13.458,60 30,60 46.542,60 60,46.542 60,30 60,13.458 46.542,0 30,0 Z m 0,58 C 14.561,58 2,45.439 2,30 2,14.561 14.561,2 30,2 45.439,2 58,14.561 58,30 58,45.439 45.439,58 30,58 Z"
|
||||
id="path991"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 30,22 c -4.411,0 -8,3.589 -8,8 0,4.411 3.589,8 8,8 4.411,0 8,-3.589 8,-8 0,-4.411 -3.589,-8 -8,-8 z m 0,14 c -3.309,0 -6,-2.691 -6,-6 0,-3.309 2.691,-6 6,-6 3.309,0 6,2.691 6,6 0,3.309 -2.691,6 -6,6 z"
|
||||
id="path993"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
d="m 30,16 c -7.72,0 -14,6.28 -14,14 0,7.72 6.28,14 14,14 7.72,0 14,-6.28 14,-14 0,-7.72 -6.28,-14 -14,-14 z m 0,26 c -6.617,0 -12,-5.383 -12,-12 0,-6.617 5.383,-12 12,-12 6.617,0 12,5.383 12,12 0,6.617 -5.383,12 -12,12 z"
|
||||
id="path995"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g999">
|
||||
</g>
|
||||
<g
|
||||
id="g1001">
|
||||
</g>
|
||||
<g
|
||||
id="g1003">
|
||||
</g>
|
||||
<g
|
||||
id="g1005">
|
||||
</g>
|
||||
<g
|
||||
id="g1007">
|
||||
</g>
|
||||
<g
|
||||
id="g1009">
|
||||
</g>
|
||||
<g
|
||||
id="g1011">
|
||||
</g>
|
||||
<g
|
||||
id="g1013">
|
||||
</g>
|
||||
<g
|
||||
id="g1015">
|
||||
</g>
|
||||
<g
|
||||
id="g1017">
|
||||
</g>
|
||||
<g
|
||||
id="g1019">
|
||||
</g>
|
||||
<g
|
||||
id="g1021">
|
||||
</g>
|
||||
<g
|
||||
id="g1023">
|
||||
</g>
|
||||
<g
|
||||
id="g1025">
|
||||
</g>
|
||||
<g
|
||||
id="g1027">
|
||||
</g>
|
||||
<rect
|
||||
style="opacity:1;fill:#808080;fill-opacity:1;stroke-width:2;stroke-linecap:square"
|
||||
id="rect914"
|
||||
width="56.440556"
|
||||
height="22.566467"
|
||||
x="2.0447357"
|
||||
y="35.984924" /><text
|
||||
xml:space="preserve"
|
||||
style="font-weight:bold;font-size:26.6667px;line-height:1.25;font-family:'Liberation Serif';-inkscape-font-specification:'Liberation Serif Bold';letter-spacing:0px"
|
||||
x="4.2200918"
|
||||
y="54.548431"
|
||||
id="text918"><tspan
|
||||
sodipodi:role="line"
|
||||
id="tspan916"
|
||||
x="4.2200918"
|
||||
y="54.548431"
|
||||
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:semi-condensed;font-size:20px;font-family:'DejaVu Sans';-inkscape-font-specification:'DejaVu Sans, Semi-Condensed';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-variant-east-asian:normal;fill:#b3b3b3">UBCD</tspan></text></svg>
|
After Width: | Height: | Size: 3.5 KiB |
|
@ -0,0 +1,85 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
height="256"
|
||||
width="256"
|
||||
version="1.1"
|
||||
viewBox="0 0 256 256"
|
||||
id="svg9108"
|
||||
sodipodi:docname="ubuntu-budgie.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<defs
|
||||
id="defs9112" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2694"
|
||||
inkscape:window-height="1538"
|
||||
id="namedview9110"
|
||||
showgrid="false"
|
||||
inkscape:zoom="3.5273438"
|
||||
inkscape:cx="55.565892"
|
||||
inkscape:cy="128"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="svg9108"
|
||||
inkscape:document-rotation="0" />
|
||||
<title
|
||||
id="title9097">budgie-remix Logo</title>
|
||||
<metadata
|
||||
id="metadata9099">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>budgie-remix Logo</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>HEXcube and Joshua "Foggalong" Fogg</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<cc:license
|
||||
rdf:resource="http://creativecommons.org/licenses/by-sa/4.0/" />
|
||||
<dc:source>Budgie Logo by Yuri Henrique</dc:source>
|
||||
<dc:description>Official logo for budgie-remix</dc:description>
|
||||
</cc:Work>
|
||||
<cc:License
|
||||
rdf:about="http://creativecommons.org/licenses/by-sa/4.0/">
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Reproduction" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#Distribution" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Notice" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#Attribution" />
|
||||
<cc:permits
|
||||
rdf:resource="http://creativecommons.org/ns#DerivativeWorks" />
|
||||
<cc:requires
|
||||
rdf:resource="http://creativecommons.org/ns#ShareAlike" />
|
||||
</cc:License>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
id="circle9101"
|
||||
style="fill:#808080;fill-opacity:1"
|
||||
d="M 127.67578 0 A 128 128 0 0 0 0 128 A 128 128 0 0 0 128 256 A 128 128 0 0 0 256 128 A 128 128 0 0 0 128 0 A 128 128 0 0 0 127.67578 0 z M 163.95508 19.253906 C 167.55645 19.296409 170.71596 19.772264 174.41602 20.380859 C 189.83218 22.91657 205.48692 34.201662 214.98242 50.648438 C 227.79192 72.83526 224.92295 99.580203 210.30469 114.54883 C 202.96097 122.06862 200.76508 122.47611 195.9668 125.71289 C 199.23702 120.55703 200.24523 118.56619 200.24023 114.29688 C 200.23619 111.61856 199.39207 109.42597 198.9082 108.19336 C 197.04928 103.45798 193.74698 101.47948 189.89062 99.195312 C 185.15061 96.387756 179.67446 95.525903 176.23047 95.533203 C 173.55953 95.538813 172.18394 95.547566 168.66797 96.435547 C 152.01173 100.6422 133.83073 94.096601 125.05273 78.892578 L 125.05664 78.894531 C 114.56314 60.71916 121.16089 37.259132 139.83203 26.486328 C 145.33136 23.313387 151.78346 20.270166 157.79102 19.585938 C 159.44173 19.397951 160.95329 19.296908 162.38086 19.263672 C 162.9162 19.251208 163.4406 19.247834 163.95508 19.253906 z M 65.439453 62.181641 C 68.756637 62.224118 72.02971 62.640566 75.197266 63.449219 C 85.38147 66.049128 86.83482 67.746188 92.037109 70.283203 C 85.936887 70.029068 83.706363 70.151705 80.011719 72.291016 C 77.694264 73.633685 76.218111 75.458791 75.392578 76.494141 C 72.221101 80.471718 72.157382 84.322913 72.107422 88.804688 C 72.046042 94.313444 74.039289 99.4859 75.767578 102.46484 C 77.107917 104.77513 77.803066 105.96158 80.330078 108.5625 C 92.301322 120.88385 95.723313 139.90145 86.945312 155.10547 L 86.945312 155.10156 C 76.451814 173.27693 52.835065 179.29491 34.169922 168.51172 C 28.672397 165.33566 22.81316 161.26877 19.216797 156.4082 C 15.264137 151.06595 13.60777 146.95977 11.591797 141.61328 C 6.0796428 126.99467 8.0259847 107.79444 17.521484 91.347656 C 28.3295 72.627524 47.52666 61.952261 65.439453 62.181641 z M 172 150 L 171.99609 150.00195 C 192.98309 150.00195 210.00209 167.44595 209.99609 189.00195 C 209.99429 195.35095 209.40339 202.45911 206.99219 208.00391 C 204.34199 214.09811 201.61439 217.58481 197.99219 222.00391 C 188.08819 234.08681 170.48709 242.00195 151.49609 242.00195 C 125.87709 242.00195 104.15019 226.14595 98.496094 206.00195 C 95.655614 195.88225 96.400104 193.77575 95.996094 188.00195 C 98.826094 193.41195 100.04609 195.28211 103.74609 197.41211 C 106.06759 198.74775 108.38787 199.11329 109.69727 199.31055 C 114.72767 200.06835 118.0937 198.1976 122 196 C 126.8014 193.2988 130.2843 188.9862 132 186 C 133.3306 183.6841 134.01104 182.4889 135 179 C 139.685 162.472 154.444 150 172 150 z "
|
||||
inkscape:export-filename="/home/adam/Pictures/ubuntu.png"
|
||||
inkscape:export-xdpi="41.27"
|
||||
inkscape:export-ydpi="41.27" />
|
||||
</svg>
|
After Width: | Height: | Size: 5.3 KiB |
|
@ -0,0 +1,80 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="160"
|
||||
height="160"
|
||||
id="svg4275"
|
||||
version="1.1"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="ubuntu-mate.svg">
|
||||
<defs
|
||||
id="defs4277" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="5.6568542"
|
||||
inkscape:cx="153.42117"
|
||||
inkscape:cy="73.481466"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2160"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:snap-global="true"
|
||||
inkscape:snap-bbox="true"
|
||||
inkscape:bbox-nodes="true"
|
||||
inkscape:object-paths="true"
|
||||
inkscape:snap-intersection-paths="true"
|
||||
inkscape:snap-smooth-nodes="true"
|
||||
inkscape:snap-bbox-edge-midpoints="true"
|
||||
inkscape:snap-bbox-midpoints="true"
|
||||
inkscape:bbox-paths="true"
|
||||
inkscape:document-rotation="0">
|
||||
<inkscape:grid
|
||||
type="xygrid"
|
||||
id="grid4292"
|
||||
empspacing="4"
|
||||
visible="true"
|
||||
enabled="true"
|
||||
snapvisiblegridlinesonly="true" />
|
||||
</sodipodi:namedview>
|
||||
<metadata
|
||||
id="metadata4280">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(0,-892.36218)">
|
||||
<g
|
||||
id="g3769">
|
||||
<path
|
||||
id="path3171-7-3-3-8-7-0-9-6"
|
||||
style="fill:#808080;fill-opacity:1"
|
||||
d="M 79.998047,8 C 40.233307,8 8,40.236203 8,80.001953 8,119.76519 40.23526,152 80,152 119.76423,152 152,119.76469 152,80.001953 152,40.236203 119.76228,8 79.998047,8 Z M 92.03125,27.46875 120,44 92,60.53125 Z M 80,35.96875 c 2.051262,0 4.057071,0.163485 6.03125,0.4375 v 6.125 c -1.963282,-0.317574 -3.973993,-0.5 -6.03125,-0.5 -15.993149,0 -29.670521,9.801444 -35.28125,23.75 l -5.1875,-3.0625 C 46.267386,47.015665 61.869052,35.96875 80,35.96875 Z m 0,14.96875 c 2.053936,0 4.061579,0.244498 6,0.65625 v 6.21875 c -1.912984,-0.511429 -3.923275,-0.78125 -6,-0.78125 -10.503086,0 -19.272007,6.979296 -22.03125,16.5625 l -5.375,-3.1875 C 56.569753,59.093199 67.370826,50.9375 80,50.9375 Z m 35.3125,2.78125 c 5.47659,7.342284 8.71875,16.446943 8.71875,26.28125 0,9.987567 -3.36614,19.225062 -9,26.625 l -5.21875,-3.09375 c 5.10653,-6.464407 8.15625,-14.624736 8.15625,-23.53125 0,-8.739244 -2.94013,-16.78168 -7.875,-23.1875 z m -13.03125,7.71875 c 4.21933,5.046685 6.78125,11.512765 6.78125,18.5625 0,7.209001 -2.6717,13.841271 -7.0625,18.9375 l -5.34375,-3.15625 c 3.90619,-4.102289 6.3125,-9.629445 6.3125,-15.78125 0,-5.9771 -2.26071,-11.391214 -5.96875,-15.46875 z m -73.25,2.03125 L 57,80 29,96.53125 Z m 28.9375,22.9375 C 60.727993,95.981891 69.496914,102.9375 80,102.9375 c 2.077118,0 4.086506,-0.27874 6,-0.78125 v 6.25 c -1.938421,0.41175 -3.946064,0.65625 -6,0.65625 -12.638918,0 -23.438651,-8.17316 -27.40625,-19.5 z m -13.25,7.8125 c 5.610729,13.94855 19.288101,23.75 35.28125,23.75 2.037303,0 4.022609,-0.16164 5.96875,-0.46875 v 6.09375 c -1.950546,0.27129 -3.942047,0.4375 -5.96875,0.4375 -18.130948,0 -33.732614,-11.04691 -40.46875,-26.75 z M 92,100 l 27.96875,16.5 -28,16.53125 z"
|
||||
transform="translate(0,892.36218)" />
|
||||
</g>
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.9 KiB |
|
@ -0,0 +1,151 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Capa_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 493.423 493.423"
|
||||
style="enable-background:new 0 0 493.423 493.423;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="ubuntu.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"><metadata
|
||||
id="metadata6099"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs6097" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2851"
|
||||
inkscape:window-height="1472"
|
||||
id="namedview6095"
|
||||
showgrid="false"
|
||||
inkscape:zoom="1.8300728"
|
||||
inkscape:cx="107.09957"
|
||||
inkscape:cy="246.7115"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Capa_1" />
|
||||
<g
|
||||
id="ubuntu"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<g
|
||||
id="g6037"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<g
|
||||
id="g6035"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
d="m 168.839,241.198 c 0,-38.117 17.894,-72.05 45.685,-93.896 L 171.988,79.22 c -35.648,25.603 -62.472,62.66 -75.127,105.796 19.811,12.751 32.949,35.031 32.949,60.353 0,24.424 -12.143,45.957 -30.783,58.918 13.606,40.86 40.12,75.838 74.706,100.113 l 39.559,-70.358 c -27.105,-21.838 -44.453,-55.318 -44.453,-92.844 z"
|
||||
id="path6033"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g6041"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
d="m 109.704,245.368 c 0,28.484 -23.132,51.592 -51.609,51.592 -28.491,0 -51.606,-23.107 -51.606,-51.592 0,-28.47 23.115,-51.577 51.606,-51.577 28.477,0 51.609,23.107 51.609,51.577 z"
|
||||
id="path6039"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g6047"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<g
|
||||
id="g6045"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
d="m 399.494,370.126 c 12.002,0 23.301,2.936 33.23,8.149 30.924,-32.591 50.906,-75.595 54.211,-123.228 l -80.148,-1.551 c -6.171,60.111 -56.954,106.941 -118.677,106.941 -17.084,0 -33.388,-3.594 -48.101,-10.093 l -39.841,69.704 c 26.56,13.069 56.376,20.411 87.941,20.411 13.622,0 26.981,-1.379 39.854,-4.006 2.746,-37.072 33.717,-66.327 71.531,-66.327 z"
|
||||
id="path6043"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g6051"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
d="m 451.071,441.847 c 0,28.478 -23.084,51.576 -51.577,51.576 -28.493,0 -51.594,-23.098 -51.594,-51.576 0,-28.5 23.101,-51.592 51.594,-51.592 28.493,0 51.577,23.092 51.577,51.592 z"
|
||||
id="path6049"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g6057"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<g
|
||||
id="g6055"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
d="m 438.211,110.152 c -11.677,8.269 -25.968,13.163 -41.399,13.163 -39.637,0 -71.73,-32.102 -71.73,-71.715 0,-2.104 0.094,-4.139 0.25,-6.181 -12.05,-2.307 -24.503,-3.491 -37.222,-3.491 -31.859,0 -61.988,7.498 -88.689,20.777 l 39.607,69.75 c 14.979,-6.748 31.593,-10.544 49.082,-10.544 61.177,0 111.601,46.074 118.491,105.414 l 80.147,-2.447 C 483.209,181.12 465.487,141.372 438.211,110.152 Z"
|
||||
id="path6053"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g6061"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
d="m 448.374,51.601 c 0,28.492 -23.038,51.592 -51.561,51.592 -28.491,0 -51.592,-23.1 -51.592,-51.592 C 345.22,23.107 368.321,0 396.812,0 c 28.523,0 51.562,23.107 51.562,51.601 z"
|
||||
id="path6059"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
</g>
|
||||
<g
|
||||
id="g6064">
|
||||
</g>
|
||||
<g
|
||||
id="g6066">
|
||||
</g>
|
||||
<g
|
||||
id="g6068">
|
||||
</g>
|
||||
<g
|
||||
id="g6070">
|
||||
</g>
|
||||
<g
|
||||
id="g6072">
|
||||
</g>
|
||||
<g
|
||||
id="g6074">
|
||||
</g>
|
||||
<g
|
||||
id="g6076">
|
||||
</g>
|
||||
<g
|
||||
id="g6078">
|
||||
</g>
|
||||
<g
|
||||
id="g6080">
|
||||
</g>
|
||||
<g
|
||||
id="g6082">
|
||||
</g>
|
||||
<g
|
||||
id="g6084">
|
||||
</g>
|
||||
<g
|
||||
id="g6086">
|
||||
</g>
|
||||
<g
|
||||
id="g6088">
|
||||
</g>
|
||||
<g
|
||||
id="g6090">
|
||||
</g>
|
||||
<g
|
||||
id="g6092">
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 4.4 KiB |
|
@ -0,0 +1,64 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
id="图层_1"
|
||||
data-name="图层 1"
|
||||
viewBox="0 0 91.080078 91.080086"
|
||||
version="1.1"
|
||||
sodipodi:docname="ubuntukylin.svg"
|
||||
width="91.080078"
|
||||
height="91.080086"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)">
|
||||
<metadata
|
||||
id="metadata12411">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3317"
|
||||
inkscape:window-height="1770"
|
||||
id="namedview12409"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:zoom="6.9644269"
|
||||
inkscape:cx="-16.387819"
|
||||
inkscape:cy="62.4779"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="图层_1"
|
||||
inkscape:document-rotation="0" />
|
||||
<defs
|
||||
id="defs12386">
|
||||
<style
|
||||
id="style12384">.cls-1{fill:#fff;}.cls-2{fill:#dd4814;}.cls-3,.cls-4{fill:#f9f9f9;}.cls-3{fill-rule:evenodd;}</style>
|
||||
</defs>
|
||||
<path
|
||||
id="circle12392"
|
||||
style="fill:#808080;fill-opacity:1"
|
||||
d="M 45.505858,3.0254722e-6 A 45.540001,45.540001 0 0 0 1.1333711e-8,45.539065 45.540001,45.540001 0 0 0 45.539058,91.080082 45.540001,45.540001 0 0 0 91.080078,45.539065 45.540001,45.540001 0 0 0 45.539058,3.0254721e-6 a 45.540001,45.540001 0 0 0 -0.0332,10e-14 z M 62.353518,10.761722 a 6.5999999,6.5999999 0 0 1 1.70898,0.205078 6.5999999,6.5999999 0 0 1 4.76563,8.025391 6.5999999,6.5999999 0 0 1 -8.02735,4.763671 6.5999999,6.5999999 0 0 1 -4.76367,-8.02539 6.5999999,6.5999999 0 0 1 6.31641,-4.96875 z m -16.78125,6.007812 a 28.88,28.88 0 0 1 0.25781,0 29.24,29.24 0 0 1 7.82031,1.070313 8.77,8.77 0 0 0 12.66992,7.390625 29,29 0 0 1 8.46875,18.40039 l -10.22851,0.138672 A 18.84,18.84 0 0 0 38.169918,28.599612 l -5.24023,-8.830078 a 28.88,28.88 0 0 1 12.64258,-3 z m -15.90235,4.910157 5.23047,8.791015 a 18.83,18.83 0 0 0 -0.26953,30.5 l -4.98047,8.910156 a 29,29 0 0 1 -11.999997,-17 8.78,8.78 0 0 0 0.08008,-14.460937 29.06,29.06 0 0 1 11.939457,-16.740234 z m 16.59961,8.480468 -1.53906,4.560547 0.85938,3.419922 -2.37891,3.240234 3.56836,2.619141 4.98047,2 3.54101,-1.869141 2.08008,-3.050781 3.41992,-1.050781 -0.64062,4.431641 -2.18946,0.769531 -1.61132,-0.310547 -2.88868,1.669922 0.16993,3.519531 1.43945,2.900391 -2.83008,2.589843 0.18945,2.179688 -3.91015,-0.0098 3.06055,-4.359375 -1.06055,-1.320312 -2.94922,2.310547 -0.0195,1.539062 -3.82031,-0.05859 2.48047,-2.271484 2.39843,-2.849609 -2.03906,-1.330078 -2.06055,1.060546 -2.79882,1.09961 -2.47071,-0.439423 -1.5,2.298828 -0.48047,3.339843 h -3.71875 l 2.66993,-3.148437 -0.79102,-1.871094 -0.60938,-3.689453 -1.92968,-4.75 3.5,-6.480469 3.25,-1.990234 3.41015,-3.449219 -0.96093,2.369141 0.51953,0.08008 z m -33.671872,8.863282 a 6.5999999,6.5999999 0 0 1 0.644532,0.02148 6.5999999,6.5999999 0 0 1 6.033203,7.123047 6.5999999,6.5999999 0 0 1 -7.121094,6.033203 6.5999999,6.5999999 0 0 1 -6.033203,-7.123047 6.5999999,6.5999999 0 0 1 6.476562,-6.054687 z m 62.232422,8.425781 a 28.89,28.89 0 0 1 -8.15039,18.630859 8.8,8.8 0 0 0 -12.94922,7.740234 29,29 0 0 1 -20.86133,-2 l 5,-8.919921 a 18.85,18.85 0 0 0 26.72071,-15.361329 z m -12.30469,19.730469 a 6.6,6.6 0 0 1 0.002,0 6.6,6.6 0 0 1 0.002,0 6.6,6.6 0 0 1 6.58985,6.599609 6.6,6.6 0 1 1 -6.59375,-6.599609 z" />
|
||||
</svg>
|
After Width: | Height: | Size: 4.1 KiB |
|
@ -0,0 +1,91 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
width="534.27728"
|
||||
height="535.35321"
|
||||
id="svg2"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="ubuntustudio.svg">
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2160"
|
||||
id="namedview3007"
|
||||
showgrid="false"
|
||||
fit-margin-top="10"
|
||||
fit-margin-left="10"
|
||||
fit-margin-right="10"
|
||||
fit-margin-bottom="10"
|
||||
inkscape:zoom="1.7571429"
|
||||
inkscape:cx="182.26666"
|
||||
inkscape:cy="320.61333"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
inkscape:current-layer="svg2"
|
||||
inkscape:document-rotation="0" />
|
||||
<title
|
||||
id="title14594">Ubuntu Studio v3</title>
|
||||
<defs
|
||||
id="defs4">
|
||||
<linearGradient
|
||||
id="linearGradient3927">
|
||||
<stop
|
||||
id="stop3929"
|
||||
style="stop-color:#000000;stop-opacity:1"
|
||||
offset="0" />
|
||||
<stop
|
||||
id="stop3931"
|
||||
style="stop-color:#525252;stop-opacity:1"
|
||||
offset="1" />
|
||||
</linearGradient>
|
||||
<linearGradient
|
||||
x1="-654.12848"
|
||||
y1="579.76819"
|
||||
x2="-654.12848"
|
||||
y2="402.60345"
|
||||
id="linearGradient3933"
|
||||
xlink:href="#linearGradient3927"
|
||||
gradientUnits="userSpaceOnUse"
|
||||
gradientTransform="matrix(0.94157008,0,0,1,-52.592035,0)" />
|
||||
</defs>
|
||||
<metadata
|
||||
id="metadata7">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title>Ubuntu Studio v3</dc:title>
|
||||
<dc:creator>
|
||||
<cc:Agent>
|
||||
<dc:title>Cory Kontros</dc:title>
|
||||
</cc:Agent>
|
||||
</dc:creator>
|
||||
<dc:description>New Ubuntu Studio logo based on the Ubuntu logo 1st used in Ubuntu 10.04.</dc:description>
|
||||
<dc:date>August 8th 2010</dc:date>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="fill:#808080;fill-opacity:1;stroke:none"
|
||||
id="path10060-3"
|
||||
d="M 267.13867,10 C 124.93166,10 10,124.93165 10,267.13867 c 0,142.20702 114.93166,258.21456 257.13867,258.21456 142.20702,0 257.13859,-116.00754 257.13859,-258.21456 C 524.27726,124.93165 409.34569,10 267.13867,10 z m 53.79466,39.808006 c 2.79222,-0.350526 5.73006,-0.80599 8.60719,0 38.3713,10.757914 71.1305,29.595929 98.98218,58.098304 2.42047,2.41351 4.32297,6.43199 5.37956,9.68308 2.01053,6.01946 0.84345,12.00079 -2.15181,17.21432 -1.7971,3.12953 -4.26014,5.58159 -7.5312,7.53125 -8.72325,5.19974 -19.95664,4.18548 -26.89742,-3.22595 -23.25962,-23.80328 -47.57096,-38.35519 -79.61609,-47.339425 -11.5092,-3.219007 -17.20707,-15.388509 -13.98664,-26.897233 2.41691,-8.632055 8.83745,-14.014558 17.21423,-15.062633 z m -54.87047,66.705434 c 39.1346,0 77.8623,14.38461 107.58932,44.11179 59.45406,59.45399 59.45406,156.80023 0,216.25461 -59.45438,59.45436 -155.72466,59.45409 -215.17887,0 -5.33739,-5.18875 -8.34775,-13.2426 -6.45536,-20.44204 1.89372,-7.19926 7.86333,-12.09404 15.06255,-13.98651 7.19939,-1.89363 15.25329,0.0319 20.44198,5.37944 43.66174,43.66165 113.41894,43.66165 157.08059,0 43.66166,-43.66181 43.66166,-114.49473 0,-158.1564 -43.66165,-43.6618 -113.41885,-43.6618 -157.08059,0 -7.67205,8.44808 -20.60098,9.82377 -29.04917,2.15171 -8.44807,-7.67204 -9.82379,-21.67691 -2.1517,-30.12509 0.44398,-0.49305 1.65954,-0.62936 2.1517,-1.074 29.72718,-29.72718 68.45485,-44.11182 107.58955,-44.11182 z m 0,71.00904 c 20.79728,0 41.26022,7.90764 57.02233,23.66959 31.52447,31.52464 31.52447,83.59616 0,115.1208 -31.52464,31.52444 -82.52019,31.52444 -114.04482,0 -31.52448,-31.52464 -31.52448,-83.59616 0,-115.1208 15.76211,-15.76195 36.22514,-23.66959 57.02249,-23.66959 z m -195.812777,7.53124 c 3.607802,-0.0319 7.41359,0.34429 10.758889,2.15178 8.921212,4.85168 12.520352,14.9947 9.683112,24.74557 -8.61376,32.14658 -8.61376,60.3802 0,92.52698 3.09867,11.54246 -3.52032,22.72238 -15.062557,25.8213 -11.542527,3.0986 -23.798426,-3.52016 -26.897341,-15.06239 -10.314106,-38.4933 -10.314106,-75.55192 0,-114.04489 0.843605,-3.31193 3.122612,-6.04038 5.379549,-8.60713 4.151984,-4.80038 10.125768,-7.44989 16.138348,-7.53122 z m 65.629517,18.29022 c 4.38037,-0.44792 8.95214,0.80605 12.91076,3.22595 7.91719,4.84104 12.23769,14.74814 9.68295,23.66966 -5.47815,20.44478 -5.47815,36.57762 0,57.0225 2.95403,11.01541 -4.04706,22.86592 -15.06247,25.82125 -11.0154,2.95403 -21.7902,-4.04703 -24.74553,-15.06245 -7.103,-26.50824 -7.103,-52.03197 0,-78.54019 0.97126,-3.85397 2.47199,-8.05017 5.37952,-10.75891 3.38773,-3.1709 7.45449,-4.93257 11.83477,-5.37953 z m 130.18326,13.9867 c -10.53185,0 -20.93475,4.79617 -29.04921,12.91063 -16.229,16.22902 -16.229,41.86933 0,58.09823 16.22896,16.229 41.86931,16.229 58.09831,0 16.22895,-16.2289 16.22857,-41.86921 0,-58.09823 -8.11451,-8.11446 -18.51751,-12.91063 -29.0491,-12.91063 z m 140.94206,165.68764 c 4.73285,-0.64419 9.63551,0.60914 13.98657,3.22597 3.26383,1.9624 5.74578,4.39578 7.53121,7.53121 2.97469,5.22561 4.18758,12.27859 2.15187,18.29019 -1.07075,3.24662 -2.95058,6.20269 -5.3795,8.60721 -27.96428,28.39153 -60.56846,46.41666 -98.9822,57.02236 -11.5216,3.1743 -23.72242,-3.54066 -26.89733,-15.06255 -3.17433,-11.52157 3.54063,-22.6465 15.0625,-25.82142 32.0806,-8.85718 56.2621,-23.6288 79.61613,-47.33936 3.48517,-3.69282 8.17783,-5.81255 12.91075,-6.45533 z" />
|
||||
</svg>
|
After Width: | Height: | Size: 5.9 KiB |
|
@ -0,0 +1,107 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.1"
|
||||
id="Layer_1"
|
||||
x="0px"
|
||||
y="0px"
|
||||
viewBox="0 0 305 305"
|
||||
style="enable-background:new 0 0 305 305;"
|
||||
xml:space="preserve"
|
||||
sodipodi:docname="windows.svg"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"><metadata
|
||||
id="metadata10464"><rdf:RDF><cc:Work
|
||||
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
|
||||
id="defs10462" /><sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2911"
|
||||
inkscape:window-height="1457"
|
||||
id="namedview10460"
|
||||
showgrid="false"
|
||||
inkscape:zoom="2.9606557"
|
||||
inkscape:cx="152.5"
|
||||
inkscape:cy="152.5"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="Layer_1" />
|
||||
<g
|
||||
id="XMLID_108_"
|
||||
style="fill:#808080;fill-opacity:1">
|
||||
<path
|
||||
id="XMLID_109_"
|
||||
d="m 139.999,25.775 v 116.724 c 0,1.381 1.119,2.5 2.5,2.5 H 302.46 c 1.381,0 2.5,-1.119 2.5,-2.5 V 2.5 c 0,-0.726 -0.315,-1.416 -0.864,-1.891 -0.548,-0.475 -1.275,-0.687 -1.996,-0.583 L 142.139,23.301 c -1.229,0.179 -2.14,1.233 -2.14,2.474 z"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
id="XMLID_110_"
|
||||
d="m 122.501,279.948 c 0.601,0 1.186,-0.216 1.644,-0.616 0.544,-0.475 0.856,-1.162 0.856,-1.884 V 162.5 c 0,-1.381 -1.119,-2.5 -2.5,-2.5 H 2.592 c -0.663,0 -1.299,0.263 -1.768,0.732 -0.469,0.469 -0.732,1.105 -0.732,1.768 l 0.006,98.515 c 0,1.25 0.923,2.307 2.16,2.477 l 119.903,16.434 c 0.113,0.014 0.227,0.022 0.34,0.022 z"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
id="XMLID_138_"
|
||||
d="m 2.609,144.999 h 119.892 c 1.381,0 2.5,-1.119 2.5,-2.5 V 28.681 c 0,-0.722 -0.312,-1.408 -0.855,-1.883 -0.543,-0.475 -1.261,-0.693 -1.981,-0.594 L 2.164,42.5 C 0.923,42.669 -0.001,43.728 0,44.98 l 0.109,97.521 c 0.002,1.38 1.121,2.498 2.5,2.498 z"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
<path
|
||||
id="XMLID_169_"
|
||||
d="m 302.46,305 c 0.599,0 1.182,-0.215 1.64,-0.613 0.546,-0.475 0.86,-1.163 0.86,-1.887 l 0.04,-140 c 0,-0.663 -0.263,-1.299 -0.732,-1.768 C 303.799,160.263 303.163,160 302.5,160 H 142.499 c -1.381,0 -2.5,1.119 -2.5,2.5 v 117.496 c 0,1.246 0.918,2.302 2.151,2.476 l 159.961,22.504 c 0.117,0.016 0.233,0.024 0.349,0.024 z"
|
||||
style="fill:#808080;fill-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g10429">
|
||||
</g>
|
||||
<g
|
||||
id="g10431">
|
||||
</g>
|
||||
<g
|
||||
id="g10433">
|
||||
</g>
|
||||
<g
|
||||
id="g10435">
|
||||
</g>
|
||||
<g
|
||||
id="g10437">
|
||||
</g>
|
||||
<g
|
||||
id="g10439">
|
||||
</g>
|
||||
<g
|
||||
id="g10441">
|
||||
</g>
|
||||
<g
|
||||
id="g10443">
|
||||
</g>
|
||||
<g
|
||||
id="g10445">
|
||||
</g>
|
||||
<g
|
||||
id="g10447">
|
||||
</g>
|
||||
<g
|
||||
id="g10449">
|
||||
</g>
|
||||
<g
|
||||
id="g10451">
|
||||
</g>
|
||||
<g
|
||||
id="g10453">
|
||||
</g>
|
||||
<g
|
||||
id="g10455">
|
||||
</g>
|
||||
<g
|
||||
id="g10457">
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.2 KiB |
|
@ -0,0 +1,68 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
width="64"
|
||||
height="64"
|
||||
id="svg3681"
|
||||
version="1.1"
|
||||
inkscape:version="1.0.2 (e86c870879, 2021-01-15)"
|
||||
sodipodi:docname="xubuntu.svg"
|
||||
inkscape:export-filename="/data/knome/Open/Xubuntu/Logo/2017/icon-1024.png"
|
||||
inkscape:export-xdpi="1439.9995"
|
||||
inkscape:export-ydpi="1439.9995">
|
||||
<defs
|
||||
id="defs3683" />
|
||||
<sodipodi:namedview
|
||||
id="base"
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1.0"
|
||||
inkscape:pageopacity="0.0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:zoom="15.999999"
|
||||
inkscape:cx="30.221114"
|
||||
inkscape:cy="45.281182"
|
||||
inkscape:document-units="px"
|
||||
inkscape:current-layer="layer1"
|
||||
showgrid="false"
|
||||
fit-margin-top="0"
|
||||
fit-margin-left="0"
|
||||
fit-margin-right="0"
|
||||
fit-margin-bottom="0"
|
||||
inkscape:window-width="3840"
|
||||
inkscape:window-height="2160"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="0"
|
||||
inkscape:window-maximized="1"
|
||||
showguides="false"
|
||||
inkscape:document-rotation="0" />
|
||||
<metadata
|
||||
id="metadata3686">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title />
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<g
|
||||
inkscape:label="Layer 1"
|
||||
inkscape:groupmode="layer"
|
||||
id="layer1"
|
||||
transform="translate(-501.31203,-494.03164)">
|
||||
<path
|
||||
id="path12878"
|
||||
style="fill:#808080;fill-opacity:1;stroke:none"
|
||||
d="M 32,0 A 32,32 0 0 0 0,32 32,32 0 0 0 32,64 32,32 0 0 0 64,32 32,32 0 0 0 32,0 Z m 10.53125,11.931641 c 0.890666,0.162019 0.28583,4.367718 0.04687,6.925781 -0.21626,2.31514 -0.336731,3.077732 -0.769531,5.632812 -0.13599,0.80282 -0.535633,1.831064 -1.783203,1.683594 -1.04651,-0.13266 -1.214188,-1.855657 -1.179688,-2.654297 0.05928,-1.37137 0.808268,-4.711799 1.048828,-5.912109 0.30879,-1.54076 1.25069,-5.217514 2.4375,-5.652344 0.07321,-0.02683 0.139841,-0.03424 0.199219,-0.02344 z m 8.355469,1.896484 c 1.78484,-0.25644 -0.920377,4.578513 -2.003907,7.095703 -0.73652,1.71104 -1.264099,3.08144 -2.21875,5.34375 -0.31657,0.75019 -1.290415,1.829345 -2.416015,1.271484 -0.94446,-0.468079 -0.62091,-1.844353 0.0625,-3.439453 0.98427,-2.29735 1.793134,-3.832853 2.833984,-5.564453 0.80727,-1.3482 2.491058,-4.527271 3.742188,-4.707031 z m -24.603516,1.244141 c 0.83137,0.05836 1.52452,0.42434 2,1 2.05302,2.48559 1.619628,6.75184 1.798828,9.99414 3.20027,0.17413 5.84018,0.562344 9.25,1.558594 2.59873,0.75928 6.195004,2.030817 8.300781,3.398438 2.097972,1.36256 3.67185,3.1268 4,5.5 0.203621,1.472619 -0.915881,2.949518 -2.451171,4.298828 -1.53281,1.34712 -3.537479,2.613441 -5.699219,3.800781 -2.16069,1.18677 -4.407539,2.264169 -6.199219,3.099609 -3.90979,1.8231 -8.043041,3.599738 -13.113281,4.111328 -13.74646,1.38703 -12.246181,-11.087797 -11.712891,-15.210937 0.41542,-3.21185 2.134422,-7.845313 2.419922,-8.689453 -0.3742,-1.18856 -0.665681,-2.190788 -0.894531,-3.460938 -0.19444,-1.07917 -0.299293,-2.32313 -0.05078,-3.40039 0.24489,-1.06153 0.958845,-2.244542 2.140625,-2.738282 0.93681,-0.3914 1.62446,-0.236669 2.5,0.556641 0.72081,0.65311 1.325166,1.620543 1.910156,2.632813 0.84573,1.463449 1.190082,2.982189 1.914062,4.46875 0.13999,0.287319 0.863297,0.419685 1.285157,0.296874 0.09818,-0.02858 0.20649,-0.275106 0.15039,-0.466796 -0.92913,-3.17715 -1.593359,-5.80421 -1.130859,-8.09961 0.42933,-2.13077 2.245961,-2.59659 3.582031,-2.65039 z"
|
||||
transform="translate(501.31203,494.03164)" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 3.9 KiB |
After Width: | Height: | Size: 172 B |
After Width: | Height: | Size: 266 B |
After Width: | Height: | Size: 255 B |