feat: bake in light and dark icon theme
@ -67,10 +67,6 @@ using CoreMode = CoreProcess::Mode;
|
||||
using CoreConnectionState = CoreProcess::ConnectionState;
|
||||
using CoreProcessState = CoreProcess::ProcessState;
|
||||
|
||||
const auto kColorfulIconFile = ":/icons/128x128/tray.png";
|
||||
const auto kLightIconFile = ":/icons/128x128/tray-light.png";
|
||||
const auto kDarkIconFile = ":/icons/128x128/tray-dark.png";
|
||||
|
||||
MainWindow::MainWindow(ConfigScopes &configScopes, AppConfig &appConfig)
|
||||
: ui{std::make_unique<Ui::MainWindow>()},
|
||||
m_ConfigScopes(configScopes),
|
||||
@ -96,8 +92,13 @@ MainWindow::MainWindow(ConfigScopes &configScopes, AppConfig &appConfig)
|
||||
m_actionTestCriticalError{new QAction(tr("Test Critical Error"), this)},
|
||||
m_actionTestFatalError{new QAction(tr("Test Fatal Error"), this)}
|
||||
{
|
||||
ui->setupUi(this);
|
||||
const auto themeName = QStringLiteral("deskflow-%1").arg(iconMode());
|
||||
if (QIcon::themeName().isEmpty())
|
||||
QIcon::setThemeName(themeName);
|
||||
else
|
||||
QIcon::setFallbackThemeName(themeName);
|
||||
|
||||
ui->setupUi(this);
|
||||
// Setup Actions
|
||||
m_actionAbout->setText(tr("About %1...").arg(kAppName));
|
||||
m_actionAbout->setMenuRole(QAction::AboutRole);
|
||||
@ -624,18 +625,18 @@ void MainWindow::saveSettings()
|
||||
|
||||
void MainWindow::setIcon()
|
||||
{
|
||||
#ifdef Q_OS_MAC
|
||||
QIcon icon;
|
||||
if (appConfig().colorfulTrayIcon())
|
||||
icon.addFile(kColorfulIconFile);
|
||||
else {
|
||||
icon.addFile(kDarkIconFile);
|
||||
icon.setIsMask(true);
|
||||
// Using a theme icon that is packed in exe renders an invisible icon
|
||||
// Instead use the resource path of the packed icon
|
||||
// TODO Report to Qt ref the bug here
|
||||
QString iconString = QStringLiteral(":/icons/deskflow-%1/apps/64/deskflow").arg(iconMode());
|
||||
if (!appConfig().colorfulTrayIcon()) {
|
||||
iconString.append(QStringLiteral("-symbolic"));
|
||||
}
|
||||
#else
|
||||
QIcon icon(appConfig().colorfulTrayIcon() ? kColorfulIconFile : isDarkMode() ? kDarkIconFile : kLightIconFile);
|
||||
m_trayIcon->setIcon(QIcon(iconString));
|
||||
#ifdef Q_OS_MAC
|
||||
if (!appConfig().colorfulTrayIcon())
|
||||
m_trayIcon->icon().setIsMask(true);
|
||||
#endif
|
||||
m_trayIcon->setIcon(icon);
|
||||
}
|
||||
|
||||
void MainWindow::handleLogLine(const QString &line)
|
||||
@ -776,6 +777,7 @@ void MainWindow::updateStatus()
|
||||
const auto connection = m_CoreProcess.connectionState();
|
||||
const auto process = m_CoreProcess.processState();
|
||||
|
||||
ui->lblConnectionSecurityStatus->setVisible(false);
|
||||
switch (process) {
|
||||
using enum CoreProcessState;
|
||||
|
||||
@ -812,6 +814,7 @@ void MainWindow::updateStatus()
|
||||
break;
|
||||
|
||||
case Connected: {
|
||||
ui->lblConnectionSecurityStatus->setVisible(true);
|
||||
if (m_SecureSocket) {
|
||||
setStatus(tr("%1 is connected (with %2)").arg(kAppName, m_CoreProcess.secureSocketVersion()));
|
||||
} else {
|
||||
@ -967,9 +970,11 @@ void MainWindow::secureSocket(bool secureSocket)
|
||||
{
|
||||
m_SecureSocket = secureSocket;
|
||||
if (secureSocket) {
|
||||
ui->m_pLabelPadlock->show();
|
||||
ui->lblConnectionSecurityStatus->setToolTip(tr("Secure Connection"));
|
||||
ui->lblConnectionSecurityStatus->setPixmap(QIcon::fromTheme(QIcon::ThemeIcon::SecurityHigh).pixmap(QSize(32, 32)));
|
||||
} else {
|
||||
ui->m_pLabelPadlock->hide();
|
||||
ui->lblConnectionSecurityStatus->setToolTip(tr("Insecure Connection"));
|
||||
ui->lblConnectionSecurityStatus->setPixmap(QIcon::fromTheme(QIcon::ThemeIcon::SecurityLow).pixmap(QSize(32, 32)));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -522,7 +522,7 @@
|
||||
<enum>QLayout::SizeConstraint::SetDefaultConstraint</enum>
|
||||
</property>
|
||||
<item>
|
||||
<widget class="QLabel" name="m_pLabelPadlock">
|
||||
<widget class="QLabel" name="lblConnectionSecurityStatus">
|
||||
<property name="enabled">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
@ -541,12 +541,6 @@
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="pixmap">
|
||||
<pixmap resource="../res/deskflow.qrc">:/icons/64x64/padlock.png</pixmap>
|
||||
</property>
|
||||
<property name="scaledContents">
|
||||
<bool>true</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
@ -654,8 +648,6 @@
|
||||
<tabstop>btnApplySettings</tabstop>
|
||||
<tabstop>btnToggleCore</tabstop>
|
||||
</tabstops>
|
||||
<resources>
|
||||
<include location="../res/deskflow.qrc"/>
|
||||
</resources>
|
||||
<resources/>
|
||||
<connections/>
|
||||
</ui>
|
||||
|
||||
@ -34,14 +34,13 @@ AboutDialog::AboutDialog(QWidget *parent) : QDialog(parent), ui{std::make_unique
|
||||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
auto copyIcon = QIcon::fromTheme(
|
||||
QIcon::ThemeIcon::EditCopy, deskflow::gui::isDarkMode() ? QIcon(s_darkCopy) : QIcon(s_lightCopy)
|
||||
);
|
||||
ui->lblIcon->setFixedSize(fontMetrics().height() * 6, fontMetrics().height() * 6);
|
||||
ui->lblIcon->setPixmap(QPixmap(QStringLiteral(":/icons/128x128/tray.png"))
|
||||
.scaledToWidth(fontMetrics().height() * 6, Qt::SmoothTransformation));
|
||||
const int px = (fontMetrics().height() * 6);
|
||||
const QSize pixmapSize(px, px);
|
||||
ui->lblIcon->setFixedSize(pixmapSize);
|
||||
|
||||
ui->btnCopyVersion->setIcon(copyIcon);
|
||||
ui->lblIcon->setPixmap(QPixmap(QIcon::fromTheme("deskflow").pixmap(QSize().scaled(pixmapSize, Qt::KeepAspectRatio))));
|
||||
|
||||
ui->btnCopyVersion->setIcon(QIcon::fromTheme(QIcon::ThemeIcon::EditCopy));
|
||||
connect(ui->btnCopyVersion, &QPushButton::clicked, this, &AboutDialog::copyVersionText);
|
||||
|
||||
// Set up the displayed version number
|
||||
|
||||
@ -45,9 +45,8 @@ ServerConfigDialog::ServerConfigDialog(QWidget *parent, ServerConfig &config, Ap
|
||||
{
|
||||
ui->setupUi(this);
|
||||
|
||||
const auto folderIcon =
|
||||
QIcon::fromTheme(QIcon::ThemeIcon::DocumentOpen, QIcon(QStringLiteral(":/icons/64x64/folder.png")));
|
||||
ui->m_pButtonBrowseConfigFile->setIcon(folderIcon);
|
||||
ui->m_pButtonBrowseConfigFile->setIcon(QIcon::fromTheme(QIcon::ThemeIcon::DocumentOpen));
|
||||
ui->m_pTrashScreenWidget->setPixmap(QIcon::fromTheme("user-trash").pixmap(QSize(64, 64)));
|
||||
|
||||
// force the first tab, since qt creator sets the active tab as the last one
|
||||
// the developer was looking at, and it's easy to accidentally save that.
|
||||
|
||||
@ -70,9 +70,6 @@
|
||||
<property name="text">
|
||||
<string/>
|
||||
</property>
|
||||
<property name="pixmap">
|
||||
<pixmap>:/icons/64x64/user-trash.png</pixmap>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
|
||||
@ -46,10 +46,8 @@ SettingsDialog::SettingsDialog(
|
||||
|
||||
ui->setupUi(this);
|
||||
|
||||
const auto folderIcon =
|
||||
QIcon::fromTheme(QIcon::ThemeIcon::DocumentOpen, QIcon(QStringLiteral(":/icons/64x64/folder.png")));
|
||||
ui->m_pPushButtonTlsCertPath->setIcon(folderIcon);
|
||||
ui->m_pButtonBrowseLog->setIcon(folderIcon);
|
||||
ui->m_pPushButtonTlsCertPath->setIcon(QIcon::fromTheme(QIcon::ThemeIcon::DocumentOpen));
|
||||
ui->m_pButtonBrowseLog->setIcon(QIcon::fromTheme(QIcon::ThemeIcon::DocumentOpen));
|
||||
|
||||
// force the first tab, since qt creator sets the active tab as the last one
|
||||
// the developer was looking at, and it's easy to accidentally save that.
|
||||
@ -245,11 +243,7 @@ void SettingsDialog::loadFromConfig()
|
||||
ui->rb_icon_colorful->setChecked(true);
|
||||
else
|
||||
ui->rb_icon_mono->setChecked(true);
|
||||
|
||||
ui->rb_icon_mono->setIcon(
|
||||
isDarkMode() ? QIcon(QStringLiteral(":/icons/128x128/tray-dark.png"))
|
||||
: QIcon(QStringLiteral(":/icons/128x128/tray-light.png"))
|
||||
);
|
||||
ui->rb_icon_mono->setIcon(QIcon(QStringLiteral(":/icons/deskflow-%1/apps/64/deskflow-symbolic").arg(iconMode())));
|
||||
|
||||
updateTlsControls();
|
||||
}
|
||||
|
||||
@ -176,7 +176,7 @@
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../../res/deskflow.qrc">
|
||||
<normaloff>:/icons/128x128/tray.png</normaloff>:/icons/128x128/tray.png</iconset>
|
||||
<normaloff>:/icons/common/deskflow.svg</normaloff>:/icons/common/deskflow.svg</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
@ -187,7 +187,7 @@
|
||||
</property>
|
||||
<property name="icon">
|
||||
<iconset resource="../../res/deskflow.qrc">
|
||||
<normaloff>:/icons/128x128/tray-dark.png</normaloff>:/icons/128x128/tray-dark.png</iconset>
|
||||
<normaloff>:/icons/deskflow-dark/apps/64/deskflow-symbolic.svg</normaloff>:/icons/deskflow-dark/apps/64/deskflow-symbolic.svg</iconset>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
|
||||
@ -27,6 +27,7 @@
|
||||
#include "gui/dotenv.h"
|
||||
#include "gui/messages.h"
|
||||
#include "gui/string_utils.h"
|
||||
#include "gui/style_utils.h"
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDebug>
|
||||
@ -118,6 +119,9 @@ int main(int argc, char *argv[])
|
||||
}
|
||||
#endif
|
||||
|
||||
// Sets the fallback icon path
|
||||
setIconFallbackPaths();
|
||||
|
||||
qInstallMessageHandler(deskflow::gui::messages::messageHandler);
|
||||
qInfo("%s v%s", kAppName, qPrintable(kVersion));
|
||||
|
||||
|
||||
@ -1,14 +1,50 @@
|
||||
<RCC>
|
||||
<qresource>
|
||||
<file>icons/64x64/copy-dark.png</file>
|
||||
<file>icons/64x64/copy-light.png</file>
|
||||
<file>icons/64x64/folder.png</file>
|
||||
<file>icons/64x64/padlock.png</file>
|
||||
<file>icons/64x64/user-trash.png</file>
|
||||
<file>icons/64x64/video-display.png</file>
|
||||
<file>icons/128x128/tray.png</file>
|
||||
<file>icons/128x128/tray-dark.png</file>
|
||||
<file>icons/128x128/tray-light.png</file>
|
||||
<qresource prefix="/">
|
||||
<file>icons/deskflow-dark/actions/16/edit-copy.svg</file>
|
||||
<file>icons/deskflow-dark/actions/16/document-open.svg</file>
|
||||
<file>icons/deskflow-dark/actions/22/edit-copy.svg</file>
|
||||
<file>icons/deskflow-dark/actions/22/document-open.svg</file>
|
||||
<file>icons/deskflow-dark/actions/24/edit-copy.svg</file>
|
||||
<file>icons/deskflow-dark/actions/24/document-open.svg</file>
|
||||
<file>icons/deskflow-dark/actions/32/dialog-cancel.svg</file>
|
||||
<file>icons/deskflow-dark/actions/32/dialog-ok.svg</file>
|
||||
<file>icons/deskflow-dark/actions/32/dialog-ok-apply.svg</file>
|
||||
<file>icons/deskflow-dark/actions/32/document-open.svg</file>
|
||||
<file>icons/deskflow-dark/apps/64/deskflow.svg</file>
|
||||
<file>icons/deskflow-dark/apps/64/deskflow-symbolic.svg</file>
|
||||
<file>icons/deskflow-dark/devices/64/video-display.svg</file>
|
||||
<file>icons/deskflow-dark/places/64/user-trash.svg</file>
|
||||
<file>icons/deskflow-dark/status/64/dialog-error.svg</file>
|
||||
<file>icons/deskflow-dark/status/64/dialog-information.svg</file>
|
||||
<file>icons/deskflow-dark/status/64/dialog-positive.svg</file>
|
||||
<file>icons/deskflow-dark/status/64/dialog-question.svg</file>
|
||||
<file>icons/deskflow-dark/status/64/dialog-warning.svg</file>
|
||||
<file>icons/deskflow-dark/status/64/security-high.svg</file>
|
||||
<file>icons/deskflow-dark/status/64/security-low.svg</file>
|
||||
<file>icons/deskflow-dark/status/64/security-medium.svg</file>
|
||||
<file>icons/deskflow-dark/index.theme</file>
|
||||
<file>icons/deskflow-light/actions/16/edit-copy.svg</file>
|
||||
<file>icons/deskflow-light/actions/16/document-open.svg</file>
|
||||
<file>icons/deskflow-light/actions/22/edit-copy.svg</file>
|
||||
<file>icons/deskflow-light/actions/22/document-open.svg</file>
|
||||
<file>icons/deskflow-light/actions/24/edit-copy.svg</file>
|
||||
<file>icons/deskflow-light/actions/24/document-open.svg</file>
|
||||
<file>icons/deskflow-light/actions/32/dialog-cancel.svg</file>
|
||||
<file>icons/deskflow-light/actions/32/dialog-ok.svg</file>
|
||||
<file>icons/deskflow-light/actions/32/dialog-ok-apply.svg</file>
|
||||
<file>icons/deskflow-light/actions/32/document-open.svg</file>
|
||||
<file>icons/deskflow-light/apps/64/deskflow.svg</file>
|
||||
<file>icons/deskflow-light/apps/64/deskflow-symbolic.svg</file>
|
||||
<file>icons/deskflow-light/devices/64/video-display.svg</file>
|
||||
<file>icons/deskflow-light/status/64/dialog-error.svg</file>
|
||||
<file>icons/deskflow-light/status/64/dialog-information.svg</file>
|
||||
<file>icons/deskflow-light/status/64/dialog-positive.svg</file>
|
||||
<file>icons/deskflow-light/status/64/dialog-question.svg</file>
|
||||
<file>icons/deskflow-light/status/64/dialog-warning.svg</file>
|
||||
<file>icons/deskflow-light/status/64/security-high.svg</file>
|
||||
<file>icons/deskflow-light/status/64/security-low.svg</file>
|
||||
<file>icons/deskflow-light/status/64/security-medium.svg</file>
|
||||
<file>icons/deskflow-light/index.theme</file>
|
||||
<file>image/placeholder.png</file>
|
||||
<file>image/welcome.png</file>
|
||||
</qresource>
|
||||
|
||||
|
Before Width: | Height: | Size: 4.2 KiB |
|
Before Width: | Height: | Size: 4.4 KiB |
|
Before Width: | Height: | Size: 8.4 KiB |
|
Before Width: | Height: | Size: 1.2 KiB |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 919 B |
|
Before Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 2.5 KiB |
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">.ColorScheme-Text { color: #fcfcfc; } </style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 3 2 L 3 14 L 6 14 L 6 13 L 4 13 L 4 3 L 9 3 L 9 6 L 12 6 L 12 8 L 13 8 L 13 5 L 10 2 L 9 2 L 3 2 z M 7 8 L 7 14 L 13 14 L 13 9 L 11 9 L 10 8 L 7 8 z M 8 10 L 12 10 L 12 13 L 8 13 L 8 10 z " class="ColorScheme-Text"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 522 B |
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg>
|
||||
<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style type="text/css" id="current-color-scheme">.ColorScheme-Text { color: #fcfcfc; } </style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" style="fill:currentColor; fill-opacity:1; stroke:none" d="M 3 2 L 3 12 L 6 12 L 6 14 L 14 14 L 14 7 L 11 4 L 10 4 L 8 2 L 3 2 Z M 4 3 L 7 3 L 7 4 L 6 4 L 6 11 L 4 11 L 4 3 Z M 7 5 L 10 5 L 10 8 L 13 8 L 13 13 L 7 13 L 7 5 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 525 B |
1
src/apps/res/icons/deskflow-dark/actions/16@2x
Symbolic link
@ -0,0 +1 @@
|
||||
16
|
||||
1
src/apps/res/icons/deskflow-dark/actions/16@3x
Symbolic link
@ -0,0 +1 @@
|
||||
16
|
||||
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">.ColorScheme-Text { color: #fcfcfc; } </style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 4 3 L 4 19 L 9 19 L 9 18 L 5 18 L 5 4 L 13 4 L 13 8 L 17 8 L 17 11 L 18 11 L 18 7 L 14 3 L 14 3 L 14 3 L 5 3 L 4 3 z M 10 12 L 10 19 L 18 19 L 18 13 L 15 13 L 14 12 L 14 12 L 14 12 L 10 12 z M 13.1 14 L 17 14 L 17 18 L 11 18 L 11 15 L 12 15 L 13.1 14 z " class="ColorScheme-Text"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 589 B |
@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE svg>
|
||||
<svg viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style type="text/css" id="current-color-scheme">.ColorScheme-Text { color: #fcfcfc; } </style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" style="fill:currentColor; fill-opacity:1; stroke:none" d="M 3 3 L 3 17 L 7 17 L 7 19 L 17 19 L 17 10 L 13 6 L 12 6 L 9 3 L 3 3 Z M 4 4 L 8 4 L 8 6 L 7 6 L 7 16 L 4 16 L 4 4 Z M 8 7 L 12 7 L 12 11 L 16 11 L 16 18 L 8 18 L 8 7 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 528 B |
1
src/apps/res/icons/deskflow-dark/actions/22@2x
Symbolic link
@ -0,0 +1 @@
|
||||
22
|
||||
1
src/apps/res/icons/deskflow-dark/actions/22@3x
Symbolic link
@ -0,0 +1 @@
|
||||
22
|
||||
@ -0,0 +1,8 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">.ColorScheme-Text { color: #fcfcfc; } </style>
|
||||
</defs>
|
||||
<g transform="translate(1,1)">
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 4 3 L 4 19 L 9 19 L 9 18 L 5 18 L 5 4 L 13 4 L 13 8 L 17 8 L 17 11 L 18 11 L 18 7 L 14 3 L 14 3 L 14 3 L 5 3 L 4 3 z M 10 12 L 10 19 L 18 19 L 18 13 L 15 13 L 14 12 L 14 12 L 14 12 L 10 12 z M 13.1 14 L 17 14 L 17 18 L 11 18 L 11 15 L 12 15 L 13.1 14 z " class="ColorScheme-Text"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 614 B |
13
src/apps/res/icons/deskflow-dark/actions/24/edit-copy.svg
Normal file
@ -0,0 +1,13 @@
|
||||
<!DOCTYPE svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" version="1.1" width="24" height="24">
|
||||
<defs>
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#eff0f1;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(1,1)">
|
||||
<path class="ColorScheme-Text" style="fill:currentColor; fill-opacity:1; stroke:none" d="M 3 3 L 3 17 L 7 17 L 7 19 L 17 19 L 17 10 L 13 6 L 12 6 L 9 3 L 3 3 Z M 4 4 L 8 4 L 8 6 L 7 6 L 7 16 L 4 16 L 4 4 Z M 8 7 L 12 7 L 12 11 L 16 11 L 16 18 L 8 18 L 8 7 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 592 B |
1
src/apps/res/icons/deskflow-dark/actions/24@2x
Symbolic link
@ -0,0 +1 @@
|
||||
24
|
||||
1
src/apps/res/icons/deskflow-dark/actions/24@3x
Symbolic link
@ -0,0 +1 @@
|
||||
24
|
||||
@ -0,0 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#eff0f1;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M16 4A12 12 0 0 0 7.886719 7.179688L7.885 7.178A12 12 0 0 0 7.847656 7.214844 12 12 0 0 0 4 16 12 12 0 0 0 16 28 12 12 0 0 0 24.11328 24.820312L24.12 24.822A12 12 0 0 0 24.15234 24.785156 12 12 0 0 0 28 16 12 12 0 0 0 16 4M16 5A11 11 0 0 1 27 16 11 11 0 0 1 24.11523 23.408203L8.592 7.885A11 11 0 0 1 16 5M7.885 8.592L23.408 24.12A11 11 0 0 1 16 27 11 11 0 0 1 5 16 11 11 0 0 1 7.884766 8.591797"
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 733 B |
@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><style type="text/css" id="current-color-scheme">.ColorScheme-Text{color:#eff0f1;}</style><path d="m30 6.5961948-19.303301 19.3032992-8.696699-8.696697.7071076-.707106 7.9895914 7.989592 18.596195-18.5961947z" style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text"/></svg>
|
||||
|
After Width: | Height: | Size: 355 B |
1
src/apps/res/icons/deskflow-dark/actions/32/dialog-ok.svg
Symbolic link
@ -0,0 +1 @@
|
||||
dialog-ok-apply.svg
|
||||
@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">.ColorScheme-Text { color: #fcfcfc; } </style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 6 4 L 6 28 L 13 28 L 13 27 L 7 27 L 7 5 L 18 5 L 18 12 L 25 12 L 25 16 L 26 16 L 26 11 L 19 4 L 18 4 L 6 4 z M 14 16 L 14 17 L 14 20 L 14 21 L 14 27 L 14 28 L 26 28 L 26 27 L 26 20 L 26 19 L 26 18 L 21 18 L 19 16 L 19 16 L 19 16 L 15 16 L 14 16 z M 15 17 L 18.6 17 L 19.6 18 L 19 18 L 19 18 L 19 18 L 17 20 L 15 20 L 15 17 z M 15 21 L 25 21 L 25 27 L 15 27 L 15 21 z " class="ColorScheme-Text"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 701 B |
1
src/apps/res/icons/deskflow-dark/actions/32@2x
Symbolic link
@ -0,0 +1 @@
|
||||
32
|
||||
1
src/apps/res/icons/deskflow-dark/actions/32@3x
Symbolic link
@ -0,0 +1 @@
|
||||
32
|
||||
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="400"
|
||||
viewBox="0 -960 16000 16000"
|
||||
width="400"
|
||||
fill="#e8eaed"
|
||||
version="1.1"
|
||||
id="svg58"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs62" />
|
||||
<g
|
||||
id="g312"
|
||||
transform="matrix(0.95521236,0,0,0.88584237,358.301,773.57086)">
|
||||
<path
|
||||
style="fill:#f2f2f2;fill-opacity:1;stroke-width:22.0314"
|
||||
d="m 10822.775,14277.69 c -1480.6355,-205.266 -2703.2156,-1149.093 -4024.7185,-1775.333 -745.9215,-412.95 -1640.7516,-671.66 -2479.9222,-411.91 -844.9777,264.031 -1378.4045,1001.612 -1991.5999,1582.679 -747.0662,380.92 -732.8666,-1875.959 -957.1362,-1286.712 396.2288,-871.302 1186.3232,-1519.256 1987.7363,-2012.518 1172.4366,-680.7295 2625.6591,-459.9056 3774.9177,151.009 1203.0592,540.157 2286.8972,1374.106 3578.5308,1696.524 888.521,187.313 1759.981,-291.864 2291.813,-984.522 293.133,-563.979 1138.577,-1336.7036 1564.647,-433.065 320.451,648.351 -932.467,2288.278 -494.032,1806.312 -768.024,1006.215 -1931.603,1805.177 -3250.236,1667.536 z"
|
||||
id="path3393" />
|
||||
<path
|
||||
style="fill:#f2f2f2;fill-opacity:1;stroke-width:26.9658"
|
||||
d="M 10691.975,9232.2954 C 8846.2487,8912.0018 7433.3401,7506.5916 5652.3423,7010.2615 4761.8774,6790.4246 3822.1342,7124.1431 3186.0428,7766.5861 2779.8147,8179.8677 2076.0345,9244.1299 1514.3929,8423.1235 1079.2106,7830.3042 2354.0198,6103.9484 1854.8774,6562.2615 2749.3313,5511.0149 4101.33,4683.576 5528.9402,4933.985 c 1825.4065,308.1723 3248.3604,1635.6508 4981.4158,2196.167 786.252,212.7419 1654.268,-19.2507 2198.637,-635.8586 489.708,-366.0972 693.581,-1248.5159 1405.833,-1192.9521 749.104,302.2549 726.809,1381.0589 243.424,1914.1731 -761.756,1116.6719 -1965.665,2136.6365 -3401.044,2036.4798 l -140.36,-6.6924 -124.875,-13.0105 z"
|
||||
id="path1767" />
|
||||
<path
|
||||
style="fill:#f2f2f2;fill-opacity:1;stroke-width:26.9658"
|
||||
d="M 10576.744,4172.4544 C 8781.32,3857.6985 7413.9341,2483.8453 5681.7925,2001.6118 4813.0936,1790.1465 3885.6762,2059.0545 3243.5441,2676.9291 2755.2378,3026.8587 2296.4145,4124.678 1601.3049,3504.7347 718.55095,2717.1148 2282.4679,796.203 1795.7242,1592.2603 2696.3129,485.67774 4095.5242,-387.1285 5571.7883,-103.57995 7431.0096,214.26172 8850.9468,1625.9548 10643.731,2118.8133 c 1007.057,248.4056 1967.172,-377.7119 2523.479,-1176.70049 225.605,-637.03713 1128.579,-1020.154865 1434.5,-217.3221 318.499,687.05509 -995.822,2368.70809 -558.726,1862.82939 -805.909,1049.9999 -2097.781,1861.9671 -3466.24,1584.8343 z"
|
||||
id="path970" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.6 KiB |
29
src/apps/res/icons/deskflow-dark/apps/64/deskflow.svg
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="128.00002"
|
||||
height="127.99999"
|
||||
viewBox="0 0 33.866671 33.866665"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
xml:space="preserve"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs1" /><g
|
||||
id="layer1"
|
||||
transform="translate(-32.279167,-138.64166)"><g
|
||||
style="fill:#e8eaed"
|
||||
id="g1"
|
||||
transform="matrix(0.00196863,0,0,0.00196863,33.463433,141.71593)"><g
|
||||
id="g312"
|
||||
transform="matrix(1.002973,0,0,0.93013448,-23.783992,460.24941)"><path
|
||||
style="fill:#3366cc;fill-opacity:1;stroke-width:22.0314"
|
||||
d="m 10822.775,14277.69 c -1195.5832,-143.508 -2220.2063,-841.148 -3268.3667,-1379.127 -718.8533,-355.301 -1431.1297,-838.976 -2251.4363,-896.085 -491.0057,-34.634 -993.9142,16.701 -1419.8658,282.946 -632.9097,323.689 -1041.4867,924.538 -1556.5718,1387.702 -543.283,324.938 -1024.416,-324.503 -999.9439,-831.854 -66.7515,-706.46 526.7775,-1215.106 971.4799,-1675.328 796.7042,-788.985 1908.9735,-1339.2985 3051.7899,-1198.3588 1348.2477,151.6528 2490.0786,954.1998 3671.9639,1551.7868 812.8473,430.368 1732.2728,937.309 2680.6698,656.999 865.182,-240.211 1345.317,-1049.536 1918.072,-1669.709 419.319,-369.53 999.56,99.027 1037.303,575.62 144.849,591.439 -228.81,1099.793 -584.858,1527.872 -674.991,878.758 -1646.404,1612.499 -2788.132,1678.492 -153.996,19.794 -308.698,6.257 -462.104,-10.956 z"
|
||||
id="path3393" /><path
|
||||
style="fill:#33b2cc;fill-opacity:1;stroke-width:26.9658"
|
||||
d="M 10691.975,9232.2954 C 9345.1884,8998.8534 8209.7623,8175.6727 7013.3992,7567.553 6317.9006,7189.0731 5542.8247,6853.4818 4732.6528,6969.3648 3791.0852,7073.1473 3096.3863,7808.0894 2511.2819,8487.0616 2153.4997,8962.5979 1492.1857,8662.9151 1369.9995,8151.7319 1161.0166,7603.1278 1417.243,7018.9363 1804.1792,6620.924 2646.9373,5624.9864 3867.0135,4790.8306 5227.0245,4902.123 c 1538.2424,122.1926 2802.7979,1096.8978 4150.0464,1747.2218 689.4831,373.3537 1480.8271,695.5213 2275.6811,498.2159 843.443,-225.4675 1355.155,-986.6873 1874.463,-1625.928 303.839,-429.2412 935.004,-202.6984 1073.134,247.0946 229.503,525.6439 50.159,1127.049 -311.918,1545.1618 -731.881,1031.1947 -1847.889,1971.3437 -3180.435,1938.7364 -138.853,1.6775 -278.273,-1.5834 -416.021,-20.3301 z"
|
||||
id="path1767" /><path
|
||||
style="fill:#33cc99;fill-opacity:1;stroke-width:26.9658"
|
||||
d="M 10576.744,4172.4544 C 8874.8637,3865.0547 7544.5841,2635.7395 5940.4635,2069.4233 5180.2383,1837.8115 4305.6379,1885.6382 3648.4341,2367.3105 c -522.046,315.7633 -870.3773,828.5536 -1307.695,1235.7633 -408.0241,287.6051 -882.8065,-100.3925 -976.5864,-516.0856 -207.011,-566.4578 84.2445,-1166.9024 491.559,-1564.2835 824.1797,-978.84256 2034.8379,-1776.07292 3363.7164,-1666.23087 1553.6459,128.553637 2838.511,1104.93638 4193.6746,1778.01277 748.5153,409.2855 1666.3233,736.8711 2500.3373,374.9559 742.862,-301.9425 1184.93,-1003.6082 1669.344,-1599.36398 390.513,-404.4477409 1011.637,22.50986 1078.781,494.20116 143.129,510.48212 -76.578,1022.79062 -407.346,1408.75032 -715.856,1002.3301 -1795.1,1907.7734 -3088.381,1906.4911 -197.264,2.2737 -394.6,-14.3348 -589.094,-47.0667 z"
|
||||
id="path970" /></g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg width="64" version="1.1" xmlns="http://www.w3.org/2000/svg" height="64" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
||||
<defs id="defs5455">
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4159">
|
||||
<stop style="stop-color:#2a2c2f" id="stop4161"/>
|
||||
<stop offset="1" style="stop-color:#424649" id="stop4163"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4250" xlink:href="#linearGradient4159" y1="536.79797" y2="503.798" gradientUnits="userSpaceOnUse" x2="0" gradientTransform="matrix(1.0833331 0 0 1.0909092 -34.04753 -49.799908)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4272" xlink:href="#linearGradient4303" y1="547.79797" y2="536.79797" gradientUnits="userSpaceOnUse" x2="0" gradientTransform="matrix(1.1666674 0 0 1.0909092 -68.09551 -49.799906)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4303">
|
||||
<stop style="stop-color:#c6cdd1" id="stop4305"/>
|
||||
<stop offset="1" style="stop-color:#e0e5e7" id="stop4307"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4591">
|
||||
<stop style="stop-color:#7e8f9e" id="stop4593"/>
|
||||
<stop offset="1" style="stop-color:#84ced5" id="stop4595"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4597-5" xlink:href="#linearGradient4591" y1="541.79797" y2="489.798" gradientUnits="userSpaceOnUse" x2="0" gradientTransform="matrix(1.0871079 0 0 1.1000002 -44.37026 -47.979912)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4681" xlink:href="#linearGradient4675" y1="535.79797" y2="522.79797" x1="394.57144" gradientUnits="userSpaceOnUse" x2="404.57144" gradientTransform="matrix(1.0999997 0 0 1.1428564 -49.45702 -70.68505)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4675">
|
||||
<stop style="stop-color:#e4a56d" id="stop4677"/>
|
||||
<stop offset="1" style="stop-color:#a7bd78" id="stop4679"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4689" xlink:href="#linearGradient4683" x1="404.57144" gradientUnits="userSpaceOnUse" x2="421.57144" gradientTransform="matrix(1.0795244 0 0 1.1428567 -41.17329 -70.68516)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4683">
|
||||
<stop style="stop-color:#c3a278" id="stop4685"/>
|
||||
<stop offset="1" style="stop-color:#6688aa" id="stop4687"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4728" xlink:href="#linearGradient4722" y1="536.79797" y2="524.79797" x1="430.57144" gradientUnits="userSpaceOnUse" x2="437.49963" gradientTransform="matrix(1.1078085 0 0 1.1428564 -53.44897 -70.68506)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4722">
|
||||
<stop style="stop-color:#6588af" id="stop4724"/>
|
||||
<stop offset="1" style="stop-color:#8ba8cd" id="stop4726"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4840" xlink:href="#linearGradient4834" x1="421.57144" gradientUnits="userSpaceOnUse" x2="438.57144" gradientTransform="matrix(1.0489857 0 0 1.1000002 -27.650967 -47.979911)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4834">
|
||||
<stop style="stop-color:#89ad8b" id="stop4836"/>
|
||||
<stop offset="1" style="stop-color:#82b3c7" id="stop4838"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4784" xlink:href="#linearGradient4778" y1="525.79797" y2="513.79797" x1="387.57144" gradientUnits="userSpaceOnUse" x2="401.57144" gradientTransform="matrix(1.0999997 0 0 1.2751426 -49.45702 -137.41797)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4778">
|
||||
<stop style="stop-color:#e1b16f" id="stop4780"/>
|
||||
<stop offset="1" style="stop-color:#99bf83" id="stop4782"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4792" xlink:href="#linearGradient4786" y1="510.798" y2="498.798" x1="404.57144" gradientUnits="userSpaceOnUse" x2="391.57144" gradientTransform="matrix(1.0999997 0 0 1.1000002 -49.45702 -47.979912)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4786">
|
||||
<stop style="stop-color:#99c487" id="stop4788"/>
|
||||
<stop offset="1" style="stop-color:#b4d99e" id="stop4790"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4808" xlink:href="#linearGradient4802" y1="501.798" y2="501.61618" x1="404.57144" gradientUnits="userSpaceOnUse" x2="421.57144" gradientTransform="matrix(1.1176469 0 0 1.1000002 -56.59659 -47.979912)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4802">
|
||||
<stop style="stop-color:#75d5c7" id="stop4804"/>
|
||||
<stop offset="1" style="stop-color:#66afb9" id="stop4806"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4776" xlink:href="#linearGradient4770" y1="495.798" y2="504.798" x1="428.57144" gradientUnits="userSpaceOnUse" x2="438.57144" gradientTransform="matrix(1.0489851 0 0 1.062501 -27.650709 -29.23788)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4770">
|
||||
<stop style="stop-color:#5c7b9e" id="stop4772"/>
|
||||
<stop offset="1" style="stop-color:#839dc0" id="stop4774"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4816" xlink:href="#linearGradient4810" x1="421.57144" gradientUnits="userSpaceOnUse" x2="406.57144" gradientTransform="matrix(1.0871079 0 0 1.1000002 -44.37026 -47.979912)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4810">
|
||||
<stop style="stop-color:#7fbcc6" id="stop4812"/>
|
||||
<stop offset="1" style="stop-color:#8ee4e3" id="stop4814"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4824" xlink:href="#linearGradient4818" x1="421.57144" gradientUnits="userSpaceOnUse" x2="436.57144" gradientTransform="matrix(1.0871079 0 0 1.1000002 -44.37026 -47.979912)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4818">
|
||||
<stop style="stop-color:#84d5d7" id="stop4820"/>
|
||||
<stop offset="1" style="stop-color:#84a8ba" id="stop4822"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<metadata id="metadata5458"/>
|
||||
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="matrix(1 0 0 1 -376.57144 -491.79797)">
|
||||
<path inkscape:connector-curvature="0" style="stroke-opacity:0.550265;fill:url(#linearGradient4272);stroke-width:2.8" id="rect4254" d="m 401.57143,535.79797 0,7.63636 0,2.18182 0,2.18182 14,0 0,-2.18182 0,-2.18182 0,-7.63636 z"/>
|
||||
<rect width="51.999989" x="382.57144" y="499.79797" height="39.27273" style="stroke-opacity:0.550265;fill:url(#linearGradient4250);stroke-width:2.8" id="rect4173"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4597-5)" id="path4589-5" d="m 384.57143,501.79798 0,33 47.83274,0 0,-33 -47.83274,0 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4681);fill-rule:evenodd" id="path4476-9" d="m 395.57143,518.79799 -11,9.41072 0,6.58927 11,0 0,-15.99999 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4689);fill-rule:evenodd" id="path4478-4" d="m 395.57143,519.798 0,14.99998 18.35191,0 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4728);fill-rule:evenodd" id="path4488-0-8" d="m 432.57143,518.79799 -19,15.99999 19,10e-6 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4840);fill-rule:evenodd" id="path4188-3" d="m 414.57143,528.19798 0,-24.39999 18,15 -18,15.99999 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4784);fill-rule:evenodd" id="path4192-6" d="m 384.57143,509.79799 0,21.00001 11,-11 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4792);fill-rule:evenodd" id="path4198-3" d="m 384.57143,501.79798 0,8.54219 11,9.45783 0,-7.00002 0,-11 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4808);fill-rule:evenodd" id="path4200-1" d="m 395.57143,501.79798 0,11 0,7.00002 19,-16.00001 -3,-2 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4776);fill-rule:evenodd" id="path4202-1" d="m 417.12013,501.79798 -2.5487,2.00001 18,15 0,-6 0,-11 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4816);fill-rule:evenodd" id="path4206-9-2" d="m 411.57143,501.79799 3,2 0,-2 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4824);fill-rule:evenodd" id="path4208-1-1" d="m 414.57143,501.79799 0,2 3,-2 z"/>
|
||||
<rect width="23.999969" x="396.57144" y="546.79797" height="1.00002" style="stroke-opacity:0.550265;fill:#99a1a7;stroke-width:2.8" id="rect4295"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.6 KiB |
177
src/apps/res/icons/deskflow-dark/index.theme
Normal file
@ -0,0 +1,177 @@
|
||||
[Icon Theme]
|
||||
Name=deskflow-dark
|
||||
|
||||
Comment=Striped down Breeze Dark by the KDE VDG
|
||||
|
||||
DisplayDepth=32
|
||||
|
||||
#Inherits=breeze-dark,hicolor
|
||||
|
||||
Example=folder
|
||||
|
||||
FollowsColorScheme=true
|
||||
|
||||
DesktopDefault=48
|
||||
DesktopSizes=16,22,32,48,64,128,256
|
||||
ToolbarDefault=22
|
||||
ToolbarSizes=16,22,32,48
|
||||
MainToolbarDefault=22
|
||||
MainToolbarSizes=16,22,32,48
|
||||
SmallDefault=16
|
||||
SmallSizes=16,22,32,48
|
||||
PanelDefault=48
|
||||
PanelSizes=16,22,32,48,64,128,256
|
||||
DialogDefault=32
|
||||
DialogSizes=16,22,32,48,64,128,256
|
||||
|
||||
KDE-Extensions=.svg
|
||||
|
||||
########## Directories
|
||||
########## ordered by category and alphabetically
|
||||
|
||||
Directories=actions/16,actions/22,actions/24,actions/32,apps/64,devices/64,places/64,status/64
|
||||
ScaledDirectories=actions/16@2x,actions/16@3x,actions/22@2x,actions/22@3x,actions/24@2x,actions/24@3x,actions/32@2x,actions/32@3x
|
||||
|
||||
[apps/64]
|
||||
Size=64
|
||||
Context=Applications
|
||||
Type=Scalable
|
||||
MinSize=22
|
||||
MaxSize=256
|
||||
|
||||
|
||||
########## Actions
|
||||
########## ordered by size
|
||||
|
||||
#16x16 - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/16]
|
||||
Size=16
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#16x16@2x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/16@2x]
|
||||
Size=16
|
||||
Scale=2
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#16x16@3x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/16@3x]
|
||||
Size=16
|
||||
Scale=3
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
|
||||
#22x22 - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/22]
|
||||
Size=22
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#22x22@2x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/22@2x]
|
||||
Size=22
|
||||
Scale=2
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#22x22@3x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/22@3x]
|
||||
Size=22
|
||||
Scale=3
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#24x24 - Fixed size - GTK icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/24]
|
||||
Size=24
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#24x24@2x - Fixed size - GTK icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/24@2x]
|
||||
Size=24
|
||||
Scale=2
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#24x24@3x - Fixed size - GTK icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/24@3x]
|
||||
Size=24
|
||||
Scale=3
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#32x32 - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/32]
|
||||
Size=32
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#32x32@2x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/32@2x]
|
||||
Size=32
|
||||
Scale=2
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#32x32@3x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/32@3x]
|
||||
Size=32
|
||||
Scale=3
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
########## Status
|
||||
########## ordered by size
|
||||
|
||||
#64x64 - Fixed size - For folder icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Color
|
||||
[places/64]
|
||||
Size=64
|
||||
Type=Scalable
|
||||
Context=Places
|
||||
MinSize=48
|
||||
MaxSize=256
|
||||
|
||||
|
||||
#64x64 - Fixed size - For dialog icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Color
|
||||
[status/64]
|
||||
Size=64
|
||||
Context=Status
|
||||
Type=Scalable
|
||||
MinSize=22
|
||||
MaxSize=256
|
||||
|
||||
#64x64 - Fixed size - For dialog icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Color
|
||||
[devices/64]
|
||||
Size=64
|
||||
Context=Devices
|
||||
Type=Scalable
|
||||
MinSize=22
|
||||
MaxSize=256
|
||||
11
src/apps/res/icons/deskflow-dark/places/64/user-trash.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">.ColorScheme-Accent { color: #3daee9; } .ColorScheme-Text { color: #fcfcfc; } </style>
|
||||
</defs>
|
||||
<path style="fill:#a7afb4" d="m 24,6 c -1,0 -2,1 -2,2 v 3 H 10 C 9,11 8,12 8,14.1 V 15 h 4 v 41.6 c 0,0.8 0.6,1.4 1.5,1.4 h 37 c 0.8,0 1.481226,-0.60022 1.5,-1.4 V 15 h 4 v -1 c 0,-2 -1,-3 -2,-3 H 42 V 8 C 42,7 41,6 40,6 Z m 1,3 h 14 v 2 H 25 Z"/>
|
||||
<path style="fill-opacity:0.33" d="M 18.5,19 C 17.6,19 17,19.6 17,20.4 v 33.2 c 0,0.8 0.6,1.4 1.5,1.4 0.9,0 1.5,-0.6 1.5,-1.4 V 20.4 C 20,19.6 19.331,19 18.5,19 Z m 9,0 C 26.6,19 26,19.6 26,20.4 v 33.2 c 0,0.8 0.6,1.4 1.5,1.4 0.9,0 1.5,-0.6 1.5,-1.4 V 20.4 C 29,19.6 28.331,19 27.5,19 Z m 9,0 C 35.6,19 35,19.6 35,20.4 v 33.2 c 0,0.8 0.6,1.4 1.5,1.4 0.9,0 1.5,-0.6 1.5,-1.4 V 20.4 C 38,19.6 37.331,19 36.5,19 Z m 9,0 C 44.6,19 44,19.6 44,20.4 v 33.2 c 0,0.8 0.6,1.4 1.5,1.4 0.9,0 1.5,-0.6 1.5,-1.4 V 20.4 C 47,19.6 46.331,19 45.5,19 Z"/>
|
||||
<path style="fill-opacity:0.33" d="m 12,55.5 v 1 c 0,0.8 0.6,1.5 1.5,1.5 h 37 c 0.8,0 1.5,-0.6 1.5,-1.5 v -1 c 0,0.8 -0.6,1.5 -1.5,1.5 h -37 C 12.7,57 12,56.4 12,55.5 Z"/>
|
||||
<path style="fill-opacity:0.33" d="M 24.75,8 C 24.05,8 24.015493,8.3 24,8.7 V 11 h 1 V 9 h 14 v 2 h 1 V 8.8 C 40,8.4 39.7,8 39.25,8 Z M 8,14 v 1 h 48 v -1 z"/>
|
||||
<path style="fill:#ffffff;fill-opacity:0.2" d="m 12,15 v 0.5 L 52,16 v -1 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
25
src/apps/res/icons/deskflow-dark/status/64/dialog-error.svg
Normal file
@ -0,0 +1,25 @@
|
||||
<svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.0377 9L8 22.1321V43.8679L21.1321 57H42.8679L56 42.9623V23.0377L42.8679 9H22.0377Z" fill="url(#paint0_linear_1700_19950)"/>
|
||||
<path d="M22.0377 9L8 22.1321V43.8679L21.1321 57H42.8679L56 42.9623V23.0377L42.8679 9H22.0377Z" fill="#000" fill-opacity=".2"/>
|
||||
<path d="M22.0377 8L8 21.1321V42.8679L21.1321 56H42.8679L56 41.9623V22.0377L42.8679 8H22.0377Z" fill="url(#paint1_linear_1700_19950)"/>
|
||||
<path d="M28 56L17 45L46 18L56 28V41.75L42.7 56H28Z" fill="url(#paint2_linear_1700_19950)" fill-opacity=".8"/>
|
||||
<path d="M27.7574 32L15.8787 43.8787L20.1213 48.1213L32 36.2426L43.8787 48.1213L48.1213 43.8787L36.2426 32L48.1213 20.1213L43.8787 15.8787L32 27.7573L20.1213 15.8787L15.8787 20.1213L27.7574 32Z" clip-rule="evenodd" fill="url(#paint3_linear_1700_19950)" fill-rule="evenodd"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1700_19950" x1="61.0769" x2="2.46154" y1="62.0769" y2="3.46154" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C61423" offset="0"/>
|
||||
<stop stop-color="#DC2B41" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1700_19950" x1="61.0769" x2="2.46154" y1="61.0769" y2="2.46154" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C61423" offset="0"/>
|
||||
<stop stop-color="#DC2B41" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1700_19950" x1="29.875" x2="48.875" y1="29.875" y2="48.875" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".3" offset="0"/>
|
||||
<stop stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1700_19950" x1="-1000.92" x2="-1000.92" y1="48.1213" y2="15.8787" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFF3F4" offset="0"/>
|
||||
<stop stop-color="#FFF9FA" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,25 @@
|
||||
<svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m32 59c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="url(#paint0_linear_1700_20037)"/>
|
||||
<path d="m32 59c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="#000" fill-opacity=".2"/>
|
||||
<path d="m32 58c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="url(#paint1_linear_1700_20037)"/>
|
||||
<path d="M37 57.9997L29 49.9996H34V26L29 21V15H35L57.5 37.4766C56.5 43 51.5 55 37 57.9997Z" clip-rule="evenodd" fill="url(#paint2_linear_1700_20037)" fill-rule="evenodd" opacity=".2"/>
|
||||
<path d="m29 15v6h6v-6h-6zm6 35v-25h-6v25h6z" clip-rule="evenodd" fill="url(#paint3_linear_1700_20037)" fill-rule="evenodd"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1700_20037" x2="64" y1="1" y2="65" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#20BCFA" offset="0"/>
|
||||
<stop stop-color="#197CF1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1700_20037" x2="64" y2="64" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#20BCFA" offset="0"/>
|
||||
<stop stop-color="#197CF1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1700_20037" x1="34" x2="53.1927" y1="29.3073" y2="48.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".6" offset="0"/>
|
||||
<stop stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1700_20037" x1="32.5" x2="32.5" y1="52" y2="12" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E3ECF5" offset="0"/>
|
||||
<stop stop-color="#fff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,25 @@
|
||||
<svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m32 59c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="url(#paint0_linear_1698_20544)"/>
|
||||
<path d="m32 59c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="#000" fill-opacity=".2"/>
|
||||
<path d="m32 58c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="url(#paint1_linear_1698_20544)"/>
|
||||
<path d="M57.9818 32.9818L45 20L22 43L36.227 57.6581C48.2618 55.6905 57.5186 45.4599 57.9818 32.9818Z" clip-rule="evenodd" fill="url(#paint2_linear_1698_20544)" fill-rule="evenodd" opacity=".2"/>
|
||||
<path d="m49 24-20.8787 21.1213-2.1213 1.8787-12-12 4-4 8 8 19-19 4 4z" clip-rule="evenodd" fill="url(#paint3_linear_1698_20544)" fill-rule="evenodd"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1698_20544" x1="-1.90735e-6" x2="64" y1="1" y2="65" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7ADC07" offset="0"/>
|
||||
<stop stop-color="#42A603" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1698_20544" x1="-1.90735e-6" x2="64" y1="1.90735e-6" y2="64" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7ADC07" offset="0"/>
|
||||
<stop stop-color="#42A603" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1698_20544" x1="32.7089" x2="49.2026" y1="33.4594" y2="52.7843" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".6" offset="0"/>
|
||||
<stop stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1698_20544" x1="-1256.02" x2="-1256.02" y1="46.7319" y2="17.5438" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EAFFDC" offset="0"/>
|
||||
<stop stop-color="#FAFFF5" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,25 @@
|
||||
<svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="33" r="26" fill="url(#paint0_linear_1700_19984)"/>
|
||||
<circle cx="32" cy="33" r="26" fill="#000" fill-opacity=".2"/>
|
||||
<circle cx="32" cy="32" r="26" fill="url(#paint1_linear_1700_19984)"/>
|
||||
<path d="m35.6041 57.7522-6.493-6.4929h4.8148v-4.8148l-4.8148-4.8149h1.9259v-5.7777l-11.5149-11.5149 12.4779-11.5963 11.0741 5.2963 14.327 19.5369c-2.3007 10.5332-10.9863 18.6792-21.797 20.1783z" clip-rule="evenodd" fill="url(#paint2_linear_1700_19984)" fill-rule="evenodd" opacity=".2"/>
|
||||
<path d="m25.3704 24.2963c0-2.2525 0.7603-3.5106 1.7061-4.275 1.0442-0.8439 2.704-1.3917 4.9235-1.3917 2.2176 0 3.934 0.548 5.0153 1.3546 0.9784 0.7299 1.6143 1.7859 1.6143 3.4454 0 0.9137-0.3049 1.7567-0.9834 2.752-0.6352 0.9317-1.4546 1.8064-2.4976 2.9198h-1e-4c-0.1702 0.1818-0.3465 0.3699-0.5288 0.5656-2.4447 2.6244-5.6197 6.2354-5.6197 11.9626h6c0-3.2257 1.6398-5.3285 4.0099-7.8729 0.1518-0.1629 0.3094-0.3305 0.4712-0.5026 1.0189-1.0839 2.2021-2.3424 3.1227-3.6928 1.127-1.6532 2.0258-3.6591 2.0258-6.1317 0-3.5404-1.5197-6.3844-4.0266-8.2546-2.4039-1.7933-5.5023-2.5454-8.603-2.5454-3.0988 0-6.2538 0.7523-8.6949 2.7251-2.5394 2.0523-3.9347 5.1275-3.9347 8.9416h6zm3.6296 21.1852v5.7778h6v-5.7778h-6z" clip-rule="evenodd" fill="url(#paint3_linear_1700_19984)" fill-rule="evenodd"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1700_19984" x1="64" x2="2.13255e-6" y1="65" y2=".999998" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8E44AD" offset="0"/>
|
||||
<stop stop-color="#9B59B6" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1700_19984" x1="64" x2="2.13255e-6" y1="64" y2="-2.13255e-6" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8E44AD" offset="0"/>
|
||||
<stop stop-color="#9B59B6" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1700_19984" x1="16.5913" x2="44.3371" y1="26.8838" y2="54.6421" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".6" offset=".497499"/>
|
||||
<stop stop-opacity="0" offset=".994092"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1700_19984" x1="-23.9312" x2="-23.9312" y1="65.2625" y2="12.6296" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E2DBE6" offset="0"/>
|
||||
<stop stop-color="#fff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@ -0,0 +1,25 @@
|
||||
<svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6 57L32 5L58 57H6Z" fill="url(#paint0_linear_1700_20014)"/>
|
||||
<path d="M43.0311 27.0874L58 57H34L29 52H35V46H33L29 42V19H35L43.0311 27.0874Z" clip-rule="evenodd" fill="url(#paint1_linear_1700_20014)" fill-rule="evenodd" opacity=".2"/>
|
||||
<path d="m29 52v-6h6v6h-6zm0-33v23h6v-23h-6z" clip-rule="evenodd" fill="url(#paint2_linear_1700_20014)" fill-rule="evenodd"/>
|
||||
<rect x="6" y="57" width="52" height="1" fill="url(#paint3_linear_1700_20014)"/>
|
||||
<rect x="6" y="57" width="52" height="1" fill="#000" fill-opacity=".2"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1700_20014" x2="64" y2="64" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF902E" offset="0"/>
|
||||
<stop stop-color="#F07406" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1700_20014" x1="31.5" x2="51.3995" y1="32.0365" y2="54.0321" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".6" offset="0"/>
|
||||
<stop stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1700_20014" x1="-64" x2="-64" y1="73.5" y2="19.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFE3B3" offset="0"/>
|
||||
<stop stop-color="#FFFEFC" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1700_20014" x2=".0473198" y1="56.9038" y2="59.3645" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF902E" offset="0"/>
|
||||
<stop stop-color="#F07406" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
29
src/apps/res/icons/deskflow-dark/status/64/security-high.svg
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg width="64" version="1.1" xmlns="http://www.w3.org/2000/svg" height="64" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
||||
<defs id="defs3811">
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4227">
|
||||
<stop style="stop-color:#292c2f" id="stop4229"/>
|
||||
<stop offset="1" style="stop-opacity:0" id="stop4231"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4191-1-7" xlink:href="#linearGradient4227" y1="9" y2="23" x1="9.00001" gradientUnits="userSpaceOnUse" x2="23.00004" gradientTransform="matrix(2 0 0 2 735.85719 158.93361)"/>
|
||||
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4298" id="linearGradient4181" y1="6" x1="32" y2="57" x2="31" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4374">
|
||||
<stop style="stop-color:#bcfd93" id="stop4376"/>
|
||||
<stop offset="1" style="stop-color:#fafff5" id="stop4378"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4298">
|
||||
<stop style="stop-color:#42a603" id="stop4300"/>
|
||||
<stop offset="1" style="stop-color:#78da06" id="stop4302"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4374" id="linearGradient4189" y1="199.93361" y2="175.93361" x2="0" gradientUnits="userSpaceOnUse"/>
|
||||
</defs>
|
||||
<metadata id="metadata3814"/>
|
||||
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="matrix(1 0 0 1 -736.85718 -157.93361)">
|
||||
<path style="fill:url(#linearGradient4181);stroke-linecap:square;stroke-width:2" id="rect4186-2-1" d="M 32 6 C 25.66667 9.35447 19.33333 10.72491 13 12 L 13 37 C 13 44 23.26331 53.561337 32 57.998047 C 40.73669 53.561337 51 44 51 37 L 51 12 C 44.66667 10.72491 38.33333 9.35447 32 6 z " transform="matrix(1 0 0 1 736.85718 157.93361)"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4191-1-7);opacity:0.2;fill-rule:evenodd" id="path4184-5" d="m 779.85718,175.93361 -8,14 -7,8 -7,-3 8,8 12,13 17,0 0,-27 z"/>
|
||||
<path inkscape:connector-curvature="0" style="shape-rendering:auto;color-interpolation-filters:linearRGB;fill:url(#linearGradient4189);image-rendering:auto;text-rendering:auto;color:#000000;fill-rule:evenodd;stroke-width:2;color-rendering:auto;color-interpolation:sRGB" id="path4179" d="m 779.01953,175.38672 -14.42969,22.12695 -6.15234,-4.39453 -1.16211,1.62891 7.84961,5.60547 15.57031,-23.87305 -1.67578,-1.09375 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:#368902;stroke-linecap:square;stroke-width:2" id="rect4186-2-1-5" d="m 749.85718,192.93361 0,2 c 0,7 10.26331,16.56134 19,20.99805 8.73669,-4.43671 19,-13.99805 19,-20.99805 l 0,-2 c 0,7 -10.26331,16.56134 -19,20.99805 -8.73669,-4.43671 -19,-13.99805 -19,-20.99805 z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
29
src/apps/res/icons/deskflow-dark/status/64/security-low.svg
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg width="64" version="1.1" xmlns="http://www.w3.org/2000/svg" height="64" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
||||
<defs id="defs3811">
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4227">
|
||||
<stop style="stop-color:#292c2f" id="stop4229"/>
|
||||
<stop offset="1" style="stop-opacity:0" id="stop4231"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4191-1-7" xlink:href="#linearGradient4227" y1="9" y2="23" x1="9.00001" gradientUnits="userSpaceOnUse" x2="23.00004" gradientTransform="matrix(2 0 0 2 735.85719 158.93361)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4344">
|
||||
<stop style="stop-color:#ed868d" id="stop4346"/>
|
||||
<stop offset="1" style="stop-color:#fbe6e8" id="stop4348"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4435">
|
||||
<stop style="stop-color:#c61423" id="stop4437"/>
|
||||
<stop offset="1" style="stop-color:#dc2b41" id="stop4439"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4179" xlink:href="#linearGradient4344" y1="201.93361" y2="177.93361" gradientUnits="userSpaceOnUse" x2="0" gradientTransform="matrix(1 0 0 1 0.000002 -2.999999)"/>
|
||||
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4435" id="linearGradient4424" y1="58" y2="6" x2="0" gradientUnits="userSpaceOnUse"/>
|
||||
</defs>
|
||||
<metadata id="metadata3814"/>
|
||||
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="matrix(1 0 0 1 -736.85718 -157.93361)">
|
||||
<path style="fill:url(#linearGradient4424);stroke-linecap:square;stroke-width:2" id="rect4186-2-1" d="M 32 6 C 25.66667 9.35447 19.33333 10.72491 13 12 L 13 37 C 13 44 23.26331 53.561337 32 57.998047 C 40.73669 53.561337 51 44 51 37 L 51 12 C 44.66667 10.72491 38.33333 9.35447 32 6 z " transform="matrix(1 0 0 1 736.85718 157.93361)"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4191-1-7);opacity:0.2;fill-rule:evenodd" id="path4184-5" d="m 779.62257,175.16823 -8.76539,9.76538 -2,2 -10,10 -1.35192,1.11731 17.0391,17.88269 20.31282,0 0,-25.53077 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4179)" id="rect4168" d="m 779.44312,174.93361 1.41406,1.41406 -10.58594,10.58594 10.58594,10.58594 -1.41406,1.41406 -10.58594,-10.58594 -10.58594,10.58594 -1.41406,-1.41406 10.58594,-10.58594 -10.58594,-10.58594 1.41406,-1.41406 10.58594,10.58594 10.58594,-10.58594 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:#aa111e;stroke-linecap:square;stroke-width:2" id="rect4186-2-1-5" d="m 749.85718,192.93361 0,2 c 0,7 10.26331,16.56134 19,20.99805 8.73669,-4.43671 19,-13.99805 19,-20.99805 l 0,-2 c 0,7 -10.26331,16.56134 -19,20.99805 -8.73669,-4.43671 -19,-13.99805 -19,-20.99805 z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg width="64" version="1.1" xmlns="http://www.w3.org/2000/svg" height="64" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
||||
<defs id="defs3811">
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4155">
|
||||
<stop style="stop-color:#fcd994" id="stop4157"/>
|
||||
<stop offset="1" style="stop-color:#fff6e1" id="stop4159"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4227">
|
||||
<stop style="stop-color:#292c2f" id="stop4229"/>
|
||||
<stop offset="1" style="stop-opacity:0" id="stop4231"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4191-1-7" xlink:href="#linearGradient4227" y1="9" y2="23" x1="9.00001" gradientUnits="userSpaceOnUse" x2="23.00004" gradientTransform="matrix(2 0 0 2 735.85719 158.93361)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4143-6">
|
||||
<stop style="stop-color:#faae2a" id="stop4145-8"/>
|
||||
<stop offset="1" style="stop-color:#ffc35a" id="stop4147-0"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4143-6" id="linearGradient4181" y1="6" x1="32" y2="57" x2="31" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4155" id="linearGradient4190" y1="17" y2="41" x2="0" gradientUnits="userSpaceOnUse"/>
|
||||
</defs>
|
||||
<metadata id="metadata3814"/>
|
||||
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="matrix(1 0 0 1 -736.85718 -157.93361)">
|
||||
<path style="fill:url(#linearGradient4181);stroke-linecap:square;stroke-width:2" id="rect4186-2-1" d="M 32 6 C 25.66667 9.35447 19.33333 10.72491 13 12 L 13 37 C 13 44 23.26331 53.561337 32 57.998047 C 40.73669 53.561337 51 44 51 37 L 51 12 C 44.66667 10.72491 38.33333 9.35447 32 6 z " transform="matrix(1 0 0 1 736.85718 157.93361)"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4191-1-7);opacity:0.2;fill-rule:evenodd" id="path4184-5" d="m 769.85718,174.93361 -2,0 0,20 2,2 -2,2 16,17 11,0 0,-18 z"/>
|
||||
<path style="fill:url(#linearGradient4190);stroke-linecap:square;stroke-width:2" id="rect4179" d="M 31 17 L 31 37 L 33 37 L 33 17 L 31 17 z M 31 39 L 31 41 L 33 41 L 33 39 L 31 39 z " transform="matrix(1 0 0 1 736.85718 157.93361)"/>
|
||||
<path style="fill:#e59305;stroke-linecap:square;stroke-width:2" id="rect4186-2-1-5" d="M 13 35 L 13 37 C 13 44 23.26331 53.561337 32 57.998047 C 40.73669 53.561337 51 44 51 37 L 51 35 C 51 42 40.73669 51.561337 32 55.998047 C 23.26331 51.561337 13 42 13 35 z " transform="matrix(1 0 0 1 736.85718 157.93361)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@ -0,0 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 3 2 L 3 14 L 6 14 L 6 13 L 4 13 L 4 3 L 9 3 L 9 6 L 12 6 L 12 8 L 13 8 L 13 5 L 10 2 L 9 2 L 3 2 z M 7 8 L 7 14 L 13 14 L 13 9 L 11 9 L 10 8 L 7 8 z M 8 10 L 12 10 L 12 13 L 8 13 L 8 10 z "
|
||||
class="ColorScheme-Text"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 526 B |
11
src/apps/res/icons/deskflow-light/actions/16/edit-copy.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE svg>
|
||||
<svg viewBox="0 0 16 16" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" style="fill:currentColor; fill-opacity:1; stroke:none" d="M 3 2 L 3 12 L 6 12 L 6 14 L 14 14 L 14 7 L 11 4 L 10 4 L 8 2 L 3 2 Z M 4 3 L 7 3 L 7 4 L 6 4 L 6 11 L 4 11 L 4 3 Z M 7 5 L 10 5 L 10 8 L 13 8 L 13 13 L 7 13 L 7 5 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 534 B |
1
src/apps/res/icons/deskflow-light/actions/16@2x
Symbolic link
@ -0,0 +1 @@
|
||||
16
|
||||
1
src/apps/res/icons/deskflow-light/actions/16@3x
Symbolic link
@ -0,0 +1 @@
|
||||
16
|
||||
@ -0,0 +1,14 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 22 22">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path
|
||||
style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 4 3 L 4 19 L 9 19 L 9 18 L 5 18 L 5 4 L 13 4 L 13 8 L 17 8 L 17 11 L 18 11 L 18 7 L 14 3 L 14 3 L 14 3 L 5 3 L 4 3 z M 10 12 L 10 19 L 18 19 L 18 13 L 15 13 L 14 12 L 14 12 L 14 12 L 10 12 z M 13.1 14 L 17 14 L 17 18 L 11 18 L 11 15 L 12 15 L 13.1 14 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 595 B |
11
src/apps/res/icons/deskflow-light/actions/22/edit-copy.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<!DOCTYPE svg>
|
||||
<svg viewBox="0 0 22 22" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
||||
<defs>
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path class="ColorScheme-Text" style="fill:currentColor; fill-opacity:1; stroke:none" d="M 3 3 L 3 17 L 7 17 L 7 19 L 17 19 L 17 10 L 13 6 L 12 6 L 9 3 L 3 3 Z M 4 4 L 8 4 L 8 6 L 7 6 L 7 16 L 4 16 L 4 4 Z M 8 7 L 12 7 L 12 11 L 16 11 L 16 18 L 8 18 L 8 7 Z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 537 B |
1
src/apps/res/icons/deskflow-light/actions/22@2x
Symbolic link
@ -0,0 +1 @@
|
||||
22
|
||||
1
src/apps/res/icons/deskflow-light/actions/22@3x
Symbolic link
@ -0,0 +1 @@
|
||||
22
|
||||
@ -0,0 +1,12 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(1,1)">
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none" d="M 4 3 L 4 19 L 9 19 L 9 18 L 5 18 L 5 4 L 13 4 L 13 8 L 17 8 L 17 11 L 18 11 L 18 7 L 14 3 L 14 3 L 14 3 L 5 3 L 4 3 z M 10 12 L 10 19 L 18 19 L 18 13 L 15 13 L 14 12 L 14 12 L 14 12 L 10 12 z M 13.1 14 L 17 14 L 17 18 L 11 18 L 11 15 L 12 15 L 13.1 14 z " class="ColorScheme-Text"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 640 B |
13
src/apps/res/icons/deskflow-light/actions/24/edit-copy.svg
Normal file
@ -0,0 +1,13 @@
|
||||
<!DOCTYPE svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" version="1.1" width="24" height="24">
|
||||
<defs>
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<g transform="translate(1,1)">
|
||||
<path class="ColorScheme-Text" style="fill:currentColor; fill-opacity:1; stroke:none" d="M 3 3 L 3 17 L 7 17 L 7 19 L 17 19 L 17 10 L 13 6 L 12 6 L 9 3 L 3 3 Z M 4 4 L 8 4 L 8 6 L 7 6 L 7 16 L 4 16 L 4 4 Z M 8 7 L 12 7 L 12 11 L 16 11 L 16 18 L 8 18 L 8 7 Z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 592 B |
1
src/apps/res/icons/deskflow-light/actions/24@2x
Symbolic link
@ -0,0 +1 @@
|
||||
24
|
||||
1
src/apps/res/icons/deskflow-light/actions/24@3x
Symbolic link
@ -0,0 +1 @@
|
||||
24
|
||||
@ -0,0 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M16 4A12 12 0 0 0 7.886719 7.179688L7.885 7.178A12 12 0 0 0 7.847656 7.214844 12 12 0 0 0 4 16 12 12 0 0 0 16 28 12 12 0 0 0 24.11328 24.820312L24.12 24.822A12 12 0 0 0 24.15234 24.785156 12 12 0 0 0 28 16 12 12 0 0 0 16 4M16 5A11 11 0 0 1 27 16 11 11 0 0 1 24.11523 23.408203L8.592 7.885A11 11 0 0 1 16 5M7.885 8.592L23.408 24.12A11 11 0 0 1 16 27 11 11 0 0 1 5 16 11 11 0 0 1 7.884766 8.591797"
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 733 B |
@ -0,0 +1 @@
|
||||
<svg viewBox="0 0 32 32" xmlns="http://www.w3.org/2000/svg"><style type="text/css" id="current-color-scheme">.ColorScheme-Text{color:#232629;}</style><path d="m30 6.5961948-19.303301 19.3032992-8.696699-8.696697.7071076-.707106 7.9895914 7.989592 18.596195-18.5961947z" style="fill:currentColor;fill-opacity:1;stroke:none" class="ColorScheme-Text"/></svg>
|
||||
|
After Width: | Height: | Size: 355 B |
1
src/apps/res/icons/deskflow-light/actions/32/dialog-ok.svg
Symbolic link
@ -0,0 +1 @@
|
||||
dialog-ok-apply.svg
|
||||
@ -0,0 +1,13 @@
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">
|
||||
.ColorScheme-Text {
|
||||
color:#232629;
|
||||
}
|
||||
</style>
|
||||
</defs>
|
||||
<path style="fill:currentColor;fill-opacity:1;stroke:none"
|
||||
d="M 6 4 L 6 28 L 13 28 L 13 27 L 7 27 L 7 5 L 18 5 L 18 12 L 25 12 L 25 16 L 26 16 L 26 11 L 19 4 L 18 4 L 6 4 z M 14 16 L 14 17 L 14 20 L 14 21 L 14 27 L 14 28 L 26 28 L 26 27 L 26 20 L 26 19 L 26 18 L 21 18 L 19 16 L 19 16 L 19 16 L 15 16 L 14 16 z M 15 17 L 18.6 17 L 19.6 18 L 19 18 L 19 18 L 19 18 L 17 20 L 15 20 L 15 17 z M 15 21 L 25 21 L 25 27 L 15 27 L 15 21 z "
|
||||
class="ColorScheme-Text"
|
||||
/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 705 B |
1
src/apps/res/icons/deskflow-light/actions/32@2x
Symbolic link
@ -0,0 +1 @@
|
||||
32
|
||||
1
src/apps/res/icons/deskflow-light/actions/32@3x
Symbolic link
@ -0,0 +1 @@
|
||||
32
|
||||
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
height="400"
|
||||
viewBox="0 -960 16000 16000"
|
||||
width="400"
|
||||
fill="#e8eaed"
|
||||
version="1.1"
|
||||
id="svg58"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<defs
|
||||
id="defs62" />
|
||||
<g
|
||||
id="g312"
|
||||
transform="matrix(0.95521236,0,0,0.88584237,358.301,773.57086)">
|
||||
<path
|
||||
style="fill:#1a1a1a;fill-opacity:1;stroke-width:22.0314"
|
||||
d="m 10822.775,14277.69 c -1195.5832,-143.508 -2220.2063,-841.148 -3268.3667,-1379.127 -718.8533,-355.301 -1431.1297,-838.976 -2251.4363,-896.085 -491.0057,-34.634 -993.9142,16.701 -1419.8658,282.946 -632.9097,323.689 -1041.4867,924.538 -1556.5718,1387.702 -543.283,324.938 -1024.416,-324.503 -999.9439,-831.854 -66.7515,-706.46 526.7775,-1215.106 971.4799,-1675.328 796.7042,-788.985 1908.9735,-1339.2985 3051.7899,-1198.3588 1348.2477,151.6528 2490.0786,954.1998 3671.9639,1551.7868 812.8473,430.368 1732.2728,937.309 2680.6698,656.999 865.182,-240.211 1345.317,-1049.536 1918.072,-1669.709 419.319,-369.53 999.56,99.027 1037.303,575.62 144.849,591.439 -228.81,1099.793 -584.858,1527.872 -674.991,878.758 -1646.404,1612.499 -2788.132,1678.492 -153.996,19.794 -308.698,6.257 -462.104,-10.956 z"
|
||||
id="path3393" />
|
||||
<path
|
||||
style="fill:#1a1a1a;fill-opacity:1;stroke-width:26.9658"
|
||||
d="M 10691.975,9232.2954 C 9345.1884,8998.8534 8209.7623,8175.6727 7013.3992,7567.553 6317.9006,7189.0731 5542.8247,6853.4818 4732.6528,6969.3648 3791.0852,7073.1473 3096.3863,7808.0894 2511.2819,8487.0616 2153.4997,8962.5979 1492.1857,8662.9151 1369.9995,8151.7319 1161.0166,7603.1278 1417.243,7018.9363 1804.1792,6620.924 2646.9373,5624.9864 3867.0135,4790.8306 5227.0245,4902.123 c 1538.2424,122.1926 2802.7979,1096.8978 4150.0464,1747.2218 689.4831,373.3537 1480.8271,695.5213 2275.6811,498.2159 843.443,-225.4675 1355.155,-986.6873 1874.463,-1625.928 303.839,-429.2412 935.004,-202.6984 1073.134,247.0946 229.503,525.6439 50.159,1127.049 -311.918,1545.1618 -731.881,1031.1947 -1847.889,1971.3437 -3180.435,1938.7364 -138.853,1.6775 -278.273,-1.5834 -416.021,-20.3301 z"
|
||||
id="path1767" />
|
||||
<path
|
||||
style="fill:#1a1a1a;fill-opacity:1;stroke-width:26.9658"
|
||||
d="M 10576.744,4172.4544 C 8874.8637,3865.0547 7544.5841,2635.7395 5940.4635,2069.4233 5180.2383,1837.8115 4305.6379,1885.6382 3648.4341,2367.3105 c -522.046,315.7633 -870.3773,828.5536 -1307.695,1235.7633 -408.0241,287.6051 -882.8065,-100.3925 -976.5864,-516.0856 -207.011,-566.4578 84.2445,-1166.9024 491.559,-1564.2835 824.1797,-978.84256 2034.8379,-1776.07292 3363.7164,-1666.23087 1553.6459,128.553637 2838.511,1104.93638 4193.6746,1778.01277 748.5153,409.2855 1666.3233,736.8711 2500.3373,374.9559 742.862,-301.9425 1184.93,-1003.6082 1669.344,-1599.36398 390.513,-404.4477409 1011.637,22.50986 1078.781,494.20116 143.129,510.48212 -76.578,1022.79062 -407.346,1408.75032 -715.856,1002.3301 -1795.1,1907.7734 -3088.381,1906.4911 -197.264,2.2737 -394.6,-14.3348 -589.094,-47.0667 z"
|
||||
id="path970" />
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 3.0 KiB |
29
src/apps/res/icons/deskflow-light/apps/64/deskflow.svg
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
|
||||
<svg
|
||||
width="128.00002"
|
||||
height="127.99999"
|
||||
viewBox="0 0 33.866671 33.866665"
|
||||
version="1.1"
|
||||
id="svg1"
|
||||
xml:space="preserve"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"><defs
|
||||
id="defs1" /><g
|
||||
id="layer1"
|
||||
transform="translate(-32.279167,-138.64166)"><g
|
||||
style="fill:#e8eaed"
|
||||
id="g1"
|
||||
transform="matrix(0.00196863,0,0,0.00196863,33.463433,141.71593)"><g
|
||||
id="g312"
|
||||
transform="matrix(1.002973,0,0,0.93013448,-23.783992,460.24941)"><path
|
||||
style="fill:#3366cc;fill-opacity:1;stroke-width:22.0314"
|
||||
d="m 10822.775,14277.69 c -1195.5832,-143.508 -2220.2063,-841.148 -3268.3667,-1379.127 -718.8533,-355.301 -1431.1297,-838.976 -2251.4363,-896.085 -491.0057,-34.634 -993.9142,16.701 -1419.8658,282.946 -632.9097,323.689 -1041.4867,924.538 -1556.5718,1387.702 -543.283,324.938 -1024.416,-324.503 -999.9439,-831.854 -66.7515,-706.46 526.7775,-1215.106 971.4799,-1675.328 796.7042,-788.985 1908.9735,-1339.2985 3051.7899,-1198.3588 1348.2477,151.6528 2490.0786,954.1998 3671.9639,1551.7868 812.8473,430.368 1732.2728,937.309 2680.6698,656.999 865.182,-240.211 1345.317,-1049.536 1918.072,-1669.709 419.319,-369.53 999.56,99.027 1037.303,575.62 144.849,591.439 -228.81,1099.793 -584.858,1527.872 -674.991,878.758 -1646.404,1612.499 -2788.132,1678.492 -153.996,19.794 -308.698,6.257 -462.104,-10.956 z"
|
||||
id="path3393" /><path
|
||||
style="fill:#33b2cc;fill-opacity:1;stroke-width:26.9658"
|
||||
d="M 10691.975,9232.2954 C 9345.1884,8998.8534 8209.7623,8175.6727 7013.3992,7567.553 6317.9006,7189.0731 5542.8247,6853.4818 4732.6528,6969.3648 3791.0852,7073.1473 3096.3863,7808.0894 2511.2819,8487.0616 2153.4997,8962.5979 1492.1857,8662.9151 1369.9995,8151.7319 1161.0166,7603.1278 1417.243,7018.9363 1804.1792,6620.924 2646.9373,5624.9864 3867.0135,4790.8306 5227.0245,4902.123 c 1538.2424,122.1926 2802.7979,1096.8978 4150.0464,1747.2218 689.4831,373.3537 1480.8271,695.5213 2275.6811,498.2159 843.443,-225.4675 1355.155,-986.6873 1874.463,-1625.928 303.839,-429.2412 935.004,-202.6984 1073.134,247.0946 229.503,525.6439 50.159,1127.049 -311.918,1545.1618 -731.881,1031.1947 -1847.889,1971.3437 -3180.435,1938.7364 -138.853,1.6775 -278.273,-1.5834 -416.021,-20.3301 z"
|
||||
id="path1767" /><path
|
||||
style="fill:#33cc99;fill-opacity:1;stroke-width:26.9658"
|
||||
d="M 10576.744,4172.4544 C 8874.8637,3865.0547 7544.5841,2635.7395 5940.4635,2069.4233 5180.2383,1837.8115 4305.6379,1885.6382 3648.4341,2367.3105 c -522.046,315.7633 -870.3773,828.5536 -1307.695,1235.7633 -408.0241,287.6051 -882.8065,-100.3925 -976.5864,-516.0856 -207.011,-566.4578 84.2445,-1166.9024 491.559,-1564.2835 824.1797,-978.84256 2034.8379,-1776.07292 3363.7164,-1666.23087 1553.6459,128.553637 2838.511,1104.93638 4193.6746,1778.01277 748.5153,409.2855 1666.3233,736.8711 2500.3373,374.9559 742.862,-301.9425 1184.93,-1003.6082 1669.344,-1599.36398 390.513,-404.4477409 1011.637,22.50986 1078.781,494.20116 143.129,510.48212 -76.578,1022.79062 -407.346,1408.75032 -715.856,1002.3301 -1795.1,1907.7734 -3088.381,1906.4911 -197.264,2.2737 -394.6,-14.3348 -589.094,-47.0667 z"
|
||||
id="path970" /></g></g></g></svg>
|
||||
|
After Width: | Height: | Size: 3.3 KiB |
@ -0,0 +1,89 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg width="64" version="1.1" xmlns="http://www.w3.org/2000/svg" height="64" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
||||
<defs id="defs5455">
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4159">
|
||||
<stop style="stop-color:#2a2c2f" id="stop4161"/>
|
||||
<stop offset="1" style="stop-color:#424649" id="stop4163"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4250" xlink:href="#linearGradient4159" y1="536.79797" y2="503.798" gradientUnits="userSpaceOnUse" x2="0" gradientTransform="matrix(1.0833331 0 0 1.0909092 -34.04753 -49.799908)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4272" xlink:href="#linearGradient4303" y1="547.79797" y2="536.79797" gradientUnits="userSpaceOnUse" x2="0" gradientTransform="matrix(1.1666674 0 0 1.0909092 -68.09551 -49.799906)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4303">
|
||||
<stop style="stop-color:#c6cdd1" id="stop4305"/>
|
||||
<stop offset="1" style="stop-color:#e0e5e7" id="stop4307"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4591">
|
||||
<stop style="stop-color:#7e8f9e" id="stop4593"/>
|
||||
<stop offset="1" style="stop-color:#84ced5" id="stop4595"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4597-5" xlink:href="#linearGradient4591" y1="541.79797" y2="489.798" gradientUnits="userSpaceOnUse" x2="0" gradientTransform="matrix(1.0871079 0 0 1.1000002 -44.37026 -47.979912)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4681" xlink:href="#linearGradient4675" y1="535.79797" y2="522.79797" x1="394.57144" gradientUnits="userSpaceOnUse" x2="404.57144" gradientTransform="matrix(1.0999997 0 0 1.1428564 -49.45702 -70.68505)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4675">
|
||||
<stop style="stop-color:#e4a56d" id="stop4677"/>
|
||||
<stop offset="1" style="stop-color:#a7bd78" id="stop4679"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4689" xlink:href="#linearGradient4683" x1="404.57144" gradientUnits="userSpaceOnUse" x2="421.57144" gradientTransform="matrix(1.0795244 0 0 1.1428567 -41.17329 -70.68516)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4683">
|
||||
<stop style="stop-color:#c3a278" id="stop4685"/>
|
||||
<stop offset="1" style="stop-color:#6688aa" id="stop4687"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4728" xlink:href="#linearGradient4722" y1="536.79797" y2="524.79797" x1="430.57144" gradientUnits="userSpaceOnUse" x2="437.49963" gradientTransform="matrix(1.1078085 0 0 1.1428564 -53.44897 -70.68506)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4722">
|
||||
<stop style="stop-color:#6588af" id="stop4724"/>
|
||||
<stop offset="1" style="stop-color:#8ba8cd" id="stop4726"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4840" xlink:href="#linearGradient4834" x1="421.57144" gradientUnits="userSpaceOnUse" x2="438.57144" gradientTransform="matrix(1.0489857 0 0 1.1000002 -27.650967 -47.979911)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4834">
|
||||
<stop style="stop-color:#89ad8b" id="stop4836"/>
|
||||
<stop offset="1" style="stop-color:#82b3c7" id="stop4838"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4784" xlink:href="#linearGradient4778" y1="525.79797" y2="513.79797" x1="387.57144" gradientUnits="userSpaceOnUse" x2="401.57144" gradientTransform="matrix(1.0999997 0 0 1.2751426 -49.45702 -137.41797)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4778">
|
||||
<stop style="stop-color:#e1b16f" id="stop4780"/>
|
||||
<stop offset="1" style="stop-color:#99bf83" id="stop4782"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4792" xlink:href="#linearGradient4786" y1="510.798" y2="498.798" x1="404.57144" gradientUnits="userSpaceOnUse" x2="391.57144" gradientTransform="matrix(1.0999997 0 0 1.1000002 -49.45702 -47.979912)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4786">
|
||||
<stop style="stop-color:#99c487" id="stop4788"/>
|
||||
<stop offset="1" style="stop-color:#b4d99e" id="stop4790"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4808" xlink:href="#linearGradient4802" y1="501.798" y2="501.61618" x1="404.57144" gradientUnits="userSpaceOnUse" x2="421.57144" gradientTransform="matrix(1.1176469 0 0 1.1000002 -56.59659 -47.979912)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4802">
|
||||
<stop style="stop-color:#75d5c7" id="stop4804"/>
|
||||
<stop offset="1" style="stop-color:#66afb9" id="stop4806"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4776" xlink:href="#linearGradient4770" y1="495.798" y2="504.798" x1="428.57144" gradientUnits="userSpaceOnUse" x2="438.57144" gradientTransform="matrix(1.0489851 0 0 1.062501 -27.650709 -29.23788)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4770">
|
||||
<stop style="stop-color:#5c7b9e" id="stop4772"/>
|
||||
<stop offset="1" style="stop-color:#839dc0" id="stop4774"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4816" xlink:href="#linearGradient4810" x1="421.57144" gradientUnits="userSpaceOnUse" x2="406.57144" gradientTransform="matrix(1.0871079 0 0 1.1000002 -44.37026 -47.979912)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4810">
|
||||
<stop style="stop-color:#7fbcc6" id="stop4812"/>
|
||||
<stop offset="1" style="stop-color:#8ee4e3" id="stop4814"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4824" xlink:href="#linearGradient4818" x1="421.57144" gradientUnits="userSpaceOnUse" x2="436.57144" gradientTransform="matrix(1.0871079 0 0 1.1000002 -44.37026 -47.979912)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4818">
|
||||
<stop style="stop-color:#84d5d7" id="stop4820"/>
|
||||
<stop offset="1" style="stop-color:#84a8ba" id="stop4822"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<metadata id="metadata5458"/>
|
||||
<g inkscape:label="Capa 1" inkscape:groupmode="layer" id="layer1" transform="matrix(1 0 0 1 -376.57144 -491.79797)">
|
||||
<path inkscape:connector-curvature="0" style="stroke-opacity:0.550265;fill:url(#linearGradient4272);stroke-width:2.8" id="rect4254" d="m 401.57143,535.79797 0,7.63636 0,2.18182 0,2.18182 14,0 0,-2.18182 0,-2.18182 0,-7.63636 z"/>
|
||||
<rect width="51.999989" x="382.57144" y="499.79797" height="39.27273" style="stroke-opacity:0.550265;fill:url(#linearGradient4250);stroke-width:2.8" id="rect4173"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4597-5)" id="path4589-5" d="m 384.57143,501.79798 0,33 47.83274,0 0,-33 -47.83274,0 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4681);fill-rule:evenodd" id="path4476-9" d="m 395.57143,518.79799 -11,9.41072 0,6.58927 11,0 0,-15.99999 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4689);fill-rule:evenodd" id="path4478-4" d="m 395.57143,519.798 0,14.99998 18.35191,0 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4728);fill-rule:evenodd" id="path4488-0-8" d="m 432.57143,518.79799 -19,15.99999 19,10e-6 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4840);fill-rule:evenodd" id="path4188-3" d="m 414.57143,528.19798 0,-24.39999 18,15 -18,15.99999 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4784);fill-rule:evenodd" id="path4192-6" d="m 384.57143,509.79799 0,21.00001 11,-11 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4792);fill-rule:evenodd" id="path4198-3" d="m 384.57143,501.79798 0,8.54219 11,9.45783 0,-7.00002 0,-11 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4808);fill-rule:evenodd" id="path4200-1" d="m 395.57143,501.79798 0,11 0,7.00002 19,-16.00001 -3,-2 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4776);fill-rule:evenodd" id="path4202-1" d="m 417.12013,501.79798 -2.5487,2.00001 18,15 0,-6 0,-11 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4816);fill-rule:evenodd" id="path4206-9-2" d="m 411.57143,501.79799 3,2 0,-2 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4824);fill-rule:evenodd" id="path4208-1-1" d="m 414.57143,501.79799 0,2 3,-2 z"/>
|
||||
<rect width="23.999969" x="396.57144" y="546.79797" height="1.00002" style="stroke-opacity:0.550265;fill:#99a1a7;stroke-width:2.8" id="rect4295"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 8.6 KiB |
177
src/apps/res/icons/deskflow-light/index.theme
Normal file
@ -0,0 +1,177 @@
|
||||
[Icon Theme]
|
||||
Name=deskflow-light
|
||||
|
||||
Comment=Striped down Breeze Light by the KDE VDG
|
||||
|
||||
DisplayDepth=32
|
||||
|
||||
Inherits=breeze,hicolor
|
||||
|
||||
Example=folder
|
||||
|
||||
FollowsColorScheme=true
|
||||
|
||||
DesktopDefault=48
|
||||
DesktopSizes=16,22,32,48,64,128,256
|
||||
ToolbarDefault=22
|
||||
ToolbarSizes=16,22,32,48
|
||||
MainToolbarDefault=22
|
||||
MainToolbarSizes=16,22,32,48
|
||||
SmallDefault=16
|
||||
SmallSizes=16,22,32,48
|
||||
PanelDefault=48
|
||||
PanelSizes=16,22,32,48,64,128,256
|
||||
DialogDefault=32
|
||||
DialogSizes=16,22,32,48,64,128,256
|
||||
|
||||
KDE-Extensions=.svg
|
||||
|
||||
########## Directories
|
||||
########## ordered by category and alphabetically
|
||||
|
||||
Directories=actions/16,actions/22,actions/24,actions/32,apps/64,devices/64,places/64,status/64
|
||||
ScaledDirectories=actions/16@2x,actions/16@3x,actions/22@2x,actions/22@3x,actions/24@2x,actions/24@3x,actions/32@2x,actions/32@3x
|
||||
|
||||
[apps/64]
|
||||
Size=64
|
||||
Context=Applications
|
||||
Type=Scalable
|
||||
MinSize=22
|
||||
MaxSize=256
|
||||
|
||||
|
||||
########## Actions
|
||||
########## ordered by size
|
||||
|
||||
#16x16 - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/16]
|
||||
Size=16
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#16x16@2x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/16@2x]
|
||||
Size=16
|
||||
Scale=2
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#16x16@3x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/16@3x]
|
||||
Size=16
|
||||
Scale=3
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
|
||||
#22x22 - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/22]
|
||||
Size=22
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#22x22@2x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/22@2x]
|
||||
Size=22
|
||||
Scale=2
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#22x22@3x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/22@3x]
|
||||
Size=22
|
||||
Scale=3
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#24x24 - Fixed size - GTK icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/24]
|
||||
Size=24
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#24x24@2x - Fixed size - GTK icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/24@2x]
|
||||
Size=24
|
||||
Scale=2
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#24x24@3x - Fixed size - GTK icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/24@3x]
|
||||
Size=24
|
||||
Scale=3
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#32x32 - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/32]
|
||||
Size=32
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#32x32@2x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/32@2x]
|
||||
Size=32
|
||||
Scale=2
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
#32x32@3x - Fixed size - For toolbar icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Monochrome
|
||||
[actions/32@3x]
|
||||
Size=32
|
||||
Scale=3
|
||||
Context=Actions
|
||||
Type=Scalable
|
||||
MinSize=16
|
||||
MaxSize=256
|
||||
|
||||
########## Status
|
||||
########## ordered by size
|
||||
|
||||
#64x64 - Fixed size - For folder icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Color
|
||||
[places/64]
|
||||
Size=64
|
||||
Type=Scalable
|
||||
Context=Places
|
||||
MinSize=48
|
||||
MaxSize=256
|
||||
|
||||
|
||||
#64x64 - Fixed size - For dialog icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Color
|
||||
[status/64]
|
||||
Size=64
|
||||
Context=Status
|
||||
Type=Scalable
|
||||
MinSize=22
|
||||
MaxSize=256
|
||||
|
||||
#64x64 - Fixed size - For dialog icons >!!!ONLY!!!< - DO_NOT_USE_ANYWHERE_ELSE - Color
|
||||
[devices/64]
|
||||
Size=64
|
||||
Context=Devices
|
||||
Type=Scalable
|
||||
MinSize=22
|
||||
MaxSize=256
|
||||
11
src/apps/res/icons/deskflow-light/places/64/user-trash.svg
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64">
|
||||
<defs id="defs3051">
|
||||
<style type="text/css" id="current-color-scheme">.ColorScheme-Accent { color: #3daee9; } .ColorScheme-Text { color: #fcfcfc; } </style>
|
||||
</defs>
|
||||
<path style="fill:#a7afb4" d="m 24,6 c -1,0 -2,1 -2,2 v 3 H 10 C 9,11 8,12 8,14.1 V 15 h 4 v 41.6 c 0,0.8 0.6,1.4 1.5,1.4 h 37 c 0.8,0 1.481226,-0.60022 1.5,-1.4 V 15 h 4 v -1 c 0,-2 -1,-3 -2,-3 H 42 V 8 C 42,7 41,6 40,6 Z m 1,3 h 14 v 2 H 25 Z"/>
|
||||
<path style="fill-opacity:0.33" d="M 18.5,19 C 17.6,19 17,19.6 17,20.4 v 33.2 c 0,0.8 0.6,1.4 1.5,1.4 0.9,0 1.5,-0.6 1.5,-1.4 V 20.4 C 20,19.6 19.331,19 18.5,19 Z m 9,0 C 26.6,19 26,19.6 26,20.4 v 33.2 c 0,0.8 0.6,1.4 1.5,1.4 0.9,0 1.5,-0.6 1.5,-1.4 V 20.4 C 29,19.6 28.331,19 27.5,19 Z m 9,0 C 35.6,19 35,19.6 35,20.4 v 33.2 c 0,0.8 0.6,1.4 1.5,1.4 0.9,0 1.5,-0.6 1.5,-1.4 V 20.4 C 38,19.6 37.331,19 36.5,19 Z m 9,0 C 44.6,19 44,19.6 44,20.4 v 33.2 c 0,0.8 0.6,1.4 1.5,1.4 0.9,0 1.5,-0.6 1.5,-1.4 V 20.4 C 47,19.6 46.331,19 45.5,19 Z"/>
|
||||
<path style="fill-opacity:0.33" d="m 12,55.5 v 1 c 0,0.8 0.6,1.5 1.5,1.5 h 37 c 0.8,0 1.5,-0.6 1.5,-1.5 v -1 c 0,0.8 -0.6,1.5 -1.5,1.5 h -37 C 12.7,57 12,56.4 12,55.5 Z"/>
|
||||
<path style="fill-opacity:0.33" d="M 24.75,8 C 24.05,8 24.015493,8.3 24,8.7 V 11 h 1 V 9 h 14 v 2 h 1 V 8.8 C 40,8.4 39.7,8 39.25,8 Z M 8,14 v 1 h 48 v -1 z"/>
|
||||
<path style="fill:#ffffff;fill-opacity:0.2" d="m 12,15 v 0.5 L 52,16 v -1 z"/>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.5 KiB |
25
src/apps/res/icons/deskflow-light/status/64/dialog-error.svg
Normal file
@ -0,0 +1,25 @@
|
||||
<svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M22.0377 9L8 22.1321V43.8679L21.1321 57H42.8679L56 42.9623V23.0377L42.8679 9H22.0377Z" fill="url(#paint0_linear_1700_19950)"/>
|
||||
<path d="M22.0377 9L8 22.1321V43.8679L21.1321 57H42.8679L56 42.9623V23.0377L42.8679 9H22.0377Z" fill="#000" fill-opacity=".2"/>
|
||||
<path d="M22.0377 8L8 21.1321V42.8679L21.1321 56H42.8679L56 41.9623V22.0377L42.8679 8H22.0377Z" fill="url(#paint1_linear_1700_19950)"/>
|
||||
<path d="M28 56L17 45L46 18L56 28V41.75L42.7 56H28Z" fill="url(#paint2_linear_1700_19950)" fill-opacity=".8"/>
|
||||
<path d="M27.7574 32L15.8787 43.8787L20.1213 48.1213L32 36.2426L43.8787 48.1213L48.1213 43.8787L36.2426 32L48.1213 20.1213L43.8787 15.8787L32 27.7573L20.1213 15.8787L15.8787 20.1213L27.7574 32Z" clip-rule="evenodd" fill="url(#paint3_linear_1700_19950)" fill-rule="evenodd"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1700_19950" x1="61.0769" x2="2.46154" y1="62.0769" y2="3.46154" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C61423" offset="0"/>
|
||||
<stop stop-color="#DC2B41" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1700_19950" x1="61.0769" x2="2.46154" y1="61.0769" y2="2.46154" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#C61423" offset="0"/>
|
||||
<stop stop-color="#DC2B41" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1700_19950" x1="29.875" x2="48.875" y1="29.875" y2="48.875" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".3" offset="0"/>
|
||||
<stop stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1700_19950" x1="-1000.92" x2="-1000.92" y1="48.1213" y2="15.8787" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFF3F4" offset="0"/>
|
||||
<stop stop-color="#FFF9FA" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,25 @@
|
||||
<svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m32 59c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="url(#paint0_linear_1700_20037)"/>
|
||||
<path d="m32 59c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="#000" fill-opacity=".2"/>
|
||||
<path d="m32 58c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="url(#paint1_linear_1700_20037)"/>
|
||||
<path d="M37 57.9997L29 49.9996H34V26L29 21V15H35L57.5 37.4766C56.5 43 51.5 55 37 57.9997Z" clip-rule="evenodd" fill="url(#paint2_linear_1700_20037)" fill-rule="evenodd" opacity=".2"/>
|
||||
<path d="m29 15v6h6v-6h-6zm6 35v-25h-6v25h6z" clip-rule="evenodd" fill="url(#paint3_linear_1700_20037)" fill-rule="evenodd"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1700_20037" x2="64" y1="1" y2="65" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#20BCFA" offset="0"/>
|
||||
<stop stop-color="#197CF1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1700_20037" x2="64" y2="64" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#20BCFA" offset="0"/>
|
||||
<stop stop-color="#197CF1" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1700_20037" x1="34" x2="53.1927" y1="29.3073" y2="48.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".6" offset="0"/>
|
||||
<stop stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1700_20037" x1="32.5" x2="32.5" y1="52" y2="12" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E3ECF5" offset="0"/>
|
||||
<stop stop-color="#fff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.8 KiB |
@ -0,0 +1,25 @@
|
||||
<svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="m32 59c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="url(#paint0_linear_1698_20544)"/>
|
||||
<path d="m32 59c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="#000" fill-opacity=".2"/>
|
||||
<path d="m32 58c14.3594 0 26-11.6406 26-26s-11.6406-26-26-26-26 11.6406-26 26 11.6406 26 26 26z" fill="url(#paint1_linear_1698_20544)"/>
|
||||
<path d="M57.9818 32.9818L45 20L22 43L36.227 57.6581C48.2618 55.6905 57.5186 45.4599 57.9818 32.9818Z" clip-rule="evenodd" fill="url(#paint2_linear_1698_20544)" fill-rule="evenodd" opacity=".2"/>
|
||||
<path d="m49 24-20.8787 21.1213-2.1213 1.8787-12-12 4-4 8 8 19-19 4 4z" clip-rule="evenodd" fill="url(#paint3_linear_1698_20544)" fill-rule="evenodd"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1698_20544" x1="-1.90735e-6" x2="64" y1="1" y2="65" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7ADC07" offset="0"/>
|
||||
<stop stop-color="#42A603" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1698_20544" x1="-1.90735e-6" x2="64" y1="1.90735e-6" y2="64" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#7ADC07" offset="0"/>
|
||||
<stop stop-color="#42A603" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1698_20544" x1="32.7089" x2="49.2026" y1="33.4594" y2="52.7843" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".6" offset="0"/>
|
||||
<stop stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1698_20544" x1="-1256.02" x2="-1256.02" y1="46.7319" y2="17.5438" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#EAFFDC" offset="0"/>
|
||||
<stop stop-color="#FAFFF5" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.9 KiB |
@ -0,0 +1,25 @@
|
||||
<svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<circle cx="32" cy="33" r="26" fill="url(#paint0_linear_1700_19984)"/>
|
||||
<circle cx="32" cy="33" r="26" fill="#000" fill-opacity=".2"/>
|
||||
<circle cx="32" cy="32" r="26" fill="url(#paint1_linear_1700_19984)"/>
|
||||
<path d="m35.6041 57.7522-6.493-6.4929h4.8148v-4.8148l-4.8148-4.8149h1.9259v-5.7777l-11.5149-11.5149 12.4779-11.5963 11.0741 5.2963 14.327 19.5369c-2.3007 10.5332-10.9863 18.6792-21.797 20.1783z" clip-rule="evenodd" fill="url(#paint2_linear_1700_19984)" fill-rule="evenodd" opacity=".2"/>
|
||||
<path d="m25.3704 24.2963c0-2.2525 0.7603-3.5106 1.7061-4.275 1.0442-0.8439 2.704-1.3917 4.9235-1.3917 2.2176 0 3.934 0.548 5.0153 1.3546 0.9784 0.7299 1.6143 1.7859 1.6143 3.4454 0 0.9137-0.3049 1.7567-0.9834 2.752-0.6352 0.9317-1.4546 1.8064-2.4976 2.9198h-1e-4c-0.1702 0.1818-0.3465 0.3699-0.5288 0.5656-2.4447 2.6244-5.6197 6.2354-5.6197 11.9626h6c0-3.2257 1.6398-5.3285 4.0099-7.8729 0.1518-0.1629 0.3094-0.3305 0.4712-0.5026 1.0189-1.0839 2.2021-2.3424 3.1227-3.6928 1.127-1.6532 2.0258-3.6591 2.0258-6.1317 0-3.5404-1.5197-6.3844-4.0266-8.2546-2.4039-1.7933-5.5023-2.5454-8.603-2.5454-3.0988 0-6.2538 0.7523-8.6949 2.7251-2.5394 2.0523-3.9347 5.1275-3.9347 8.9416h6zm3.6296 21.1852v5.7778h6v-5.7778h-6z" clip-rule="evenodd" fill="url(#paint3_linear_1700_19984)" fill-rule="evenodd"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1700_19984" x1="64" x2="2.13255e-6" y1="65" y2=".999998" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8E44AD" offset="0"/>
|
||||
<stop stop-color="#9B59B6" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1700_19984" x1="64" x2="2.13255e-6" y1="64" y2="-2.13255e-6" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#8E44AD" offset="0"/>
|
||||
<stop stop-color="#9B59B6" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1700_19984" x1="16.5913" x2="44.3371" y1="26.8838" y2="54.6421" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".6" offset=".497499"/>
|
||||
<stop stop-opacity="0" offset=".994092"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1700_19984" x1="-23.9312" x2="-23.9312" y1="65.2625" y2="12.6296" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#E2DBE6" offset="0"/>
|
||||
<stop stop-color="#fff" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.4 KiB |
@ -0,0 +1,25 @@
|
||||
<svg fill="none" version="1.1" viewBox="0 0 64 64" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M6 57L32 5L58 57H6Z" fill="url(#paint0_linear_1700_20014)"/>
|
||||
<path d="M43.0311 27.0874L58 57H34L29 52H35V46H33L29 42V19H35L43.0311 27.0874Z" clip-rule="evenodd" fill="url(#paint1_linear_1700_20014)" fill-rule="evenodd" opacity=".2"/>
|
||||
<path d="m29 52v-6h6v6h-6zm0-33v23h6v-23h-6z" clip-rule="evenodd" fill="url(#paint2_linear_1700_20014)" fill-rule="evenodd"/>
|
||||
<rect x="6" y="57" width="52" height="1" fill="url(#paint3_linear_1700_20014)"/>
|
||||
<rect x="6" y="57" width="52" height="1" fill="#000" fill-opacity=".2"/>
|
||||
<defs>
|
||||
<linearGradient id="paint0_linear_1700_20014" x2="64" y2="64" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF902E" offset="0"/>
|
||||
<stop stop-color="#F07406" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint1_linear_1700_20014" x1="31.5" x2="51.3995" y1="32.0365" y2="54.0321" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-opacity=".6" offset="0"/>
|
||||
<stop stop-opacity="0" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint2_linear_1700_20014" x1="-64" x2="-64" y1="73.5" y2="19.5" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FFE3B3" offset="0"/>
|
||||
<stop stop-color="#FFFEFC" offset="1"/>
|
||||
</linearGradient>
|
||||
<linearGradient id="paint3_linear_1700_20014" x2=".0473198" y1="56.9038" y2="59.3645" gradientUnits="userSpaceOnUse">
|
||||
<stop stop-color="#FF902E" offset="0"/>
|
||||
<stop stop-color="#F07406" offset="1"/>
|
||||
</linearGradient>
|
||||
</defs>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 1.6 KiB |
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg width="64" version="1.1" xmlns="http://www.w3.org/2000/svg" height="64" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
||||
<defs id="defs3811">
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4227">
|
||||
<stop style="stop-color:#292c2f" id="stop4229"/>
|
||||
<stop offset="1" style="stop-opacity:0" id="stop4231"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4191-1-7" xlink:href="#linearGradient4227" y1="9" y2="23" x1="9.00001" gradientUnits="userSpaceOnUse" x2="23.00004" gradientTransform="matrix(2 0 0 2 735.85719 158.93361)"/>
|
||||
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4298" id="linearGradient4181" y1="6" x1="32" y2="57" x2="31" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4374">
|
||||
<stop style="stop-color:#bcfd93" id="stop4376"/>
|
||||
<stop offset="1" style="stop-color:#fafff5" id="stop4378"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4298">
|
||||
<stop style="stop-color:#42a603" id="stop4300"/>
|
||||
<stop offset="1" style="stop-color:#78da06" id="stop4302"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4374" id="linearGradient4189" y1="199.93361" y2="175.93361" x2="0" gradientUnits="userSpaceOnUse"/>
|
||||
</defs>
|
||||
<metadata id="metadata3814"/>
|
||||
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="matrix(1 0 0 1 -736.85718 -157.93361)">
|
||||
<path style="fill:url(#linearGradient4181);stroke-linecap:square;stroke-width:2" id="rect4186-2-1" d="M 32 6 C 25.66667 9.35447 19.33333 10.72491 13 12 L 13 37 C 13 44 23.26331 53.561337 32 57.998047 C 40.73669 53.561337 51 44 51 37 L 51 12 C 44.66667 10.72491 38.33333 9.35447 32 6 z " transform="matrix(1 0 0 1 736.85718 157.93361)"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4191-1-7);opacity:0.2;fill-rule:evenodd" id="path4184-5" d="m 779.85718,175.93361 -8,14 -7,8 -7,-3 8,8 12,13 17,0 0,-27 z"/>
|
||||
<path inkscape:connector-curvature="0" style="shape-rendering:auto;color-interpolation-filters:linearRGB;fill:url(#linearGradient4189);image-rendering:auto;text-rendering:auto;color:#000000;fill-rule:evenodd;stroke-width:2;color-rendering:auto;color-interpolation:sRGB" id="path4179" d="m 779.01953,175.38672 -14.42969,22.12695 -6.15234,-4.39453 -1.16211,1.62891 7.84961,5.60547 15.57031,-23.87305 -1.67578,-1.09375 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:#368902;stroke-linecap:square;stroke-width:2" id="rect4186-2-1-5" d="m 749.85718,192.93361 0,2 c 0,7 10.26331,16.56134 19,20.99805 8.73669,-4.43671 19,-13.99805 19,-20.99805 l 0,-2 c 0,7 -10.26331,16.56134 -19,20.99805 -8.73669,-4.43671 -19,-13.99805 -19,-20.99805 z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
29
src/apps/res/icons/deskflow-light/status/64/security-low.svg
Normal file
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg width="64" version="1.1" xmlns="http://www.w3.org/2000/svg" height="64" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
||||
<defs id="defs3811">
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4227">
|
||||
<stop style="stop-color:#292c2f" id="stop4229"/>
|
||||
<stop offset="1" style="stop-opacity:0" id="stop4231"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4191-1-7" xlink:href="#linearGradient4227" y1="9" y2="23" x1="9.00001" gradientUnits="userSpaceOnUse" x2="23.00004" gradientTransform="matrix(2 0 0 2 735.85719 158.93361)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4344">
|
||||
<stop style="stop-color:#ed868d" id="stop4346"/>
|
||||
<stop offset="1" style="stop-color:#fbe6e8" id="stop4348"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4435">
|
||||
<stop style="stop-color:#c61423" id="stop4437"/>
|
||||
<stop offset="1" style="stop-color:#dc2b41" id="stop4439"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4179" xlink:href="#linearGradient4344" y1="201.93361" y2="177.93361" gradientUnits="userSpaceOnUse" x2="0" gradientTransform="matrix(1 0 0 1 0.000002 -2.999999)"/>
|
||||
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4435" id="linearGradient4424" y1="58" y2="6" x2="0" gradientUnits="userSpaceOnUse"/>
|
||||
</defs>
|
||||
<metadata id="metadata3814"/>
|
||||
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="matrix(1 0 0 1 -736.85718 -157.93361)">
|
||||
<path style="fill:url(#linearGradient4424);stroke-linecap:square;stroke-width:2" id="rect4186-2-1" d="M 32 6 C 25.66667 9.35447 19.33333 10.72491 13 12 L 13 37 C 13 44 23.26331 53.561337 32 57.998047 C 40.73669 53.561337 51 44 51 37 L 51 12 C 44.66667 10.72491 38.33333 9.35447 32 6 z " transform="matrix(1 0 0 1 736.85718 157.93361)"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4191-1-7);opacity:0.2;fill-rule:evenodd" id="path4184-5" d="m 779.62257,175.16823 -8.76539,9.76538 -2,2 -10,10 -1.35192,1.11731 17.0391,17.88269 20.31282,0 0,-25.53077 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4179)" id="rect4168" d="m 779.44312,174.93361 1.41406,1.41406 -10.58594,10.58594 10.58594,10.58594 -1.41406,1.41406 -10.58594,-10.58594 -10.58594,10.58594 -1.41406,-1.41406 10.58594,-10.58594 -10.58594,-10.58594 1.41406,-1.41406 10.58594,10.58594 10.58594,-10.58594 z"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:#aa111e;stroke-linecap:square;stroke-width:2" id="rect4186-2-1-5" d="m 749.85718,192.93361 0,2 c 0,7 10.26331,16.56134 19,20.99805 8.73669,-4.43671 19,-13.99805 19,-20.99805 l 0,-2 c 0,7 -10.26331,16.56134 -19,20.99805 -8.73669,-4.43671 -19,-13.99805 -19,-20.99805 z"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.9 KiB |
@ -0,0 +1,29 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
|
||||
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||
<svg width="64" version="1.1" xmlns="http://www.w3.org/2000/svg" height="64" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape">
|
||||
<defs id="defs3811">
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4155">
|
||||
<stop style="stop-color:#fcd994" id="stop4157"/>
|
||||
<stop offset="1" style="stop-color:#fff6e1" id="stop4159"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4227">
|
||||
<stop style="stop-color:#292c2f" id="stop4229"/>
|
||||
<stop offset="1" style="stop-opacity:0" id="stop4231"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4191-1-7" xlink:href="#linearGradient4227" y1="9" y2="23" x1="9.00001" gradientUnits="userSpaceOnUse" x2="23.00004" gradientTransform="matrix(2 0 0 2 735.85719 158.93361)"/>
|
||||
<linearGradient inkscape:collect="always" id="linearGradient4143-6">
|
||||
<stop style="stop-color:#faae2a" id="stop4145-8"/>
|
||||
<stop offset="1" style="stop-color:#ffc35a" id="stop4147-0"/>
|
||||
</linearGradient>
|
||||
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4143-6" id="linearGradient4181" y1="6" x1="32" y2="57" x2="31" gradientUnits="userSpaceOnUse"/>
|
||||
<linearGradient inkscape:collect="always" xlink:href="#linearGradient4155" id="linearGradient4190" y1="17" y2="41" x2="0" gradientUnits="userSpaceOnUse"/>
|
||||
</defs>
|
||||
<metadata id="metadata3814"/>
|
||||
<g inkscape:label="Layer 1" inkscape:groupmode="layer" id="layer1" transform="matrix(1 0 0 1 -736.85718 -157.93361)">
|
||||
<path style="fill:url(#linearGradient4181);stroke-linecap:square;stroke-width:2" id="rect4186-2-1" d="M 32 6 C 25.66667 9.35447 19.33333 10.72491 13 12 L 13 37 C 13 44 23.26331 53.561337 32 57.998047 C 40.73669 53.561337 51 44 51 37 L 51 12 C 44.66667 10.72491 38.33333 9.35447 32 6 z " transform="matrix(1 0 0 1 736.85718 157.93361)"/>
|
||||
<path inkscape:connector-curvature="0" style="fill:url(#linearGradient4191-1-7);opacity:0.2;fill-rule:evenodd" id="path4184-5" d="m 769.85718,174.93361 -2,0 0,20 2,2 -2,2 16,17 11,0 0,-18 z"/>
|
||||
<path style="fill:url(#linearGradient4190);stroke-linecap:square;stroke-width:2" id="rect4179" d="M 31 17 L 31 37 L 33 37 L 33 17 L 31 17 z M 31 39 L 31 41 L 33 41 L 33 39 L 31 39 z " transform="matrix(1 0 0 1 736.85718 157.93361)"/>
|
||||
<path style="fill:#e59305;stroke-linecap:square;stroke-width:2" id="rect4186-2-1-5" d="M 13 35 L 13 37 C 13 44 23.26331 53.561337 32 57.998047 C 40.73669 53.561337 51 44 51 37 L 51 35 C 51 42 40.73669 51.561337 32 55.998047 C 23.26331 51.561337 13 42 13 35 z " transform="matrix(1 0 0 1 736.85718 157.93361)"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
After Width: | Height: | Size: 2.7 KiB |
@ -22,6 +22,7 @@
|
||||
|
||||
#include "gui/proxy/QSettingsProxy.h"
|
||||
|
||||
#include <QIcon>
|
||||
#include <QList>
|
||||
#include <QPixmap>
|
||||
#include <QString>
|
||||
@ -174,7 +175,7 @@ protected:
|
||||
}
|
||||
|
||||
private:
|
||||
QPixmap m_Pixmap = QPixmap(":res/icons/64x64/video-display.png");
|
||||
QPixmap m_Pixmap = QIcon::fromTheme("video-display").pixmap(QSize(64, 64));
|
||||
QString m_Name;
|
||||
QStringList m_Aliases;
|
||||
QList<int> m_Modifiers;
|
||||
|
||||
@ -17,6 +17,8 @@
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <QDir>
|
||||
#include <QFileInfoList>
|
||||
#include <QGuiApplication>
|
||||
#include <QPalette>
|
||||
#include <QStyleHints>
|
||||
@ -36,5 +38,40 @@ inline bool isDarkMode()
|
||||
const auto window = defaultPalette.color(QPalette::Window);
|
||||
return text.lightness() > window.lightness();
|
||||
}
|
||||
/**
|
||||
* @brief get a string for the iconMode
|
||||
* @returns "dark" or "light"
|
||||
*/
|
||||
inline QString iconMode()
|
||||
{
|
||||
return isDarkMode() ? QStringLiteral("dark") : QStringLiteral("light");
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief checkSubDir checks for subdirs in a dir
|
||||
* @param path The path to check for subdirs
|
||||
* @return list of subdirs
|
||||
*/
|
||||
inline QStringList checkSubDir(const QString &path)
|
||||
{
|
||||
QStringList paths;
|
||||
auto dir = QDir(path);
|
||||
const QFileInfoList items = dir.entryInfoList({"*"}, QDir::Dirs | QDir::Files | QDir::NoDotAndDotDot);
|
||||
for (const QFileInfo &item : items) {
|
||||
if (item.isDir()) {
|
||||
paths.append(item.absoluteFilePath());
|
||||
paths.append(checkSubDir(item.absoluteFilePath()));
|
||||
}
|
||||
}
|
||||
return paths;
|
||||
}
|
||||
|
||||
/**
|
||||
* @brief setIconFallbackPaths Set the icon fallback path to our light or dark theme
|
||||
*/
|
||||
inline void setIconFallbackPaths()
|
||||
{
|
||||
QStringList paths = checkSubDir(QStringLiteral(":/icons/deskflow-%1").arg(iconMode()));
|
||||
QIcon::setFallbackSearchPaths(paths);
|
||||
}
|
||||
} // namespace deskflow::gui
|
||||
|
||||