Merge remote-tracking branch 'refs/remotes/origin/main'
@@ -27,6 +27,7 @@ else
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
sudo pacman -S --needed \
|
sudo pacman -S --needed \
|
||||||
|
fish \
|
||||||
vim \
|
vim \
|
||||||
nvim \
|
nvim \
|
||||||
firefox \
|
firefox \
|
||||||
@@ -53,5 +54,5 @@ sudo pacman -S --needed \
|
|||||||
rbw \
|
rbw \
|
||||||
extra/ttf-jetbrains-mono-nerd
|
extra/ttf-jetbrains-mono-nerd
|
||||||
|
|
||||||
|
# fish as standard terminal
|
||||||
|
chsh -s /usr/bin/fish
|
||||||
|
|||||||
@@ -1,20 +1,23 @@
|
|||||||
|
|
||||||
# Setup rbw
|
retry() {
|
||||||
rbw config set email mathias2784@web.de
|
local N=$1; shift
|
||||||
rbw register
|
local t=$2; shift
|
||||||
|
for i in $(seq 1 $N); do
|
||||||
|
"$@" && return 0 || sleep $t
|
||||||
|
done
|
||||||
|
return 1
|
||||||
|
}
|
||||||
|
|
||||||
export NC_USER="mathias"
|
stow_nextcloud() {
|
||||||
export NC_PASSWORD="$(rbw get Nextcloud)"
|
# Nextcloud
|
||||||
|
if [ ! -d "$HOME/nextcloud/local_configs" ]; then
|
||||||
mkdir -p $HOME/nextcloud
|
|
||||||
|
|
||||||
nextcloudcmd --non-interactive \
|
|
||||||
~/nextcloud \
|
|
||||||
https://nextcloud.schneiderserver.site
|
|
||||||
|
|
||||||
# Nextcloud
|
|
||||||
if [ ! -d "$HOME/nextcloud/local_configs" ]; then
|
|
||||||
echo "Fehler: Benötige $HOME/nextcloud/local_configs" >&2
|
echo "Fehler: Benötige $HOME/nextcloud/local_configs" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
stow --dir=$HOME/nextcloud/local_configs default
|
stow --dir=$HOME/nextcloud/local_configs --target=$HOME default
|
||||||
|
}
|
||||||
|
|
||||||
|
nextcloud &
|
||||||
|
|
||||||
|
retry 90 10 stow_nextcloud
|
||||||
|
|
||||||
|
|||||||
@@ -6,13 +6,13 @@ basic:
|
|||||||
stow nvim
|
stow nvim
|
||||||
bash .install_skripte/nextcloud.sh
|
bash .install_skripte/nextcloud.sh
|
||||||
hypr: basic
|
hypr: basic
|
||||||
stow hypr
|
|
||||||
bash .install_skripte/install_hypr_pcks.sh
|
bash .install_skripte/install_hypr_pcks.sh
|
||||||
|
stow hypr
|
||||||
bash hypr/.config/hypr/scripts/ensure-env.sh
|
bash hypr/.config/hypr/scripts/ensure-env.sh
|
||||||
bash hypr/.config/hypr/scripts/portal-host-override.sh
|
bash hypr/.config/hypr/scripts/portal-host-override.sh
|
||||||
bash hypr/.config/hypr/scripts/fix_dolphin_file_associations.sh
|
bash hypr/.config/hypr/scripts/fix_dolphin_file_associations.sh
|
||||||
kreation: basic
|
kreation: basic
|
||||||
stow kreation
|
|
||||||
bash .install_skripte/install_kreation_pcks.sh
|
bash .install_skripte/install_kreation_pcks.sh
|
||||||
|
stow kreation
|
||||||
bunters-monster: basic hypr kreation
|
bunters-monster: basic hypr kreation
|
||||||
.install_skripte/buntes-monster-links.sh
|
.install_skripte/buntes-monster-links.sh
|
||||||
|
|||||||
@@ -0,0 +1,3 @@
|
|||||||
|
if status is-interactive
|
||||||
|
# Commands to run in interactive sessions can go here
|
||||||
|
end
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
# This file contains fish universal variable definitions.
|
||||||
|
# VERSION: 3.0
|
||||||
|
SETUVAR __fish_initialized:4300
|
||||||
@@ -0,0 +1,136 @@
|
|||||||
|
function fish_prompt
|
||||||
|
# This prompt shows:
|
||||||
|
# - green lines if the last return command is OK, red otherwise
|
||||||
|
# - your user name, in red if root or yellow otherwise
|
||||||
|
# - your hostname, in cyan if ssh or blue otherwise
|
||||||
|
# - the current path (with prompt_pwd)
|
||||||
|
# - date +%X
|
||||||
|
# - the current virtual environment, if any
|
||||||
|
# - the current git status, if any, with fish_git_prompt
|
||||||
|
# - the current battery state, if any, and if your power cable is unplugged, and if you have "acpi"
|
||||||
|
# - current background jobs, if any
|
||||||
|
|
||||||
|
# It goes from:
|
||||||
|
# ┬─[nim@Hattori:~]─[11:39:00]
|
||||||
|
# ╰─>$ echo here
|
||||||
|
|
||||||
|
# To:
|
||||||
|
# ┬─[nim@Hattori:~/w/dashboard]─[11:37:14]─[V:django20]─[G:master↑1|●1✚1…1]─[B:85%, 05:41:42 remaining]
|
||||||
|
# │ 2 15054 0% arrêtée sleep 100000
|
||||||
|
# │ 1 15048 0% arrêtée sleep 100000
|
||||||
|
# ╰─>$ echo there
|
||||||
|
|
||||||
|
set -l retc red
|
||||||
|
test $status = 0; and set retc green
|
||||||
|
|
||||||
|
set -q __fish_git_prompt_showupstream
|
||||||
|
or set -g __fish_git_prompt_showupstream auto
|
||||||
|
|
||||||
|
function _nim_prompt_wrapper
|
||||||
|
set retc $argv[1]
|
||||||
|
set -l field_name $argv[2]
|
||||||
|
set -l field_value $argv[3]
|
||||||
|
|
||||||
|
set_color normal
|
||||||
|
set_color $retc
|
||||||
|
echo -n '─'
|
||||||
|
set_color -o green
|
||||||
|
echo -n '['
|
||||||
|
set_color normal
|
||||||
|
test -n $field_name
|
||||||
|
and echo -n $field_name:
|
||||||
|
set_color $retc
|
||||||
|
echo -n $field_value
|
||||||
|
set_color -o green
|
||||||
|
echo -n ']'
|
||||||
|
end
|
||||||
|
|
||||||
|
set_color $retc
|
||||||
|
echo -n '┬─'
|
||||||
|
set_color -o green
|
||||||
|
echo -n [
|
||||||
|
|
||||||
|
if functions -q fish_is_root_user; and fish_is_root_user
|
||||||
|
set_color -o red
|
||||||
|
else
|
||||||
|
set_color -o yellow
|
||||||
|
end
|
||||||
|
|
||||||
|
echo -n $USER
|
||||||
|
set_color -o white
|
||||||
|
echo -n @
|
||||||
|
|
||||||
|
if test -z "$SSH_CLIENT"
|
||||||
|
set_color -o blue
|
||||||
|
else
|
||||||
|
set_color -o cyan
|
||||||
|
end
|
||||||
|
|
||||||
|
echo -n (prompt_hostname)
|
||||||
|
set_color -o white
|
||||||
|
echo -n :(prompt_pwd)
|
||||||
|
set_color -o green
|
||||||
|
echo -n ']'
|
||||||
|
|
||||||
|
# Date
|
||||||
|
_nim_prompt_wrapper $retc '' (date +%X)
|
||||||
|
|
||||||
|
# Vi-mode
|
||||||
|
|
||||||
|
if test "$fish_key_bindings" = fish_vi_key_bindings
|
||||||
|
or test "$fish_key_bindings" = fish_hybrid_key_bindings
|
||||||
|
set -l mode
|
||||||
|
switch $fish_bind_mode
|
||||||
|
case default
|
||||||
|
set mode (set_color --bold red)N
|
||||||
|
case operator f F t T
|
||||||
|
set mode (set_color --bold cyan)N
|
||||||
|
case insert
|
||||||
|
set mode (set_color --bold green)I
|
||||||
|
case replace_one
|
||||||
|
set mode (set_color --bold green)R
|
||||||
|
case replace
|
||||||
|
set mode (set_color --bold cyan)R
|
||||||
|
case visual
|
||||||
|
set mode (set_color --bold magenta)V
|
||||||
|
end
|
||||||
|
set mode $mode(set_color normal)
|
||||||
|
_nim_prompt_wrapper $retc '' $mode
|
||||||
|
end
|
||||||
|
|
||||||
|
# Virtual Environment
|
||||||
|
set -q VIRTUAL_ENV_DISABLE_PROMPT
|
||||||
|
or set -g VIRTUAL_ENV_DISABLE_PROMPT true
|
||||||
|
set -q VIRTUAL_ENV
|
||||||
|
and _nim_prompt_wrapper $retc V (path basename "$VIRTUAL_ENV")
|
||||||
|
|
||||||
|
# git
|
||||||
|
set -l prompt_git (fish_git_prompt '%s')
|
||||||
|
test -n "$prompt_git"
|
||||||
|
and _nim_prompt_wrapper $retc G $prompt_git
|
||||||
|
|
||||||
|
# Battery status
|
||||||
|
type -q acpi
|
||||||
|
and acpi -a 2>/dev/null | string match -rq off
|
||||||
|
and _nim_prompt_wrapper $retc B (acpi -b | cut -d' ' -f 4-)
|
||||||
|
|
||||||
|
# New line
|
||||||
|
echo
|
||||||
|
|
||||||
|
# Background jobs
|
||||||
|
set_color normal
|
||||||
|
|
||||||
|
for job in (jobs)
|
||||||
|
set_color $retc
|
||||||
|
echo -n '│ '
|
||||||
|
set_color brown
|
||||||
|
echo $job
|
||||||
|
end
|
||||||
|
|
||||||
|
set_color normal
|
||||||
|
set_color $retc
|
||||||
|
echo -n '╰─>'
|
||||||
|
set_color -o red
|
||||||
|
echo -n '$ '
|
||||||
|
set_color normal
|
||||||
|
end
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
[General]
|
||||||
|
Version=202
|
||||||
|
ViewPropsTimestamp=2026,2,28,8,21,11.782
|
||||||
|
|
||||||
|
[KFileDialog Settings]
|
||||||
|
Places Icons Auto-resize=false
|
||||||
|
Places Icons Static Size=22
|
||||||
|
|
||||||
|
[MainWindow]
|
||||||
|
MenuBar=Disabled
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
[Kate Vi Input Mode Settings]
|
||||||
|
Command Mode Mapping Keys=
|
||||||
|
Command Mode Mappings=
|
||||||
|
Command Mode Mappings Recursion=
|
||||||
|
Insert Mode Mapping Keys=
|
||||||
|
Insert Mode Mappings=
|
||||||
|
Insert Mode Mappings Recursion=
|
||||||
|
Macro Completions=
|
||||||
|
Macro Contents=
|
||||||
|
Macro Registers=
|
||||||
|
Map Leader=\\
|
||||||
|
Normal Mode Mapping Keys=
|
||||||
|
Normal Mode Mappings=
|
||||||
|
Normal Mode Mappings Recursion=
|
||||||
|
Visual Mode Mapping Keys=
|
||||||
|
Visual Mode Mappings=
|
||||||
|
Visual Mode Mappings Recursion=
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
[Libinput][1739][0][Synaptics TM3471-020]
|
||||||
|
NaturalScroll=true
|
||||||
@@ -0,0 +1,135 @@
|
|||||||
|
[ColorEffects:Disabled]
|
||||||
|
ChangeSelectionColor=
|
||||||
|
Color=56,56,56
|
||||||
|
ColorAmount=0
|
||||||
|
ColorEffect=0
|
||||||
|
ContrastAmount=0.65
|
||||||
|
ContrastEffect=1
|
||||||
|
Enable=
|
||||||
|
IntensityAmount=0.1
|
||||||
|
IntensityEffect=2
|
||||||
|
|
||||||
|
[ColorEffects:Inactive]
|
||||||
|
ChangeSelectionColor=true
|
||||||
|
Color=112,111,110
|
||||||
|
ColorAmount=0.025000000000000001
|
||||||
|
ColorEffect=2
|
||||||
|
ContrastAmount=0.10000000000000001
|
||||||
|
ContrastEffect=2
|
||||||
|
Enable=false
|
||||||
|
IntensityAmount=0
|
||||||
|
IntensityEffect=0
|
||||||
|
|
||||||
|
[Colors:Button]
|
||||||
|
BackgroundAlternate=64,69,82
|
||||||
|
BackgroundNormal=40,42,54
|
||||||
|
DecorationFocus=68,71,90
|
||||||
|
DecorationHover=68,71,90
|
||||||
|
ForegroundActive=61,174,233
|
||||||
|
ForegroundInactive=102,106,115
|
||||||
|
ForegroundLink=41,128,185
|
||||||
|
ForegroundNegative=255,85,85
|
||||||
|
ForegroundNeutral=255,184,108
|
||||||
|
ForegroundNormal=248,248,242
|
||||||
|
ForegroundPositive=80,250,122
|
||||||
|
ForegroundVisited=82,148,226
|
||||||
|
|
||||||
|
[Colors:Selection]
|
||||||
|
BackgroundAlternate=29,153,243
|
||||||
|
BackgroundNormal=68,71,90
|
||||||
|
DecorationFocus=68,71,90
|
||||||
|
DecorationHover=68,71,90
|
||||||
|
ForegroundActive=252,252,252
|
||||||
|
ForegroundInactive=211,218,227
|
||||||
|
ForegroundLink=253,188,75
|
||||||
|
ForegroundNegative=255,85,85
|
||||||
|
ForegroundNeutral=255,184,108
|
||||||
|
ForegroundNormal=254,254,254
|
||||||
|
ForegroundPositive=80,250,122
|
||||||
|
ForegroundVisited=189,195,199
|
||||||
|
|
||||||
|
[Colors:Tooltip]
|
||||||
|
BackgroundAlternate=47,52,63
|
||||||
|
BackgroundNormal=53,57,69
|
||||||
|
DecorationFocus=68,71,90
|
||||||
|
DecorationHover=68,71,90
|
||||||
|
ForegroundActive=61,174,233
|
||||||
|
ForegroundInactive=102,106,115
|
||||||
|
ForegroundLink=41,128,185
|
||||||
|
ForegroundNegative=255,85,85
|
||||||
|
ForegroundNeutral=255,184,108
|
||||||
|
ForegroundNormal=211,218,227
|
||||||
|
ForegroundPositive=80,250,122
|
||||||
|
ForegroundVisited=82,148,226
|
||||||
|
|
||||||
|
[Colors:View]
|
||||||
|
BackgroundAlternate=43,45,59
|
||||||
|
BackgroundNormal=30,31,41
|
||||||
|
DecorationFocus=68,71,90
|
||||||
|
DecorationHover=68,71,90
|
||||||
|
ForegroundActive=139,233,253
|
||||||
|
ForegroundInactive=102,106,115
|
||||||
|
ForegroundLink=82,148,226
|
||||||
|
ForegroundNegative=255,85,85
|
||||||
|
ForegroundNeutral=255,184,108
|
||||||
|
ForegroundNormal=248,248,242
|
||||||
|
ForegroundPositive=80,250,122
|
||||||
|
ForegroundVisited=124,183,255
|
||||||
|
|
||||||
|
[Colors:Window]
|
||||||
|
BackgroundAlternate=47,52,63
|
||||||
|
BackgroundNormal=40,42,54
|
||||||
|
DecorationFocus=68,71,90
|
||||||
|
DecorationHover=68,71,90
|
||||||
|
ForegroundActive=139,233,253
|
||||||
|
ForegroundInactive=102,106,115
|
||||||
|
ForegroundLink=41,128,185
|
||||||
|
ForegroundNegative=255,85,85
|
||||||
|
ForegroundNeutral=255,184,108
|
||||||
|
ForegroundNormal=248,248,242
|
||||||
|
ForegroundPositive=80,250,122
|
||||||
|
ForegroundVisited=68,71,90
|
||||||
|
|
||||||
|
[General]
|
||||||
|
ColorSchemeHash=154cb4d8d3e569860cc378f981d35f572c5b9e1d
|
||||||
|
XftHintStyle=hintslight
|
||||||
|
XftSubPixel=none
|
||||||
|
fixed=Hack,10,-1,5,400,0,0,0,0,0,0,0,0,0,0,1
|
||||||
|
font=Hack,10,-1,5,400,0,0,0,0,0,0,0,0,0,0,1
|
||||||
|
menuFont=Hack,10,-1,5,400,0,0,0,0,0,0,0,0,0,0,1
|
||||||
|
smallestReadableFont=Hack,8,-1,5,400,0,0,0,0,0,0,0,0,0,0,1
|
||||||
|
toolBarFont=Hack,10,-1,5,400,0,0,0,0,0,0,0,0,0,0,1
|
||||||
|
|
||||||
|
[Icons]
|
||||||
|
Theme=candy-icons
|
||||||
|
|
||||||
|
[KDE]
|
||||||
|
LookAndFeelPackage=org.kde.breezedark.desktop
|
||||||
|
contrast=5
|
||||||
|
frameContrast=0.2
|
||||||
|
|
||||||
|
[KFileDialog Settings]
|
||||||
|
Allow Expansion=false
|
||||||
|
Automatically select filename extension=true
|
||||||
|
Breadcrumb Navigation=true
|
||||||
|
Decoration position=2
|
||||||
|
Show Full Path=false
|
||||||
|
Show Inline Previews=true
|
||||||
|
Show Preview=false
|
||||||
|
Show Speedbar=true
|
||||||
|
Show hidden files=false
|
||||||
|
Sort by=Name
|
||||||
|
Sort directories first=true
|
||||||
|
Sort hidden files last=false
|
||||||
|
Sort reversed=false
|
||||||
|
Speedbar Width=230
|
||||||
|
View Style=DetailTree
|
||||||
|
|
||||||
|
[WM]
|
||||||
|
activeBackground=47,52,63
|
||||||
|
activeBlend=47,52,63
|
||||||
|
activeFont=Hack,10,-1,5,400,0,0,0,0,0,0,0,0,0,0,1
|
||||||
|
activeForeground=211,218,227
|
||||||
|
inactiveBackground=47,52,63
|
||||||
|
inactiveBlend=47,52,63
|
||||||
|
inactiveForeground=102,106,115
|
||||||
@@ -0,0 +1,278 @@
|
|||||||
|
[ActivityManager]
|
||||||
|
_k_friendly_name=Aktivitätenverwaltung
|
||||||
|
switch-to-activity-1e25e98a-0484-4ad3-a1c9-c8b707d9bd89=none,none,Zu Aktivität „Standard“ wechseln
|
||||||
|
|
||||||
|
[KDE Keyboard Layout Switcher]
|
||||||
|
Switch to Last-Used Keyboard Layout=Meta+Alt+L,Meta+Alt+L,Auf zuletzt verwendete Tastaturbelegung umschalten
|
||||||
|
Switch to Next Keyboard Layout=Meta+Alt+K,Meta+Alt+K,Auf nächste Tastaturbelegung umschalten
|
||||||
|
_k_friendly_name=Umschaltung der Tastaturbelegung
|
||||||
|
|
||||||
|
[kaccess]
|
||||||
|
Toggle Screen Reader On and Off=Meta+Alt+S,Meta+Alt+S,Screenreader ein-/ausschalten
|
||||||
|
_k_friendly_name=Zugangshilfen
|
||||||
|
|
||||||
|
[kmix]
|
||||||
|
_k_friendly_name=Lautstärke
|
||||||
|
decrease_microphone_volume=Microphone Volume Down,Microphone Volume Down,Mikrofonlautstärke verringern
|
||||||
|
decrease_volume=Volume Down,Volume Down,Lautstärke verringern
|
||||||
|
decrease_volume_small=Shift+Volume Down,Shift+Volume Down,Lautstärke um 1 % verringern
|
||||||
|
increase_microphone_volume=Microphone Volume Up,Microphone Volume Up,Mikrofonlautstärke erhöhen
|
||||||
|
increase_volume=Volume Up,Volume Up,Lautstärke erhöhen
|
||||||
|
increase_volume_small=Shift+Volume Up,Shift+Volume Up,Lautstärke um 1 % erhöhen
|
||||||
|
mic_mute=Microphone Mute\tMeta+Volume Mute,Microphone Mute\tMeta+Volume Mute,Mikrofon stummschalten
|
||||||
|
mute=Volume Mute,Volume Mute,Stummschalten
|
||||||
|
|
||||||
|
[ksmserver]
|
||||||
|
Halt Without Confirmation=Meta+Ctrl+Esc,,Ohne Rückfrage herunterfahren
|
||||||
|
Lock Session=Meta+L\tScreensaver,Meta+L\tScreensaver,Sitzung sperren
|
||||||
|
Log Out=Ctrl+Alt+Del,Ctrl+Alt+Del,Abmeldedialog anzeigen
|
||||||
|
Log Out Without Confirmation=Meta+Esc,,Ohne Rückfrage abmelden
|
||||||
|
LogOut=,,Abmelden
|
||||||
|
Reboot=,,Neu starten
|
||||||
|
Reboot Without Confirmation=Meta+Alt+Esc,,Ohne Rückfrage neu starten
|
||||||
|
Shut Down=,,Herunterfahren
|
||||||
|
_k_friendly_name=Sitzungsverwaltung
|
||||||
|
|
||||||
|
[kwin]
|
||||||
|
Activate Window Demanding Attention=Meta+Ctrl+A,Meta+Ctrl+A,Fenster aktivieren\\, das Aufmerksamkeit erfordert
|
||||||
|
Cycle Overview=none,none,Durch Überblick und Rasteransicht wechseln
|
||||||
|
Cycle Overview Opposite=none,none,Durch Rasteransicht und Überblick wechseln
|
||||||
|
Decrease Opacity=,,Die Deckkraft des aktiven Fensters um 5 % verringern
|
||||||
|
Edit Tiles=Meta+T,Meta+T,Tiling-Editor ein-/ausschalten
|
||||||
|
Expose=Meta+F9\tCtrl+F9,Meta+F9\tCtrl+F9,Fenster der aktuellen Arbeitsfläche anzeigen
|
||||||
|
ExposeAll=Meta+F10\tLaunch (C)\tCtrl+F10,Meta+F10\tLaunch (C)\tCtrl+F10,Fenster aller Arbeitsflächen anzeigen
|
||||||
|
ExposeClass=Meta+F7\tCtrl+F7,Meta+F7\tCtrl+F7,Fenster der Fensterklasse anzeigen
|
||||||
|
ExposeClassCurrentDesktop=none,none,Fenster der Fensterklasse auf der aktuellen Arbeitsfläche anzeigen
|
||||||
|
Grid View=Meta+G,Meta+G,Übersicht umschalten
|
||||||
|
Increase Opacity=,,Die Deckkraft des aktiven Fensters um 5 % erhöhen
|
||||||
|
Kill Window=none,Meta+Ctrl+Esc,Fenster beseitigen
|
||||||
|
Move Tablet to Next LogicalOutput=none,none,Tablet zur nächsten Ausgabe verschieben
|
||||||
|
MoveMouseToCenter=Meta+F6,Meta+F6,Mauszeiger zentrieren
|
||||||
|
MoveMouseToFocus=Meta+F5,Meta+F5,Mauszeiger in den Fokus verschieben
|
||||||
|
MoveZoomDown=none,none,Vergrößerten Bereich nach unten verschieben
|
||||||
|
MoveZoomLeft=none,none,Vergrößerten Bereich nach links verschieben
|
||||||
|
MoveZoomRight=none,none,Vergrößerten Bereich nach rechts verschieben
|
||||||
|
MoveZoomUp=none,none,Vergrößerten Bereich nach oben verschieben
|
||||||
|
Overview=Meta+W,Meta+W,Übersicht umschalten
|
||||||
|
Setup Window Shortcut=,,Kurzbefehl für Fenster einrichten
|
||||||
|
Show Desktop=Meta+D,Meta+D,Blick auf die Arbeitsfläche
|
||||||
|
Switch One Desktop Down=Meta+Ctrl+Down,Meta+Ctrl+Down,Eine Arbeitsfläche nach unten
|
||||||
|
Switch One Desktop Up=Meta+Ctrl+Up,Meta+Ctrl+Up,Eine Arbeitsfläche nach oben
|
||||||
|
Switch One Desktop to the Left=Meta+Ctrl+Left,Meta+Ctrl+Left,Eine Arbeitsfläche nach links
|
||||||
|
Switch One Desktop to the Right=Meta+Ctrl+Right,Meta+Ctrl+Right,Eine Arbeitsfläche nach rechts
|
||||||
|
Switch Window Down=Meta+Alt+Down,Meta+Alt+Down,Zum Fenster darunter wechseln
|
||||||
|
Switch Window Left=Meta+Alt+Left,Meta+Alt+Left,Zum Fenster links wechseln
|
||||||
|
Switch Window Right=Meta+Alt+Right,Meta+Alt+Right,Zum Fenster rechts wechseln
|
||||||
|
Switch Window Up=Meta+Alt+Up,Meta+Alt+Up,Zum Fenster darüber wechseln
|
||||||
|
Switch to Desktop 1=Meta+F1\tCtrl+F1,Meta+F1\tCtrl+F1,Auf Arbeitsfläche 1 umschalten
|
||||||
|
Switch to Desktop 10=,,Auf Arbeitsfläche 10 umschalten
|
||||||
|
Switch to Desktop 11=,,Auf Arbeitsfläche 11 umschalten
|
||||||
|
Switch to Desktop 12=,,Auf Arbeitsfläche 12 umschalten
|
||||||
|
Switch to Desktop 13=,,Auf Arbeitsfläche 13 umschalten
|
||||||
|
Switch to Desktop 14=,,Auf Arbeitsfläche 14 umschalten
|
||||||
|
Switch to Desktop 15=,,Auf Arbeitsfläche 15 umschalten
|
||||||
|
Switch to Desktop 16=,,Auf Arbeitsfläche 16 umschalten
|
||||||
|
Switch to Desktop 17=,,Auf Arbeitsfläche 17 umschalten
|
||||||
|
Switch to Desktop 18=,,Auf Arbeitsfläche 18 umschalten
|
||||||
|
Switch to Desktop 19=,,Auf Arbeitsfläche 19 umschalten
|
||||||
|
Switch to Desktop 2=Meta+F2\tCtrl+F2,Meta+F2\tCtrl+F2,Auf Arbeitsfläche 2 umschalten
|
||||||
|
Switch to Desktop 20=,,Auf Arbeitsfläche 20 umschalten
|
||||||
|
Switch to Desktop 21=,,Auf Arbeitsfläche 21 umschalten
|
||||||
|
Switch to Desktop 22=,,Auf Arbeitsfläche 22 umschalten
|
||||||
|
Switch to Desktop 23=,,Auf Arbeitsfläche 23 umschalten
|
||||||
|
Switch to Desktop 24=,,Auf Arbeitsfläche 24 umschalten
|
||||||
|
Switch to Desktop 25=,,Auf Arbeitsfläche 25 umschalten
|
||||||
|
Switch to Desktop 3=Meta+F3\tCtrl+F3,Meta+F3\tCtrl+F3,Auf Arbeitsfläche 3 umschalten
|
||||||
|
Switch to Desktop 4=Meta+F4\tCtrl+F4,Meta+F4\tCtrl+F4,Auf Arbeitsfläche 4 umschalten
|
||||||
|
Switch to Desktop 5=,,Auf Arbeitsfläche 5 umschalten
|
||||||
|
Switch to Desktop 6=,,Auf Arbeitsfläche 6 umschalten
|
||||||
|
Switch to Desktop 7=,,Auf Arbeitsfläche 7 umschalten
|
||||||
|
Switch to Desktop 8=,,Auf Arbeitsfläche 8 umschalten
|
||||||
|
Switch to Desktop 9=,,Auf Arbeitsfläche 9 umschalten
|
||||||
|
Switch to Next Desktop=,,Zur nächsten Arbeitsfläche umschalten
|
||||||
|
Switch to Next Screen=,,Zum nächsten Bildschirm wechseln
|
||||||
|
Switch to Previous Desktop=,,Zur vorherigen Arbeitsfläche umschalten
|
||||||
|
Switch to Previous Screen=,,Zum vorherigen Bildschirm wechseln
|
||||||
|
Switch to Screen 0=,,Zum Bildschirm 0 wechseln
|
||||||
|
Switch to Screen 1=,,Zum Bildschirm 1 wechseln
|
||||||
|
Switch to Screen 2=,,Zum Bildschirm 2 wechseln
|
||||||
|
Switch to Screen 3=,,Zum Bildschirm 3 wechseln
|
||||||
|
Switch to Screen 4=,,Zum Bildschirm 4 wechseln
|
||||||
|
Switch to Screen 5=,,Zum Bildschirm 5 wechseln
|
||||||
|
Switch to Screen 6=,,Zum Bildschirm 6 wechseln
|
||||||
|
Switch to Screen 7=,,Zum Bildschirm 7 wechseln
|
||||||
|
Switch to Screen Above=,,Zum Bildschirm oben wechseln
|
||||||
|
Switch to Screen Below=,,Zum Bildschirm unten wechseln
|
||||||
|
Switch to Screen to the Left=,,Zum Bildschirm links wechseln
|
||||||
|
Switch to Screen to the Right=,,Zum Bildschirm rechts wechseln
|
||||||
|
Toggle Night Color=none,none,Nachtlicht aussetzen/fortsetzen
|
||||||
|
Toggle Window Raise/Lower=,,Fenster nach vorne/hinten
|
||||||
|
Walk Through Windows=Meta+Tab\tAlt+Tab,Meta+Tab\tAlt+Tab,Zwischen Fenstern wechseln
|
||||||
|
Walk Through Windows (Reverse)=Meta+Shift+Tab\tAlt+Shift+Tab,Meta+Shift+Tab\tAlt+Shift+Tab,Zwischen Fenstern wechseln (Gegenrichtung)
|
||||||
|
Walk Through Windows Alternative=none,none,Alternatives Wechseln zwischen Fenstern
|
||||||
|
Walk Through Windows Alternative (Reverse)=none,none,Alternatives Wechseln zwischen Fenstern (Gegenrichtung)
|
||||||
|
Walk Through Windows of Current Application=Meta+`\tAlt+`,Meta+`\tAlt+`,Zwischen Fenstern der aktuellen Anwendung wechseln
|
||||||
|
Walk Through Windows of Current Application (Reverse)=Meta+~\tAlt+~,Meta+~\tAlt+~,Zwischen Fenstern der aktuellen Anwendung wechseln (Gegenrichtung)
|
||||||
|
Walk Through Windows of Current Application Alternative=none,none,Alternatives Wechseln zwischen Fenstern der aktuellen Anwendung
|
||||||
|
Walk Through Windows of Current Application Alternative (Reverse)=none,none,Alternatives Wechseln zwischen Fenstern der aktuellen Anwendung (Gegenrichtung)
|
||||||
|
Window Above Other Windows=,,Fenster im Vordergrund halten
|
||||||
|
Window Below Other Windows=,,Fenster im Hintergrund halten
|
||||||
|
Window Close=Alt+F4\tMeta+Q,Alt+F4,Fenster schließen
|
||||||
|
Window Custom Quick Tile Bottom=,,Fenster im benutzerdefinierten Raster nach unten anordnen
|
||||||
|
Window Custom Quick Tile Left=,,Fenster im benutzerdefinierten Raster nach links anordnen
|
||||||
|
Window Custom Quick Tile Right=,,Fenster im benutzerdefinierten Raster nach rechts anordnen
|
||||||
|
Window Custom Quick Tile Top=,,Fenster im benutzerdefinierten Raster nach oben anordnen
|
||||||
|
Window Fullscreen=,,Fenster auf Vollbildgröße
|
||||||
|
Window Grow Horizontal=,,Fenster waagerecht maximieren
|
||||||
|
Window Grow Vertical=,,Fenster senkrecht maximieren
|
||||||
|
Window Lower=,,Fenster nach hinten
|
||||||
|
Window Maximize=Meta+PgUp,Meta+PgUp,Fenster maximieren
|
||||||
|
Window Maximize Horizontal=,,Fenster waagerecht maximieren
|
||||||
|
Window Maximize Vertical=,,Fenster senkrecht maximieren
|
||||||
|
Window Minimize=Meta+PgDown,Meta+PgDown,Fenster minimieren
|
||||||
|
Window Move=,,Fenster verschieben
|
||||||
|
Window Move Center=,,Fenster zentrieren
|
||||||
|
Window No Border=,,Titelleiste und Rahmen des Fensters ein-/ausschalten
|
||||||
|
Window On All Desktops=,,Fenster auf allen Arbeitsflächen anzeigen
|
||||||
|
Window One Desktop Down=Meta+Ctrl+Shift+Down,Meta+Ctrl+Shift+Down,Fenster eine Arbeitsfläche nach unten
|
||||||
|
Window One Desktop Up=Meta+Ctrl+Shift+Up,Meta+Ctrl+Shift+Up,Fenster eine Arbeitsfläche nach oben
|
||||||
|
Window One Desktop to the Left=Meta+Ctrl+Shift+Left,Meta+Ctrl+Shift+Left,Fenster eine Arbeitsfläche nach links
|
||||||
|
Window One Desktop to the Right=Meta+Ctrl+Shift+Right,Meta+Ctrl+Shift+Right,Fenster eine Arbeitsfläche nach rechts
|
||||||
|
Window One Screen Down=,,Fenster einen Bildschirm nach unten verschieben
|
||||||
|
Window One Screen Up=,,Fenster einen Bildschirm nach oben verschieben
|
||||||
|
Window One Screen to the Left=,,Fenster einen Bildschirm nach links verschieben
|
||||||
|
Window One Screen to the Right=,,Fenster einen Bildschirm nach rechts verschieben
|
||||||
|
Window Operations Menu=Alt+F3,Alt+F3,Fenstermenü
|
||||||
|
Window Pack Down=,,Fenster nach unten verschieben
|
||||||
|
Window Pack Left=,,Fenster nach links verschieben
|
||||||
|
Window Pack Right=,,Fenster nach rechts verschieben
|
||||||
|
Window Pack Up=,,Fenster nach oben verschieben
|
||||||
|
Window Quick Tile Bottom=Meta+Down,Meta+Down,Fenster am unteren Bildschirmrand anordnen
|
||||||
|
Window Quick Tile Bottom Left=,,Fenster am linken unteren Bildschirmrand anordnen
|
||||||
|
Window Quick Tile Bottom Right=,,Fenster am rechten unteren Bildschirmrand anordnen
|
||||||
|
Window Quick Tile Left=Meta+Left,Meta+Left,Fenster am linken Bildschirmrand anordnen
|
||||||
|
Window Quick Tile Right=Meta+Right,Meta+Right,Fenster am rechten Bildschirmrand anordnen
|
||||||
|
Window Quick Tile Top=Meta+Up,Meta+Up,Fenster am oberen Bildschirmrand anordnen
|
||||||
|
Window Quick Tile Top Left=,,Fenster am linken oberen Bildschirmrand anordnen
|
||||||
|
Window Quick Tile Top Right=,,Fenster am rechten oberen Bildschirmrand anordnen
|
||||||
|
Window Raise=,,Fenster nach vorne
|
||||||
|
Window Resize=,,Fenstergröße ändern
|
||||||
|
Window Shrink Horizontal=,,Fenster waagerecht verkleinern
|
||||||
|
Window Shrink Vertical=,,Fenster senkrecht verkleinern
|
||||||
|
Window to Desktop 1=,,Fenster auf Arbeitsfläche 1
|
||||||
|
Window to Desktop 10=,,Fenster auf Arbeitsfläche 10
|
||||||
|
Window to Desktop 11=,,Fenster auf Arbeitsfläche 11
|
||||||
|
Window to Desktop 12=,,Fenster auf Arbeitsfläche 12
|
||||||
|
Window to Desktop 13=,,Fenster auf Arbeitsfläche 13
|
||||||
|
Window to Desktop 14=,,Fenster auf Arbeitsfläche 14
|
||||||
|
Window to Desktop 15=,,Fenster auf Arbeitsfläche 15
|
||||||
|
Window to Desktop 16=,,Fenster auf Arbeitsfläche 16
|
||||||
|
Window to Desktop 17=,,Fenster auf Arbeitsfläche 17
|
||||||
|
Window to Desktop 18=,,Fenster auf Arbeitsfläche 18
|
||||||
|
Window to Desktop 19=,,Fenster auf Arbeitsfläche 19
|
||||||
|
Window to Desktop 2=,,Fenster auf Arbeitsfläche 2
|
||||||
|
Window to Desktop 20=,,Fenster auf Arbeitsfläche 20
|
||||||
|
Window to Desktop 21=,,Fenster auf Arbeitsfläche 21
|
||||||
|
Window to Desktop 22=,,Fenster auf Arbeitsfläche 22
|
||||||
|
Window to Desktop 23=,,Fenster auf Arbeitsfläche 23
|
||||||
|
Window to Desktop 24=,,Fenster auf Arbeitsfläche 24
|
||||||
|
Window to Desktop 25=,,Fenster auf Arbeitsfläche 25
|
||||||
|
Window to Desktop 3=,,Fenster auf Arbeitsfläche 3
|
||||||
|
Window to Desktop 4=,,Fenster auf Arbeitsfläche 4
|
||||||
|
Window to Desktop 5=,,Fenster auf Arbeitsfläche 5
|
||||||
|
Window to Desktop 6=,,Fenster auf Arbeitsfläche 6
|
||||||
|
Window to Desktop 7=,,Fenster auf Arbeitsfläche 7
|
||||||
|
Window to Desktop 8=,,Fenster auf Arbeitsfläche 8
|
||||||
|
Window to Desktop 9=,,Fenster auf Arbeitsfläche 9
|
||||||
|
Window to Next Desktop=,,Fenster auf nächste Arbeitsfläche verschieben
|
||||||
|
Window to Next Screen=Meta+Shift+Right,Meta+Shift+Right,Fenster auf nächsten Bildschirm verschieben
|
||||||
|
Window to Previous Desktop=,,Fenster auf vorherige Arbeitsfläche verschieben
|
||||||
|
Window to Previous Screen=Meta+Shift+Left,Meta+Shift+Left,Fenster auf vorherigen Bildschirm verschieben
|
||||||
|
Window to Screen 0=,,Fenster auf Bildschirm 0 verschieben
|
||||||
|
Window to Screen 1=,,Fenster auf Bildschirm 1 verschieben
|
||||||
|
Window to Screen 2=,,Fenster auf Bildschirm 2 verschieben
|
||||||
|
Window to Screen 3=,,Fenster auf Bildschirm 3 verschieben
|
||||||
|
Window to Screen 4=,,Fenster auf Bildschirm 4 verschieben
|
||||||
|
Window to Screen 5=,,Fenster auf Bildschirm 5 verschieben
|
||||||
|
Window to Screen 6=,,Fenster auf Bildschirm 6 verschieben
|
||||||
|
Window to Screen 7=,,Fenster auf Bildschirm 7 verschieben
|
||||||
|
_k_friendly_name=KWin
|
||||||
|
disableInputCapture=Meta+Shift+Esc,Meta+Shift+Esc,Disable Active Input Capture
|
||||||
|
view_actual_size=Meta+0,Meta+0,Auf Originalgröße zoomen
|
||||||
|
view_zoom_in=Meta++\tMeta+=,Meta++\tMeta+=,Vergrößern
|
||||||
|
view_zoom_out=Meta+-,Meta+-,Verkleinern
|
||||||
|
|
||||||
|
[mediacontrol]
|
||||||
|
_k_friendly_name=Mediensteuerung
|
||||||
|
mediavolumedown=,,Medienwiedergabe leiser
|
||||||
|
mediavolumeup=,,Medienwiedergabe lauter
|
||||||
|
nextmedia=Media Next,Media Next,Nächstes Medium wiedergeben
|
||||||
|
pausemedia=Media Pause,Media Pause,Medienwiedergabe pausieren
|
||||||
|
playmedia=,,Medienwiedergabe starten
|
||||||
|
playpausemedia=Media Play,Media Play,Medienwiedergabe starten/pausieren
|
||||||
|
previousmedia=Media Previous,Media Previous,Vorheriges Medium wiedergeben
|
||||||
|
seekbackwardmedia=Media Rewind,Media Rewind,Medienwiedergabe 5 s zurück
|
||||||
|
seekbackwardmedialong=,,Medienwiedergabe 30 s zurück
|
||||||
|
seekforwardmedia=Media Fast Forward,Media Fast Forward,Medienwiedergabe 5 s vor
|
||||||
|
seekforwardmedialong=,,Medienwiedergabe 30 s vor
|
||||||
|
stopmedia=Media Stop,Media Stop,Medienwiedergabe anhalten
|
||||||
|
|
||||||
|
[org_kde_powerdevil]
|
||||||
|
Decrease Keyboard Brightness=Keyboard Brightness Down,Keyboard Brightness Down,Helligkeit der Tastatur-Hintergrundbeleuchtung verringern
|
||||||
|
Decrease Screen Brightness=Monitor Brightness Down,Monitor Brightness Down,Bildschirmhelligkeit verringern
|
||||||
|
Decrease Screen Brightness Small=Shift+Monitor Brightness Down,Shift+Monitor Brightness Down,Bildschirmhelligkeit um 1 % verringern
|
||||||
|
Hibernate=Hibernate,Hibernate,Ruhezustand
|
||||||
|
Increase Keyboard Brightness=Keyboard Brightness Up,Keyboard Brightness Up,Helligkeit der Tastatur-Hintergrundbeleuchtung erhöhen
|
||||||
|
Increase Screen Brightness=Monitor Brightness Up,Monitor Brightness Up,Bildschirmhelligkeit erhöhen
|
||||||
|
Increase Screen Brightness Small=Shift+Monitor Brightness Up,Shift+Monitor Brightness Up,Bildschirmhelligkeit um 1 % erhöhen
|
||||||
|
PowerDown=Power Down,Power Down,Ausschalten
|
||||||
|
PowerOff=Power Off,Power Off,Ausschalten
|
||||||
|
Sleep=Sleep,Sleep,Standby-Modus
|
||||||
|
Toggle Keyboard Backlight=Keyboard Light On/Off,Keyboard Light On/Off,Hintergrundbeleuchtung der Tastatur umschalten
|
||||||
|
Turn Off Screen=none,none,Bildschirm ausschalten
|
||||||
|
_k_friendly_name=Energieverwaltung
|
||||||
|
powerProfile=Battery\tMeta+B,Battery\tMeta+B,Energieprofil wechseln
|
||||||
|
|
||||||
|
[plasmashell]
|
||||||
|
Slideshow Wallpaper Next Image=,,Nächstes Hintergrundbild
|
||||||
|
_k_friendly_name=plasmashell
|
||||||
|
activate application launcher=\tAlt+F1,Meta\tAlt+F1,Anwendungsstarter aktivieren
|
||||||
|
activate task manager entry 1=Meta+1,Meta+1,Fensterleisteneintrag 1 aktivieren
|
||||||
|
activate task manager entry 10=,,Fensterleisteneintrag 10 aktivieren
|
||||||
|
activate task manager entry 2=Meta+2,Meta+2,Fensterleisteneintrag 2 aktivieren
|
||||||
|
activate task manager entry 3=Meta+3,Meta+3,Fensterleisteneintrag 3 aktivieren
|
||||||
|
activate task manager entry 4=Meta+4,Meta+4,Fensterleisteneintrag 4 aktivieren
|
||||||
|
activate task manager entry 5=Meta+5,Meta+5,Fensterleisteneintrag 5 aktivieren
|
||||||
|
activate task manager entry 6=Meta+6,Meta+6,Fensterleisteneintrag 6 aktivieren
|
||||||
|
activate task manager entry 7=Meta+7,Meta+7,Fensterleisteneintrag 7 aktivieren
|
||||||
|
activate task manager entry 8=Meta+8,Meta+8,Fensterleisteneintrag 8 aktivieren
|
||||||
|
activate task manager entry 9=Meta+9,Meta+9,Fensterleisteneintrag 9 aktivieren
|
||||||
|
activate widget 81=Meta,none,Miniprogramm Anwendungsübersicht aktivieren
|
||||||
|
clear-history=,,Verlauf der Zwischenablage leeren
|
||||||
|
clipboard_action=Meta+Ctrl+X,Meta+Ctrl+X,Automatisches Aufklappmenü für Aktionen
|
||||||
|
cycle-panels=Meta+Alt+P,Meta+Alt+P,Tastaturfokus zwischen Kontrollleisten umschalten
|
||||||
|
cycleNextAction=,,Nächstes Element im Verlauf
|
||||||
|
cyclePrevAction=,,Vorheriges Element im Verlauf
|
||||||
|
edit_clipboard=,,Inhalt bearbeiten …
|
||||||
|
manage activities=none,Meta+Q,Aktivitätenwechsler anzeigen
|
||||||
|
next activity=Meta+A,none,Zwischen Aktivitäten wechseln
|
||||||
|
previous activity=Meta+Shift+A,none,Zwischen Aktivitäten wechseln (Gegenrichtung)
|
||||||
|
repeat_action=,,Aktionen der aktuellen Zwischenablage manuell aufrufen
|
||||||
|
show dashboard=Ctrl+F12,Ctrl+F12,Arbeitsfläche anzeigen
|
||||||
|
show-barcode=,,Strichcode anzeigen …
|
||||||
|
show-on-mouse-pos=Meta+V,Meta+V,Elemente der Zwischenablage an Mausposition anzeigen
|
||||||
|
switch to next activity=,,Zur nächsten Aktivität wechseln
|
||||||
|
switch to previous activity=,,Zur vorherigen Aktivität wechseln
|
||||||
|
toggle do not disturb=,,Nicht stören umschalten
|
||||||
|
|
||||||
|
[services][firefox.desktop]
|
||||||
|
_launch=Meta+I
|
||||||
|
|
||||||
|
[services][org.kde.konsole.desktop]
|
||||||
|
_launch=Ctrl+Alt+T\tMeta+Return
|
||||||
|
|
||||||
|
[services][org.kde.plasma-systemmonitor.desktop]
|
||||||
|
_launch=none
|
||||||
|
|
||||||
|
[services][systemsettings.desktop]
|
||||||
|
_launch=Meta+C\tTools
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
[General]
|
||||||
|
SplitterSizes=420,625
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
[Desktop Entry]
|
||||||
|
DefaultProfile=Profil 1.profile
|
||||||
|
|
||||||
|
[General]
|
||||||
|
ConfigVersion=1
|
||||||
|
|
||||||
|
[UiSettings]
|
||||||
|
ColorScheme=
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
[LegacySession: saved at previous logout]
|
||||||
|
count=0
|
||||||
|
|
||||||
|
[Session: saved at previous logout]
|
||||||
|
count=0
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
[Desktops]
|
||||||
|
Id_1=faaf771d-f797-46b6-9c5b-bbe1c8f84755
|
||||||
|
Number=1
|
||||||
|
Rows=1
|
||||||
|
|
||||||
|
[Effect-blur]
|
||||||
|
BlurStrength=4
|
||||||
|
NoiseStrength=1
|
||||||
|
|
||||||
|
[Effect-translucency]
|
||||||
|
ComboboxPopups=68
|
||||||
|
Dialogs=67
|
||||||
|
Inactive=87
|
||||||
|
Menus=68
|
||||||
|
MoveResize=66
|
||||||
|
|
||||||
|
[Plugins]
|
||||||
|
blurEnabled=true
|
||||||
|
translucencyEnabled=true
|
||||||
|
|
||||||
|
[Tiling][faaf771d-f797-46b6-9c5b-bbe1c8f84755][382c73c2-4a5e-47b2-9a17-ea1e5819326f]
|
||||||
|
padding=4
|
||||||
|
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
||||||
|
|
||||||
|
[Tiling][faaf771d-f797-46b6-9c5b-bbe1c8f84755][4c307b55-47b2-4ba1-9e8e-45e3194d7bb5]
|
||||||
|
padding=4
|
||||||
|
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
||||||
|
|
||||||
|
[Tiling][faaf771d-f797-46b6-9c5b-bbe1c8f84755][dd5fe40d-8aa9-4af2-a129-ba9f81f90945]
|
||||||
|
padding=4
|
||||||
|
tiles={"layoutDirection":"horizontal","tiles":[{"width":0.25},{"width":0.5},{"width":0.25}]}
|
||||||
|
|
||||||
|
[Xwayland]
|
||||||
|
Scale=1.5
|
||||||
|
|
||||||
|
[org.kde.kdecoration2]
|
||||||
|
library=org.kde.kwin.aurorae
|
||||||
|
theme=kwin4_decoration_qml_plastik
|
||||||
@@ -0,0 +1,180 @@
|
|||||||
|
[ActionPlugins][0]
|
||||||
|
MiddleButton;NoModifier=org.kde.paste
|
||||||
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
|
||||||
|
[ActionPlugins][1]
|
||||||
|
RightButton;NoModifier=org.kde.contextmenu
|
||||||
|
|
||||||
|
[Containments][53]
|
||||||
|
ItemGeometries-1920x1080=
|
||||||
|
ItemGeometries-2560x1440=
|
||||||
|
ItemGeometriesHorizontal=
|
||||||
|
activityId=1e25e98a-0484-4ad3-a1c9-c8b707d9bd89
|
||||||
|
formfactor=0
|
||||||
|
immutability=1
|
||||||
|
lastScreen=0
|
||||||
|
location=0
|
||||||
|
plugin=org.kde.plasma.folder
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][53][ConfigDialog]
|
||||||
|
DialogHeight=1006
|
||||||
|
DialogWidth=1920
|
||||||
|
|
||||||
|
[Containments][53][Wallpaper][org.kde.image][General]
|
||||||
|
Image=file:///usr/share/backgrounds/archlinux/wave.png
|
||||||
|
SlidePaths=/home/mathias/.local/share/wallpapers/,/usr/share/wallpapers/
|
||||||
|
|
||||||
|
[Containments][54]
|
||||||
|
ItemGeometries-1920x1080=
|
||||||
|
ItemGeometriesHorizontal=
|
||||||
|
activityId=1e25e98a-0484-4ad3-a1c9-c8b707d9bd89
|
||||||
|
formfactor=0
|
||||||
|
immutability=1
|
||||||
|
lastScreen=1
|
||||||
|
location=0
|
||||||
|
plugin=org.kde.plasma.folder
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][55]
|
||||||
|
activityId=
|
||||||
|
formfactor=2
|
||||||
|
immutability=1
|
||||||
|
lastScreen=0
|
||||||
|
location=4
|
||||||
|
plugin=org.kde.panel
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][55][Applets][58]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.icontasks
|
||||||
|
|
||||||
|
[Containments][55][Applets][58][Configuration][General]
|
||||||
|
launchers=
|
||||||
|
|
||||||
|
[Containments][55][Applets][59]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.marginsseparator
|
||||||
|
|
||||||
|
[Containments][55][Applets][60]
|
||||||
|
activityId=
|
||||||
|
formfactor=0
|
||||||
|
immutability=1
|
||||||
|
lastScreen=-1
|
||||||
|
location=0
|
||||||
|
plugin=org.kde.plasma.systemtray
|
||||||
|
popupHeight=432
|
||||||
|
popupWidth=432
|
||||||
|
wallpaperplugin=org.kde.image
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][61]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.vault
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][62]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.cameraindicator
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][63]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.clipboard
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][64]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.devicenotifier
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][65]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.manage-inputmethod
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][66]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.notifications
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][67]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.keyboardindicator
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][68]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.weather
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][69]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.kscreen
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][70]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.keyboardlayout
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][71]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.networkmanagement
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][72]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.volume
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][72][Configuration][General]
|
||||||
|
migrated=true
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][73]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.printmanager
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][76]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.battery
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][77]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.brightness
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][Applets][78]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.bluetooth
|
||||||
|
|
||||||
|
[Containments][55][Applets][60][General]
|
||||||
|
extraItems=org.kde.plasma.vault,org.kde.plasma.bluetooth,org.kde.plasma.cameraindicator,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.notifications,org.kde.plasma.keyboardindicator,org.kde.plasma.weather,org.kde.kscreen,org.kde.plasma.battery,org.kde.plasma.brightness,org.kde.plasma.keyboardlayout,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.printmanager
|
||||||
|
knownItems=org.kde.plasma.vault,org.kde.plasma.bluetooth,org.kde.plasma.cameraindicator,org.kde.plasma.clipboard,org.kde.plasma.devicenotifier,org.kde.plasma.manage-inputmethod,org.kde.plasma.mediacontroller,org.kde.plasma.notifications,org.kde.plasma.keyboardindicator,org.kde.plasma.weather,org.kde.kscreen,org.kde.plasma.battery,org.kde.plasma.brightness,org.kde.plasma.keyboardlayout,org.kde.plasma.networkmanagement,org.kde.plasma.volume,org.kde.plasma.printmanager
|
||||||
|
|
||||||
|
[Containments][55][Applets][74]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.digitalclock
|
||||||
|
|
||||||
|
[Containments][55][Applets][74][Configuration]
|
||||||
|
popupHeight=400
|
||||||
|
popupWidth=560
|
||||||
|
|
||||||
|
[Containments][55][Applets][75]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.showdesktop
|
||||||
|
|
||||||
|
[Containments][55][Applets][79]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.panelspacer
|
||||||
|
|
||||||
|
[Containments][55][Applets][80]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.panelspacer
|
||||||
|
|
||||||
|
[Containments][55][Applets][81]
|
||||||
|
immutability=1
|
||||||
|
plugin=org.kde.plasma.kickerdash
|
||||||
|
|
||||||
|
[Containments][55][Applets][81][Configuration][ConfigDialog]
|
||||||
|
DialogHeight=630
|
||||||
|
DialogWidth=810
|
||||||
|
|
||||||
|
[Containments][55][Applets][81][Configuration][General]
|
||||||
|
favoritesPortedToKAstats=true
|
||||||
|
|
||||||
|
[Containments][55][Applets][81][Shortcuts]
|
||||||
|
global=Meta
|
||||||
|
|
||||||
|
[Containments][55][General]
|
||||||
|
AppletOrder=81;79;58;80;59;60;74;75
|
||||||
|
|
||||||
|
[ScreenMapping]
|
||||||
|
itemsOnDisabledScreens=
|
||||||
|
screenMapping=desktop:/steam.desktop,0,1e25e98a-0484-4ad3-a1c9-c8b707d9bd89
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
[Applications][com.nextcloud.desktopclient.nextcloud]
|
||||||
|
Seen=true
|
||||||
@@ -0,0 +1,674 @@
|
|||||||
|
GNU GENERAL PUBLIC LICENSE
|
||||||
|
Version 3, 29 June 2007
|
||||||
|
|
||||||
|
Copyright (C) 2007 Free Software Foundation, Inc. <https://fsf.org/>
|
||||||
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
|
Preamble
|
||||||
|
|
||||||
|
The GNU General Public License is a free, copyleft license for
|
||||||
|
software and other kinds of works.
|
||||||
|
|
||||||
|
The licenses for most software and other practical works are designed
|
||||||
|
to take away your freedom to share and change the works. By contrast,
|
||||||
|
the GNU General Public License is intended to guarantee your freedom to
|
||||||
|
share and change all versions of a program--to make sure it remains free
|
||||||
|
software for all its users. We, the Free Software Foundation, use the
|
||||||
|
GNU General Public License for most of our software; it applies also to
|
||||||
|
any other work released this way by its authors. You can apply it to
|
||||||
|
your programs, too.
|
||||||
|
|
||||||
|
When we speak of free software, we are referring to freedom, not
|
||||||
|
price. Our General Public Licenses are designed to make sure that you
|
||||||
|
have the freedom to distribute copies of free software (and charge for
|
||||||
|
them if you wish), that you receive source code or can get it if you
|
||||||
|
want it, that you can change the software or use pieces of it in new
|
||||||
|
free programs, and that you know you can do these things.
|
||||||
|
|
||||||
|
To protect your rights, we need to prevent others from denying you
|
||||||
|
these rights or asking you to surrender the rights. Therefore, you have
|
||||||
|
certain responsibilities if you distribute copies of the software, or if
|
||||||
|
you modify it: responsibilities to respect the freedom of others.
|
||||||
|
|
||||||
|
For example, if you distribute copies of such a program, whether
|
||||||
|
gratis or for a fee, you must pass on to the recipients the same
|
||||||
|
freedoms that you received. You must make sure that they, too, receive
|
||||||
|
or can get the source code. And you must show them these terms so they
|
||||||
|
know their rights.
|
||||||
|
|
||||||
|
Developers that use the GNU GPL protect your rights with two steps:
|
||||||
|
(1) assert copyright on the software, and (2) offer you this License
|
||||||
|
giving you legal permission to copy, distribute and/or modify it.
|
||||||
|
|
||||||
|
For the developers' and authors' protection, the GPL clearly explains
|
||||||
|
that there is no warranty for this free software. For both users' and
|
||||||
|
authors' sake, the GPL requires that modified versions be marked as
|
||||||
|
changed, so that their problems will not be attributed erroneously to
|
||||||
|
authors of previous versions.
|
||||||
|
|
||||||
|
Some devices are designed to deny users access to install or run
|
||||||
|
modified versions of the software inside them, although the manufacturer
|
||||||
|
can do so. This is fundamentally incompatible with the aim of
|
||||||
|
protecting users' freedom to change the software. The systematic
|
||||||
|
pattern of such abuse occurs in the area of products for individuals to
|
||||||
|
use, which is precisely where it is most unacceptable. Therefore, we
|
||||||
|
have designed this version of the GPL to prohibit the practice for those
|
||||||
|
products. If such problems arise substantially in other domains, we
|
||||||
|
stand ready to extend this provision to those domains in future versions
|
||||||
|
of the GPL, as needed to protect the freedom of users.
|
||||||
|
|
||||||
|
Finally, every program is threatened constantly by software patents.
|
||||||
|
States should not allow patents to restrict development and use of
|
||||||
|
software on general-purpose computers, but in those that do, we wish to
|
||||||
|
avoid the special danger that patents applied to a free program could
|
||||||
|
make it effectively proprietary. To prevent this, the GPL assures that
|
||||||
|
patents cannot be used to render the program non-free.
|
||||||
|
|
||||||
|
The precise terms and conditions for copying, distribution and
|
||||||
|
modification follow.
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
0. Definitions.
|
||||||
|
|
||||||
|
"This License" refers to version 3 of the GNU General Public License.
|
||||||
|
|
||||||
|
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||||
|
works, such as semiconductor masks.
|
||||||
|
|
||||||
|
"The Program" refers to any copyrightable work licensed under this
|
||||||
|
License. Each licensee is addressed as "you". "Licensees" and
|
||||||
|
"recipients" may be individuals or organizations.
|
||||||
|
|
||||||
|
To "modify" a work means to copy from or adapt all or part of the work
|
||||||
|
in a fashion requiring copyright permission, other than the making of an
|
||||||
|
exact copy. The resulting work is called a "modified version" of the
|
||||||
|
earlier work or a work "based on" the earlier work.
|
||||||
|
|
||||||
|
A "covered work" means either the unmodified Program or a work based
|
||||||
|
on the Program.
|
||||||
|
|
||||||
|
To "propagate" a work means to do anything with it that, without
|
||||||
|
permission, would make you directly or secondarily liable for
|
||||||
|
infringement under applicable copyright law, except executing it on a
|
||||||
|
computer or modifying a private copy. Propagation includes copying,
|
||||||
|
distribution (with or without modification), making available to the
|
||||||
|
public, and in some countries other activities as well.
|
||||||
|
|
||||||
|
To "convey" a work means any kind of propagation that enables other
|
||||||
|
parties to make or receive copies. Mere interaction with a user through
|
||||||
|
a computer network, with no transfer of a copy, is not conveying.
|
||||||
|
|
||||||
|
An interactive user interface displays "Appropriate Legal Notices"
|
||||||
|
to the extent that it includes a convenient and prominently visible
|
||||||
|
feature that (1) displays an appropriate copyright notice, and (2)
|
||||||
|
tells the user that there is no warranty for the work (except to the
|
||||||
|
extent that warranties are provided), that licensees may convey the
|
||||||
|
work under this License, and how to view a copy of this License. If
|
||||||
|
the interface presents a list of user commands or options, such as a
|
||||||
|
menu, a prominent item in the list meets this criterion.
|
||||||
|
|
||||||
|
1. Source Code.
|
||||||
|
|
||||||
|
The "source code" for a work means the preferred form of the work
|
||||||
|
for making modifications to it. "Object code" means any non-source
|
||||||
|
form of a work.
|
||||||
|
|
||||||
|
A "Standard Interface" means an interface that either is an official
|
||||||
|
standard defined by a recognized standards body, or, in the case of
|
||||||
|
interfaces specified for a particular programming language, one that
|
||||||
|
is widely used among developers working in that language.
|
||||||
|
|
||||||
|
The "System Libraries" of an executable work include anything, other
|
||||||
|
than the work as a whole, that (a) is included in the normal form of
|
||||||
|
packaging a Major Component, but which is not part of that Major
|
||||||
|
Component, and (b) serves only to enable use of the work with that
|
||||||
|
Major Component, or to implement a Standard Interface for which an
|
||||||
|
implementation is available to the public in source code form. A
|
||||||
|
"Major Component", in this context, means a major essential component
|
||||||
|
(kernel, window system, and so on) of the specific operating system
|
||||||
|
(if any) on which the executable work runs, or a compiler used to
|
||||||
|
produce the work, or an object code interpreter used to run it.
|
||||||
|
|
||||||
|
The "Corresponding Source" for a work in object code form means all
|
||||||
|
the source code needed to generate, install, and (for an executable
|
||||||
|
work) run the object code and to modify the work, including scripts to
|
||||||
|
control those activities. However, it does not include the work's
|
||||||
|
System Libraries, or general-purpose tools or generally available free
|
||||||
|
programs which are used unmodified in performing those activities but
|
||||||
|
which are not part of the work. For example, Corresponding Source
|
||||||
|
includes interface definition files associated with source files for
|
||||||
|
the work, and the source code for shared libraries and dynamically
|
||||||
|
linked subprograms that the work is specifically designed to require,
|
||||||
|
such as by intimate data communication or control flow between those
|
||||||
|
subprograms and other parts of the work.
|
||||||
|
|
||||||
|
The Corresponding Source need not include anything that users
|
||||||
|
can regenerate automatically from other parts of the Corresponding
|
||||||
|
Source.
|
||||||
|
|
||||||
|
The Corresponding Source for a work in source code form is that
|
||||||
|
same work.
|
||||||
|
|
||||||
|
2. Basic Permissions.
|
||||||
|
|
||||||
|
All rights granted under this License are granted for the term of
|
||||||
|
copyright on the Program, and are irrevocable provided the stated
|
||||||
|
conditions are met. This License explicitly affirms your unlimited
|
||||||
|
permission to run the unmodified Program. The output from running a
|
||||||
|
covered work is covered by this License only if the output, given its
|
||||||
|
content, constitutes a covered work. This License acknowledges your
|
||||||
|
rights of fair use or other equivalent, as provided by copyright law.
|
||||||
|
|
||||||
|
You may make, run and propagate covered works that you do not
|
||||||
|
convey, without conditions so long as your license otherwise remains
|
||||||
|
in force. You may convey covered works to others for the sole purpose
|
||||||
|
of having them make modifications exclusively for you, or provide you
|
||||||
|
with facilities for running those works, provided that you comply with
|
||||||
|
the terms of this License in conveying all material for which you do
|
||||||
|
not control copyright. Those thus making or running the covered works
|
||||||
|
for you must do so exclusively on your behalf, under your direction
|
||||||
|
and control, on terms that prohibit them from making any copies of
|
||||||
|
your copyrighted material outside their relationship with you.
|
||||||
|
|
||||||
|
Conveying under any other circumstances is permitted solely under
|
||||||
|
the conditions stated below. Sublicensing is not allowed; section 10
|
||||||
|
makes it unnecessary.
|
||||||
|
|
||||||
|
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||||
|
|
||||||
|
No covered work shall be deemed part of an effective technological
|
||||||
|
measure under any applicable law fulfilling obligations under article
|
||||||
|
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||||
|
similar laws prohibiting or restricting circumvention of such
|
||||||
|
measures.
|
||||||
|
|
||||||
|
When you convey a covered work, you waive any legal power to forbid
|
||||||
|
circumvention of technological measures to the extent such circumvention
|
||||||
|
is effected by exercising rights under this License with respect to
|
||||||
|
the covered work, and you disclaim any intention to limit operation or
|
||||||
|
modification of the work as a means of enforcing, against the work's
|
||||||
|
users, your or third parties' legal rights to forbid circumvention of
|
||||||
|
technological measures.
|
||||||
|
|
||||||
|
4. Conveying Verbatim Copies.
|
||||||
|
|
||||||
|
You may convey verbatim copies of the Program's source code as you
|
||||||
|
receive it, in any medium, provided that you conspicuously and
|
||||||
|
appropriately publish on each copy an appropriate copyright notice;
|
||||||
|
keep intact all notices stating that this License and any
|
||||||
|
non-permissive terms added in accord with section 7 apply to the code;
|
||||||
|
keep intact all notices of the absence of any warranty; and give all
|
||||||
|
recipients a copy of this License along with the Program.
|
||||||
|
|
||||||
|
You may charge any price or no price for each copy that you convey,
|
||||||
|
and you may offer support or warranty protection for a fee.
|
||||||
|
|
||||||
|
5. Conveying Modified Source Versions.
|
||||||
|
|
||||||
|
You may convey a work based on the Program, or the modifications to
|
||||||
|
produce it from the Program, in the form of source code under the
|
||||||
|
terms of section 4, provided that you also meet all of these conditions:
|
||||||
|
|
||||||
|
a) The work must carry prominent notices stating that you modified
|
||||||
|
it, and giving a relevant date.
|
||||||
|
|
||||||
|
b) The work must carry prominent notices stating that it is
|
||||||
|
released under this License and any conditions added under section
|
||||||
|
7. This requirement modifies the requirement in section 4 to
|
||||||
|
"keep intact all notices".
|
||||||
|
|
||||||
|
c) You must license the entire work, as a whole, under this
|
||||||
|
License to anyone who comes into possession of a copy. This
|
||||||
|
License will therefore apply, along with any applicable section 7
|
||||||
|
additional terms, to the whole of the work, and all its parts,
|
||||||
|
regardless of how they are packaged. This License gives no
|
||||||
|
permission to license the work in any other way, but it does not
|
||||||
|
invalidate such permission if you have separately received it.
|
||||||
|
|
||||||
|
d) If the work has interactive user interfaces, each must display
|
||||||
|
Appropriate Legal Notices; however, if the Program has interactive
|
||||||
|
interfaces that do not display Appropriate Legal Notices, your
|
||||||
|
work need not make them do so.
|
||||||
|
|
||||||
|
A compilation of a covered work with other separate and independent
|
||||||
|
works, which are not by their nature extensions of the covered work,
|
||||||
|
and which are not combined with it such as to form a larger program,
|
||||||
|
in or on a volume of a storage or distribution medium, is called an
|
||||||
|
"aggregate" if the compilation and its resulting copyright are not
|
||||||
|
used to limit the access or legal rights of the compilation's users
|
||||||
|
beyond what the individual works permit. Inclusion of a covered work
|
||||||
|
in an aggregate does not cause this License to apply to the other
|
||||||
|
parts of the aggregate.
|
||||||
|
|
||||||
|
6. Conveying Non-Source Forms.
|
||||||
|
|
||||||
|
You may convey a covered work in object code form under the terms
|
||||||
|
of sections 4 and 5, provided that you also convey the
|
||||||
|
machine-readable Corresponding Source under the terms of this License,
|
||||||
|
in one of these ways:
|
||||||
|
|
||||||
|
a) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by the
|
||||||
|
Corresponding Source fixed on a durable physical medium
|
||||||
|
customarily used for software interchange.
|
||||||
|
|
||||||
|
b) Convey the object code in, or embodied in, a physical product
|
||||||
|
(including a physical distribution medium), accompanied by a
|
||||||
|
written offer, valid for at least three years and valid for as
|
||||||
|
long as you offer spare parts or customer support for that product
|
||||||
|
model, to give anyone who possesses the object code either (1) a
|
||||||
|
copy of the Corresponding Source for all the software in the
|
||||||
|
product that is covered by this License, on a durable physical
|
||||||
|
medium customarily used for software interchange, for a price no
|
||||||
|
more than your reasonable cost of physically performing this
|
||||||
|
conveying of source, or (2) access to copy the
|
||||||
|
Corresponding Source from a network server at no charge.
|
||||||
|
|
||||||
|
c) Convey individual copies of the object code with a copy of the
|
||||||
|
written offer to provide the Corresponding Source. This
|
||||||
|
alternative is allowed only occasionally and noncommercially, and
|
||||||
|
only if you received the object code with such an offer, in accord
|
||||||
|
with subsection 6b.
|
||||||
|
|
||||||
|
d) Convey the object code by offering access from a designated
|
||||||
|
place (gratis or for a charge), and offer equivalent access to the
|
||||||
|
Corresponding Source in the same way through the same place at no
|
||||||
|
further charge. You need not require recipients to copy the
|
||||||
|
Corresponding Source along with the object code. If the place to
|
||||||
|
copy the object code is a network server, the Corresponding Source
|
||||||
|
may be on a different server (operated by you or a third party)
|
||||||
|
that supports equivalent copying facilities, provided you maintain
|
||||||
|
clear directions next to the object code saying where to find the
|
||||||
|
Corresponding Source. Regardless of what server hosts the
|
||||||
|
Corresponding Source, you remain obligated to ensure that it is
|
||||||
|
available for as long as needed to satisfy these requirements.
|
||||||
|
|
||||||
|
e) Convey the object code using peer-to-peer transmission, provided
|
||||||
|
you inform other peers where the object code and Corresponding
|
||||||
|
Source of the work are being offered to the general public at no
|
||||||
|
charge under subsection 6d.
|
||||||
|
|
||||||
|
A separable portion of the object code, whose source code is excluded
|
||||||
|
from the Corresponding Source as a System Library, need not be
|
||||||
|
included in conveying the object code work.
|
||||||
|
|
||||||
|
A "User Product" is either (1) a "consumer product", which means any
|
||||||
|
tangible personal property which is normally used for personal, family,
|
||||||
|
or household purposes, or (2) anything designed or sold for incorporation
|
||||||
|
into a dwelling. In determining whether a product is a consumer product,
|
||||||
|
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||||
|
product received by a particular user, "normally used" refers to a
|
||||||
|
typical or common use of that class of product, regardless of the status
|
||||||
|
of the particular user or of the way in which the particular user
|
||||||
|
actually uses, or expects or is expected to use, the product. A product
|
||||||
|
is a consumer product regardless of whether the product has substantial
|
||||||
|
commercial, industrial or non-consumer uses, unless such uses represent
|
||||||
|
the only significant mode of use of the product.
|
||||||
|
|
||||||
|
"Installation Information" for a User Product means any methods,
|
||||||
|
procedures, authorization keys, or other information required to install
|
||||||
|
and execute modified versions of a covered work in that User Product from
|
||||||
|
a modified version of its Corresponding Source. The information must
|
||||||
|
suffice to ensure that the continued functioning of the modified object
|
||||||
|
code is in no case prevented or interfered with solely because
|
||||||
|
modification has been made.
|
||||||
|
|
||||||
|
If you convey an object code work under this section in, or with, or
|
||||||
|
specifically for use in, a User Product, and the conveying occurs as
|
||||||
|
part of a transaction in which the right of possession and use of the
|
||||||
|
User Product is transferred to the recipient in perpetuity or for a
|
||||||
|
fixed term (regardless of how the transaction is characterized), the
|
||||||
|
Corresponding Source conveyed under this section must be accompanied
|
||||||
|
by the Installation Information. But this requirement does not apply
|
||||||
|
if neither you nor any third party retains the ability to install
|
||||||
|
modified object code on the User Product (for example, the work has
|
||||||
|
been installed in ROM).
|
||||||
|
|
||||||
|
The requirement to provide Installation Information does not include a
|
||||||
|
requirement to continue to provide support service, warranty, or updates
|
||||||
|
for a work that has been modified or installed by the recipient, or for
|
||||||
|
the User Product in which it has been modified or installed. Access to a
|
||||||
|
network may be denied when the modification itself materially and
|
||||||
|
adversely affects the operation of the network or violates the rules and
|
||||||
|
protocols for communication across the network.
|
||||||
|
|
||||||
|
Corresponding Source conveyed, and Installation Information provided,
|
||||||
|
in accord with this section must be in a format that is publicly
|
||||||
|
documented (and with an implementation available to the public in
|
||||||
|
source code form), and must require no special password or key for
|
||||||
|
unpacking, reading or copying.
|
||||||
|
|
||||||
|
7. Additional Terms.
|
||||||
|
|
||||||
|
"Additional permissions" are terms that supplement the terms of this
|
||||||
|
License by making exceptions from one or more of its conditions.
|
||||||
|
Additional permissions that are applicable to the entire Program shall
|
||||||
|
be treated as though they were included in this License, to the extent
|
||||||
|
that they are valid under applicable law. If additional permissions
|
||||||
|
apply only to part of the Program, that part may be used separately
|
||||||
|
under those permissions, but the entire Program remains governed by
|
||||||
|
this License without regard to the additional permissions.
|
||||||
|
|
||||||
|
When you convey a copy of a covered work, you may at your option
|
||||||
|
remove any additional permissions from that copy, or from any part of
|
||||||
|
it. (Additional permissions may be written to require their own
|
||||||
|
removal in certain cases when you modify the work.) You may place
|
||||||
|
additional permissions on material, added by you to a covered work,
|
||||||
|
for which you have or can give appropriate copyright permission.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, for material you
|
||||||
|
add to a covered work, you may (if authorized by the copyright holders of
|
||||||
|
that material) supplement the terms of this License with terms:
|
||||||
|
|
||||||
|
a) Disclaiming warranty or limiting liability differently from the
|
||||||
|
terms of sections 15 and 16 of this License; or
|
||||||
|
|
||||||
|
b) Requiring preservation of specified reasonable legal notices or
|
||||||
|
author attributions in that material or in the Appropriate Legal
|
||||||
|
Notices displayed by works containing it; or
|
||||||
|
|
||||||
|
c) Prohibiting misrepresentation of the origin of that material, or
|
||||||
|
requiring that modified versions of such material be marked in
|
||||||
|
reasonable ways as different from the original version; or
|
||||||
|
|
||||||
|
d) Limiting the use for publicity purposes of names of licensors or
|
||||||
|
authors of the material; or
|
||||||
|
|
||||||
|
e) Declining to grant rights under trademark law for use of some
|
||||||
|
trade names, trademarks, or service marks; or
|
||||||
|
|
||||||
|
f) Requiring indemnification of licensors and authors of that
|
||||||
|
material by anyone who conveys the material (or modified versions of
|
||||||
|
it) with contractual assumptions of liability to the recipient, for
|
||||||
|
any liability that these contractual assumptions directly impose on
|
||||||
|
those licensors and authors.
|
||||||
|
|
||||||
|
All other non-permissive additional terms are considered "further
|
||||||
|
restrictions" within the meaning of section 10. If the Program as you
|
||||||
|
received it, or any part of it, contains a notice stating that it is
|
||||||
|
governed by this License along with a term that is a further
|
||||||
|
restriction, you may remove that term. If a license document contains
|
||||||
|
a further restriction but permits relicensing or conveying under this
|
||||||
|
License, you may add to a covered work material governed by the terms
|
||||||
|
of that license document, provided that the further restriction does
|
||||||
|
not survive such relicensing or conveying.
|
||||||
|
|
||||||
|
If you add terms to a covered work in accord with this section, you
|
||||||
|
must place, in the relevant source files, a statement of the
|
||||||
|
additional terms that apply to those files, or a notice indicating
|
||||||
|
where to find the applicable terms.
|
||||||
|
|
||||||
|
Additional terms, permissive or non-permissive, may be stated in the
|
||||||
|
form of a separately written license, or stated as exceptions;
|
||||||
|
the above requirements apply either way.
|
||||||
|
|
||||||
|
8. Termination.
|
||||||
|
|
||||||
|
You may not propagate or modify a covered work except as expressly
|
||||||
|
provided under this License. Any attempt otherwise to propagate or
|
||||||
|
modify it is void, and will automatically terminate your rights under
|
||||||
|
this License (including any patent licenses granted under the third
|
||||||
|
paragraph of section 11).
|
||||||
|
|
||||||
|
However, if you cease all violation of this License, then your
|
||||||
|
license from a particular copyright holder is reinstated (a)
|
||||||
|
provisionally, unless and until the copyright holder explicitly and
|
||||||
|
finally terminates your license, and (b) permanently, if the copyright
|
||||||
|
holder fails to notify you of the violation by some reasonable means
|
||||||
|
prior to 60 days after the cessation.
|
||||||
|
|
||||||
|
Moreover, your license from a particular copyright holder is
|
||||||
|
reinstated permanently if the copyright holder notifies you of the
|
||||||
|
violation by some reasonable means, this is the first time you have
|
||||||
|
received notice of violation of this License (for any work) from that
|
||||||
|
copyright holder, and you cure the violation prior to 30 days after
|
||||||
|
your receipt of the notice.
|
||||||
|
|
||||||
|
Termination of your rights under this section does not terminate the
|
||||||
|
licenses of parties who have received copies or rights from you under
|
||||||
|
this License. If your rights have been terminated and not permanently
|
||||||
|
reinstated, you do not qualify to receive new licenses for the same
|
||||||
|
material under section 10.
|
||||||
|
|
||||||
|
9. Acceptance Not Required for Having Copies.
|
||||||
|
|
||||||
|
You are not required to accept this License in order to receive or
|
||||||
|
run a copy of the Program. Ancillary propagation of a covered work
|
||||||
|
occurring solely as a consequence of using peer-to-peer transmission
|
||||||
|
to receive a copy likewise does not require acceptance. However,
|
||||||
|
nothing other than this License grants you permission to propagate or
|
||||||
|
modify any covered work. These actions infringe copyright if you do
|
||||||
|
not accept this License. Therefore, by modifying or propagating a
|
||||||
|
covered work, you indicate your acceptance of this License to do so.
|
||||||
|
|
||||||
|
10. Automatic Licensing of Downstream Recipients.
|
||||||
|
|
||||||
|
Each time you convey a covered work, the recipient automatically
|
||||||
|
receives a license from the original licensors, to run, modify and
|
||||||
|
propagate that work, subject to this License. You are not responsible
|
||||||
|
for enforcing compliance by third parties with this License.
|
||||||
|
|
||||||
|
An "entity transaction" is a transaction transferring control of an
|
||||||
|
organization, or substantially all assets of one, or subdividing an
|
||||||
|
organization, or merging organizations. If propagation of a covered
|
||||||
|
work results from an entity transaction, each party to that
|
||||||
|
transaction who receives a copy of the work also receives whatever
|
||||||
|
licenses to the work the party's predecessor in interest had or could
|
||||||
|
give under the previous paragraph, plus a right to possession of the
|
||||||
|
Corresponding Source of the work from the predecessor in interest, if
|
||||||
|
the predecessor has it or can get it with reasonable efforts.
|
||||||
|
|
||||||
|
You may not impose any further restrictions on the exercise of the
|
||||||
|
rights granted or affirmed under this License. For example, you may
|
||||||
|
not impose a license fee, royalty, or other charge for exercise of
|
||||||
|
rights granted under this License, and you may not initiate litigation
|
||||||
|
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||||
|
any patent claim is infringed by making, using, selling, offering for
|
||||||
|
sale, or importing the Program or any portion of it.
|
||||||
|
|
||||||
|
11. Patents.
|
||||||
|
|
||||||
|
A "contributor" is a copyright holder who authorizes use under this
|
||||||
|
License of the Program or a work on which the Program is based. The
|
||||||
|
work thus licensed is called the contributor's "contributor version".
|
||||||
|
|
||||||
|
A contributor's "essential patent claims" are all patent claims
|
||||||
|
owned or controlled by the contributor, whether already acquired or
|
||||||
|
hereafter acquired, that would be infringed by some manner, permitted
|
||||||
|
by this License, of making, using, or selling its contributor version,
|
||||||
|
but do not include claims that would be infringed only as a
|
||||||
|
consequence of further modification of the contributor version. For
|
||||||
|
purposes of this definition, "control" includes the right to grant
|
||||||
|
patent sublicenses in a manner consistent with the requirements of
|
||||||
|
this License.
|
||||||
|
|
||||||
|
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||||
|
patent license under the contributor's essential patent claims, to
|
||||||
|
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||||
|
propagate the contents of its contributor version.
|
||||||
|
|
||||||
|
In the following three paragraphs, a "patent license" is any express
|
||||||
|
agreement or commitment, however denominated, not to enforce a patent
|
||||||
|
(such as an express permission to practice a patent or covenant not to
|
||||||
|
sue for patent infringement). To "grant" such a patent license to a
|
||||||
|
party means to make such an agreement or commitment not to enforce a
|
||||||
|
patent against the party.
|
||||||
|
|
||||||
|
If you convey a covered work, knowingly relying on a patent license,
|
||||||
|
and the Corresponding Source of the work is not available for anyone
|
||||||
|
to copy, free of charge and under the terms of this License, through a
|
||||||
|
publicly available network server or other readily accessible means,
|
||||||
|
then you must either (1) cause the Corresponding Source to be so
|
||||||
|
available, or (2) arrange to deprive yourself of the benefit of the
|
||||||
|
patent license for this particular work, or (3) arrange, in a manner
|
||||||
|
consistent with the requirements of this License, to extend the patent
|
||||||
|
license to downstream recipients. "Knowingly relying" means you have
|
||||||
|
actual knowledge that, but for the patent license, your conveying the
|
||||||
|
covered work in a country, or your recipient's use of the covered work
|
||||||
|
in a country, would infringe one or more identifiable patents in that
|
||||||
|
country that you have reason to believe are valid.
|
||||||
|
|
||||||
|
If, pursuant to or in connection with a single transaction or
|
||||||
|
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||||
|
covered work, and grant a patent license to some of the parties
|
||||||
|
receiving the covered work authorizing them to use, propagate, modify
|
||||||
|
or convey a specific copy of the covered work, then the patent license
|
||||||
|
you grant is automatically extended to all recipients of the covered
|
||||||
|
work and works based on it.
|
||||||
|
|
||||||
|
A patent license is "discriminatory" if it does not include within
|
||||||
|
the scope of its coverage, prohibits the exercise of, or is
|
||||||
|
conditioned on the non-exercise of one or more of the rights that are
|
||||||
|
specifically granted under this License. You may not convey a covered
|
||||||
|
work if you are a party to an arrangement with a third party that is
|
||||||
|
in the business of distributing software, under which you make payment
|
||||||
|
to the third party based on the extent of your activity of conveying
|
||||||
|
the work, and under which the third party grants, to any of the
|
||||||
|
parties who would receive the covered work from you, a discriminatory
|
||||||
|
patent license (a) in connection with copies of the covered work
|
||||||
|
conveyed by you (or copies made from those copies), or (b) primarily
|
||||||
|
for and in connection with specific products or compilations that
|
||||||
|
contain the covered work, unless you entered into that arrangement,
|
||||||
|
or that patent license was granted, prior to 28 March 2007.
|
||||||
|
|
||||||
|
Nothing in this License shall be construed as excluding or limiting
|
||||||
|
any implied license or other defenses to infringement that may
|
||||||
|
otherwise be available to you under applicable patent law.
|
||||||
|
|
||||||
|
12. No Surrender of Others' Freedom.
|
||||||
|
|
||||||
|
If conditions are imposed on you (whether by court order, agreement or
|
||||||
|
otherwise) that contradict the conditions of this License, they do not
|
||||||
|
excuse you from the conditions of this License. If you cannot convey a
|
||||||
|
covered work so as to satisfy simultaneously your obligations under this
|
||||||
|
License and any other pertinent obligations, then as a consequence you may
|
||||||
|
not convey it at all. For example, if you agree to terms that obligate you
|
||||||
|
to collect a royalty for further conveying from those to whom you convey
|
||||||
|
the Program, the only way you could satisfy both those terms and this
|
||||||
|
License would be to refrain entirely from conveying the Program.
|
||||||
|
|
||||||
|
13. Use with the GNU Affero General Public License.
|
||||||
|
|
||||||
|
Notwithstanding any other provision of this License, you have
|
||||||
|
permission to link or combine any covered work with a work licensed
|
||||||
|
under version 3 of the GNU Affero General Public License into a single
|
||||||
|
combined work, and to convey the resulting work. The terms of this
|
||||||
|
License will continue to apply to the part which is the covered work,
|
||||||
|
but the special requirements of the GNU Affero General Public License,
|
||||||
|
section 13, concerning interaction through a network will apply to the
|
||||||
|
combination as such.
|
||||||
|
|
||||||
|
14. Revised Versions of this License.
|
||||||
|
|
||||||
|
The Free Software Foundation may publish revised and/or new versions of
|
||||||
|
the GNU General Public License from time to time. Such new versions will
|
||||||
|
be similar in spirit to the present version, but may differ in detail to
|
||||||
|
address new problems or concerns.
|
||||||
|
|
||||||
|
Each version is given a distinguishing version number. If the
|
||||||
|
Program specifies that a certain numbered version of the GNU General
|
||||||
|
Public License "or any later version" applies to it, you have the
|
||||||
|
option of following the terms and conditions either of that numbered
|
||||||
|
version or of any later version published by the Free Software
|
||||||
|
Foundation. If the Program does not specify a version number of the
|
||||||
|
GNU General Public License, you may choose any version ever published
|
||||||
|
by the Free Software Foundation.
|
||||||
|
|
||||||
|
If the Program specifies that a proxy can decide which future
|
||||||
|
versions of the GNU General Public License can be used, that proxy's
|
||||||
|
public statement of acceptance of a version permanently authorizes you
|
||||||
|
to choose that version for the Program.
|
||||||
|
|
||||||
|
Later license versions may give you additional or different
|
||||||
|
permissions. However, no additional obligations are imposed on any
|
||||||
|
author or copyright holder as a result of your choosing to follow a
|
||||||
|
later version.
|
||||||
|
|
||||||
|
15. Disclaimer of Warranty.
|
||||||
|
|
||||||
|
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||||
|
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||||
|
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||||
|
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||||
|
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||||
|
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||||
|
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||||
|
|
||||||
|
16. Limitation of Liability.
|
||||||
|
|
||||||
|
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||||
|
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||||
|
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||||
|
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||||
|
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||||
|
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||||
|
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||||
|
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||||
|
SUCH DAMAGES.
|
||||||
|
|
||||||
|
17. Interpretation of Sections 15 and 16.
|
||||||
|
|
||||||
|
If the disclaimer of warranty and limitation of liability provided
|
||||||
|
above cannot be given local legal effect according to their terms,
|
||||||
|
reviewing courts shall apply local law that most closely approximates
|
||||||
|
an absolute waiver of all civil liability in connection with the
|
||||||
|
Program, unless a warranty or assumption of liability accompanies a
|
||||||
|
copy of the Program in return for a fee.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
|
If you develop a new program, and you want it to be of the greatest
|
||||||
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
free software which everyone can redistribute and change under these terms.
|
||||||
|
|
||||||
|
To do so, attach the following notices to the program. It is safest
|
||||||
|
to attach them to the start of each source file to most effectively
|
||||||
|
state the exclusion of warranty; and each file should have at least
|
||||||
|
the "copyright" line and a pointer to where the full notice is found.
|
||||||
|
|
||||||
|
<one line to give the program's name and a brief idea of what it does.>
|
||||||
|
Copyright (C) <year> <name of author>
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation, either version 3 of the License, or
|
||||||
|
(at your option) any later version.
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
Also add information on how to contact you by electronic and paper mail.
|
||||||
|
|
||||||
|
If the program does terminal interaction, make it output a short
|
||||||
|
notice like this when it starts in an interactive mode:
|
||||||
|
|
||||||
|
<program> Copyright (C) <year> <name of author>
|
||||||
|
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||||
|
This is free software, and you are welcome to redistribute it
|
||||||
|
under certain conditions; type `show c' for details.
|
||||||
|
|
||||||
|
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||||
|
parts of the General Public License. Of course, your program's commands
|
||||||
|
might be different; for a GUI interface, you would use an "about box".
|
||||||
|
|
||||||
|
You should also get your employer (if you work as a programmer) or school,
|
||||||
|
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||||
|
For more information on this, and how to apply and follow the GNU GPL, see
|
||||||
|
<https://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
|
The GNU General Public License does not permit incorporating your program
|
||||||
|
into proprietary programs. If your program is a subroutine library, you
|
||||||
|
may consider it more useful to permit linking proprietary applications with
|
||||||
|
the library. If this is what you want to do, use the GNU Lesser General
|
||||||
|
Public License instead of this License. But first, please read
|
||||||
|
<https://www.gnu.org/licenses/why-not-lgpl.html>.
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|

|
||||||
|
|
||||||
|
>An icon theme colored with sweet gradients
|
||||||
|
|
||||||
|
## Installation
|
||||||
|
|
||||||
|
- Download the `.zip` file ([directly from github](https://github.com/EliverLara/candy-icons/archive/refs/heads/master.zip) or from [gnome-look](https://www.opendesktop.org/p/1305251/))
|
||||||
|
|
||||||
|
- Extract the `.zip` file to the icons directory i.e. `/usr/share/icons/`, `~/.local/share/.icons/` or `~/.icons/` (create it if necessary).
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
To set the theme in Gnome, run the following commands in Terminal:
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
or Change via distribution specific `tweak-tool`.
|
||||||
|
|
||||||
|
## Previews
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
You can also combine this icon pack with [sweet-folders](https://github.com/EliverLara/Sweet-folders) to get an awesome custom experience:
|
||||||
|
|
||||||
|

|
||||||
@@ -0,0 +1 @@
|
|||||||
|
epic-games.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
accessories-text-editor.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
password-manager.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
applications-office.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_0" x1="0.05097071143265408" y1="0.9093686270790043" x2="0.9536247734808043" y2="0.1958093215343868" gradientTransform="matrix(47,0,0,33.42,0.5,7.29)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(126,235,218)"/><stop offset="49.56869043334445%" stop-opacity="1" style="stop-color:rgb(115,255,68)"/><stop offset="98.69565217391305%" stop-opacity="1" style="stop-color:rgb(255,205,62)"/></linearGradient><path d=" M 32 27 L 32 31 L 32 31 L 32 31 L 32 33 L 28 33 L 20 33 L 16 33 L 16 27 L 16 25 L 16 21 L 16 19 L 16 19 L 20 19 L 28 19 L 28 19 L 28 19 L 32 19 L 32 21 L 32 25 L 32 25 L 32 27 Z M 28 27 L 28 31 L 28 31 L 20 31 L 20 27 L 28 27 Z M 28 25 L 28 21 L 20 21 L 20 25 L 28 25 Z M 36.198 24.084 L 36.198 24.084 C 36.235 24.093 36.21 24.085 36.201 24.083 L 36.198 24.084 L 36.198 24.084 L 36.198 24.084 L 36.198 24.084 L 36.198 24.084 L 36.198 24.084 L 36.198 24.084 Z M 36.198 24.083 C 36.198 24.083 36.198 24.083 36.198 24.084 C 36.21 24.094 36.195 24.094 37.191 24.146 C 37.734 24.219 38.277 24.324 38.82 24.47 C 39.311 24.595 39.791 24.762 40.251 24.982 C 40.595 25.138 40.93 25.326 41.232 25.546 C 41.546 25.775 41.828 26.037 42.078 26.329 C 42.319 26.621 42.527 26.935 42.684 27.269 C 42.883 27.655 43.018 28.073 43.112 28.491 C 43.238 29.086 43.311 29.692 43.321 30.298 C 43.332 30.924 43.29 31.561 43.196 32.178 C 43.133 32.606 43.029 33.034 42.872 33.441 C 42.757 33.755 42.611 34.057 42.423 34.35 C 42.266 34.59 42.078 34.82 41.88 35.018 C 41.661 35.238 41.41 35.426 41.149 35.582 C 40.825 35.781 40.47 35.937 40.104 36.063 C 39.697 36.209 39.279 36.313 38.851 36.376 C 38.245 36.47 37.64 36.522 37.034 36.533 L 29.744 36.533 L 20.345 36.533 L 18.256 36.533 L 10.966 36.533 C 10.329 36.522 9.702 36.47 9.076 36.366 C 8.637 36.292 8.209 36.178 7.791 36.031 C 7.446 35.906 7.123 35.749 6.809 35.561 C 6.559 35.405 6.329 35.227 6.12 35.018 C 5.901 34.809 5.713 34.569 5.556 34.308 C 5.358 33.995 5.201 33.661 5.086 33.316 C 4.94 32.919 4.846 32.512 4.794 32.094 C 4.71 31.499 4.668 30.903 4.679 30.298 C 4.689 29.692 4.762 29.086 4.888 28.501 C 4.982 28.073 5.117 27.666 5.305 27.269 C 5.473 26.935 5.681 26.621 5.922 26.339 C 6.162 26.047 6.444 25.775 6.757 25.556 C 7.071 25.326 7.405 25.128 7.76 24.971 C 8.23 24.762 8.721 24.585 9.222 24.46 C 9.755 24.313 11.279 23.833 11.833 23.77 L 11.833 23.77 C 11.806 23.77 11.781 23.765 11.756 23.757 L 11.833 23.77 L 11.833 23.77 L 12.188 21.713 C 12.668 18.872 14.11 16.282 16.272 14.392 C 18.413 12.512 21.17 11.478 24.01 11.467 C 24.021 11.467 24.021 11.467 24.021 11.467 L 24.021 11.467 L 24.021 11.467 C 24.021 11.467 24.021 11.467 24.021 11.467 L 24.01 11.467 C 26.914 11.478 29.713 12.554 31.864 14.486 C 34.047 16.449 35.478 19.112 35.896 22.016 L 36.198 24.083 L 36.198 24.083 L 36.198 24.083 L 36.198 24.083 L 36.198 24.083 L 36.198 24.083 Z M 39.852 20.418 C 39.866 20.421 39.881 20.424 39.896 20.428 C 40.606 20.616 41.305 20.867 41.984 21.17 C 42.58 21.452 43.154 21.775 43.687 22.162 C 44.272 22.59 44.804 23.081 45.274 23.634 C 45.734 24.188 46.131 24.783 46.444 25.431 C 46.778 26.131 47.039 26.862 47.196 27.614 C 47.384 28.47 47.488 29.347 47.499 30.235 C 47.509 31.091 47.457 31.948 47.332 32.794 C 47.227 33.504 47.05 34.214 46.789 34.893 C 46.569 35.488 46.287 36.052 45.943 36.595 C 45.619 37.107 45.232 37.587 44.794 38.016 C 44.345 38.454 43.843 38.841 43.3 39.164 C 42.715 39.509 42.099 39.802 41.462 40.021 C 40.825 40.24 40.157 40.397 39.488 40.501 C 38.695 40.627 37.89 40.7 37.086 40.71 C 37.076 40.71 37.065 40.71 37.055 40.71 L 29.744 40.71 L 27.655 40.71 L 18.256 40.71 L 10.945 40.71 C 10.935 40.71 10.924 40.71 10.914 40.71 C 10.078 40.7 9.232 40.627 8.407 40.491 C 7.708 40.376 7.029 40.198 6.36 39.958 C 5.765 39.739 5.18 39.457 4.637 39.123 C 4.115 38.809 3.634 38.433 3.206 38.016 C 2.747 37.556 2.339 37.055 1.995 36.512 C 1.64 35.937 1.358 35.321 1.138 34.684 C 0.909 34.026 0.742 33.358 0.648 32.668 C 0.543 31.864 0.491 31.05 0.501 30.235 C 0.512 29.358 0.616 28.48 0.804 27.614 C 0.961 26.862 1.222 26.131 1.556 25.441 C 1.869 24.794 2.266 24.188 2.726 23.645 C 3.185 23.091 3.718 22.601 4.303 22.172 C 4.846 21.786 5.42 21.441 6.037 21.17 C 6.715 20.856 7.426 20.606 8.157 20.418 C 8.162 20.416 8.167 20.415 8.173 20.414 C 8.907 16.869 10.785 13.641 13.525 11.248 C 16.428 8.7 20.157 7.3 24.01 7.29 C 24.01 7.29 24.01 7.29 24.021 7.29 L 24.021 7.29 L 24.021 7.29 C 27.948 7.3 31.728 8.752 34.653 11.373 C 37.313 13.757 39.138 16.933 39.852 20.418 L 39.852 20.418 L 39.852 20.418 L 39.852 20.418 L 39.852 20.418 L 39.852 20.418 Z " fill-rule="evenodd" fill="url(#_lgradient_0)"/></svg>
|
||||||
|
After Width: | Height: | Size: 4.8 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
@@ -0,0 +1 @@
|
|||||||
|
preferences-system-search.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
epiphany.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ark.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ark.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
applications-office.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
acetoneiso.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
acroread.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
acroread.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
acroread.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
acroread.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
acroread.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
acroread.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_0" x1="0" y1="0.5" x2="1.191860465116279" y2="0.5125000000000001" gradientTransform="matrix(43,0,0,40,2.5,4)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(88,0,226)"/><stop offset="100%" stop-opacity="1" style="stop-color:rgb(255,0,230)"/></linearGradient><path d=" M 13.5 8 L 13.5 8 C 14.604 8 15.5 7.104 15.5 6 L 15.5 6 C 15.5 4.896 14.604 4 13.5 4 L 13.5 4 L 7.5 4 C 4.74 4 2.5 6.24 2.5 9 L 2.5 14 L 2.5 14 C 2.5 15.104 3.396 16 4.5 16 L 4.5 16 C 5.604 16 6.5 15.104 6.5 14 L 6.5 14 L 6.5 11 C 6.5 9.344 7.844 8 9.5 8 L 13.5 8 L 13.5 8 Z M 41.5 21 L 41.5 21 C 41.5 22.104 42.396 23 43.5 23 L 43.5 23 C 44.604 23 45.5 22.104 45.5 21 L 45.5 21 L 45.5 9 C 45.5 6.24 43.26 4 40.5 4 L 22.5 4 L 22.5 4 C 21.396 4 20.5 4.896 20.5 6 L 20.5 6 C 20.5 7.104 21.396 8 22.5 8 L 22.5 8 L 38.5 8 C 40.156 8 41.5 9.344 41.5 11 L 41.5 21 L 41.5 21 Z M 30.5 32 L 30.5 32 C 29.396 32 28.5 31.104 28.5 30 L 28.5 30 C 28.5 28.896 29.396 28 30.5 28 L 30.5 28 L 40.5 28 C 43.26 28 45.5 30.24 45.5 33 L 45.5 39 C 45.5 41.76 43.26 44 40.5 44 L 7.5 44 C 4.74 44 2.5 41.76 2.5 39 L 2.5 24 L 2.5 24 C 2.5 22.896 3.396 22 4.5 22 L 4.5 22 C 5.604 22 6.5 22.896 6.5 24 L 6.5 24 L 6.5 37 C 6.5 38.656 7.844 40 9.5 40 L 38.5 40 C 40.156 40 41.5 38.656 41.5 37 L 41.5 35 C 41.5 33.344 40.156 32 38.5 32 L 30.5 32 Z " fill-rule="evenodd" fill="url(#_lgradient_0)"/><linearGradient id="_lgradient_1" x1="0" y1="0.5" x2="0.8860274441759262" y2="0.6031697214535364" gradientTransform="matrix(19.36,0,0,19.15,7.82,12.225)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(255,229,59)"/><stop offset="98.69565217391305%" stop-opacity="1" style="stop-color:rgb(255,0,91)"/></linearGradient><path d=" M 12.29 29.585 L 12.29 29.585 C 11.794 30.573 10.59 30.974 9.605 30.48 L 9.605 30.48 C 8.62 29.986 8.219 28.787 8.71 27.805 L 8.71 27.805 L 15.535 15.709 C 16.62 13.786 18.381 13.786 19.466 15.709 L 26.29 27.805 L 26.29 27.805 C 26.781 28.787 26.38 29.986 25.395 30.48 L 25.395 30.48 C 24.41 30.974 23.207 30.573 22.71 29.585 L 22.71 29.585 L 17.5 21.165 L 12.29 29.585 Z " fill="url(#_lgradient_1)"/><linearGradient id="_lgradient_2" x1="1.0000000000000009" y1="1" x2="0.03793101488976114" y2="-0.14874450475548628" gradientTransform="matrix(6.712,4.713,-6.435,9.164,17.222,23.805)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(0,196,255)"/><stop offset="83.88839793817618%" stop-opacity="1" style="stop-color:rgb(0,114,255)"/></linearGradient><path d=" M 18.115 24.789 L 21.054 28.557 C 21.393 28.992 21.468 29.747 21.221 30.24 L 17.947 36.788 C 17.701 37.282 17.3 37.282 17.053 36.788 L 13.779 30.24 C 13.532 29.747 13.608 28.992 13.947 28.557 L 16.885 24.789 C 17.225 24.353 17.776 24.353 18.115 24.789 Z " fill="url(#_lgradient_2)"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_3" x1="0" y1="0.5" x2="1.0176991150442474" y2="0.5" gradientTransform="matrix(27,0,0,22.68,10.5,12.66)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(84,51,255)"/><stop offset="51.73913043478261%" stop-opacity="1" style="stop-color:rgb(32,189,255)"/><stop offset="98.26086956521739%" stop-opacity="1" style="stop-color:rgb(165,254,203)"/></linearGradient><path d=" M 24 12.66 L 10.5 35.34 L 22.311 28.677 L 24 27.725 L 24 12.66 Z M 24 12.66 L 37.5 35.34 L 25.689 28.677 L 24 27.725 L 24 12.66 Z " fill="url(#_lgradient_3)"/><linearGradient id="_lgradient_4" x1="0.0715531878859646" y1="0.7439129164522069" x2="0.9987335718958235" y2="0.4956829572309338" gradientTransform="matrix(46,0,0,46,0.959,1.03)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(84,51,255)"/><stop offset="51.73913043478261%" stop-opacity="1" style="stop-color:rgb(32,189,255)"/><stop offset="98.26086956521739%" stop-opacity="1" style="stop-color:rgb(165,254,203)"/></linearGradient><path d=" M 33.433 40.492 L 33.433 40.492 C 34.391 39.945 35.617 40.276 36.169 41.231 L 36.169 41.231 C 36.722 42.186 36.394 43.41 35.436 43.963 L 35.436 43.963 C 31.711 46.107 27.462 47.163 23.175 47.017 C 19.287 46.884 15.493 45.764 12.149 43.769 L 12.149 43.769 C 11.202 43.201 10.894 41.971 11.462 41.024 L 11.462 41.024 C 12.03 40.077 13.26 39.769 14.207 40.337 L 14.207 40.337 C 16.962 41.992 20.093 42.909 23.311 43.019 C 26.859 43.14 30.361 42.269 33.433 40.492 L 33.433 40.492 L 33.433 40.492 L 33.433 40.492 L 33.433 40.492 L 33.433 40.492 L 33.433 40.492 Z M 40.967 15.555 L 40.967 15.555 C 40.471 14.566 40.871 13.362 41.859 12.869 L 41.859 12.869 C 42.848 12.375 44.049 12.777 44.54 13.765 L 44.54 13.765 C 46.255 17.186 47.076 20.986 46.945 24.814 C 46.846 27.732 46.198 30.602 45.026 33.263 L 45.026 33.263 C 44.583 34.275 43.402 34.737 42.389 34.294 L 42.389 34.294 C 41.377 33.851 40.916 32.669 41.359 31.657 L 41.359 31.657 C 42.334 29.459 42.865 27.086 42.948 24.677 C 43.055 21.519 42.372 18.384 40.967 15.555 L 40.967 15.555 L 40.967 15.555 L 40.967 15.555 L 40.967 15.555 L 40.967 15.555 L 40.967 15.555 Z M 15.727 6.91 L 15.727 6.91 C 14.734 7.384 13.537 6.962 13.058 5.968 L 13.058 5.968 C 12.578 4.974 12.995 3.778 13.989 3.298 L 13.989 3.298 C 17.336 1.691 21.024 0.917 24.742 1.043 C 28.32 1.165 31.83 2.116 34.973 3.834 L 34.973 3.834 C 35.944 4.364 36.301 5.582 35.771 6.552 L 35.771 6.552 C 35.241 7.523 34.023 7.88 33.052 7.35 L 33.052 7.35 C 30.459 5.931 27.564 5.142 24.606 5.041 C 21.538 4.936 18.494 5.573 15.727 6.91 L 15.727 6.91 L 15.727 6.91 L 15.727 6.91 L 15.727 6.91 L 15.727 6.91 Z M 5.933 30.059 L 5.933 30.059 C 6.284 31.104 5.718 32.237 4.671 32.588 L 4.671 32.588 C 3.623 32.939 2.488 32.371 2.137 31.321 L 2.137 31.321 C 1.276 28.72 0.879 25.985 0.972 23.246 C 1.095 19.628 2.067 16.079 3.826 12.907 L 3.826 12.907 C 4.356 11.943 5.571 11.594 6.539 12.129 L 6.539 12.129 C 7.506 12.665 7.857 13.883 7.322 14.848 L 7.322 14.848 C 5.872 17.47 5.071 20.394 4.97 23.383 C 4.892 25.651 5.216 27.904 5.933 30.059 L 5.933 30.059 L 5.933 30.059 L 5.933 30.059 L 5.933 30.059 Z M 41.174 9.498 C 41.136 10.601 40.21 11.467 39.107 11.429 C 38.004 11.391 37.138 10.465 37.176 9.362 C 37.214 8.259 38.14 7.394 39.243 7.431 C 40.346 7.469 41.211 8.395 41.174 9.498 L 41.174 9.498 L 41.174 9.498 L 41.174 9.498 Z M 9.931 37.22 C 9.893 38.323 8.967 39.188 7.864 39.15 C 6.761 39.113 5.896 38.187 5.933 37.083 C 5.971 35.98 6.897 35.115 8 35.153 C 9.103 35.19 9.969 36.116 9.931 37.22 L 9.931 37.22 L 9.931 37.22 Z M 41.947 38.311 C 41.985 37.208 41.12 36.282 40.017 36.244 C 38.914 36.207 37.987 37.072 37.95 38.175 C 37.912 39.278 38.777 40.204 39.88 40.242 C 40.984 40.28 41.91 39.415 41.947 38.311 L 41.947 38.311 Z M 11.371 8.482 C 11.409 7.379 10.544 6.453 9.44 6.415 C 8.337 6.377 7.411 7.243 7.373 8.346 C 7.336 9.449 8.201 10.375 9.304 10.413 C 10.407 10.45 11.333 9.585 11.371 8.482 Z " fill-rule="evenodd" fill="url(#_lgradient_4)"/></svg>
|
||||||
|
After Width: | Height: | Size: 4.2 KiB |
@@ -0,0 +1 @@
|
|||||||
|
appium.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
appium.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ardour.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ardour.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
ardour.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
com.bambulab.BambuStudio.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
betterbird.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
blender.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
burp.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_30" x1="0.33956663574158236" y1="0.8469521004065024" x2="0.11809502597372099" y2="0.06428875112254495" gradientTransform="matrix(27.02,0,0,41.72,19.837,2.748)" gradientUnits="userSpaceOnUse"><stop offset="2.1739130434782608%" stop-opacity="1" style="stop-color:rgb(242,79,92)"/><stop offset="49.56521739130435%" stop-opacity="1" style="stop-color:rgb(208,103,207)"/><stop offset="98.26086956521739%" stop-opacity="1" style="stop-color:rgb(0,115,255)"/></linearGradient><path d=" M 22.427 6.438 L 22.267 5.108 L 22.69 4.44 C 23.279 3.506 24.205 3.525 24.755 4.482 L 25.087 5.058 L 45.407 41.842 C 46.207 43.292 45.594 44.009 44.038 43.443 L 21.247 35.158 L 21.247 35.158 C 20.469 34.877 20.066 34.017 20.347 33.238 L 20.347 33.238 C 20.629 32.46 21.489 32.057 22.267 32.338 L 22.267 32.338 L 40.657 39.028 L 22.427 6.438 Z " fill="url(#_lgradient_30)"/><linearGradient id="_lgradient_31" x1="0" y1="0.5" x2="1" y2="0.5" gradientTransform="matrix(33.53,0,0,23.38,-0.273,20.868)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(67,233,123)"/><stop offset="97.82608695652173%" stop-opacity="1" style="stop-color:rgb(56,249,215)"/></linearGradient><path d=" M 31.757 41.248 L 31.757 41.248 C 32.585 41.248 33.257 41.92 33.257 42.748 L 33.257 42.748 C 33.257 43.576 32.585 44.248 31.757 44.248 L 31.757 44.248 L 4.727 44.248 C 1.968 44.248 1.423 42.784 3.511 40.98 L 24.527 22.829 C 25.78 21.747 27.019 22.194 27.291 23.827 L 28.237 29.498 L 28.237 29.498 C 28.375 30.315 27.824 31.09 27.007 31.228 L 27.007 31.228 C 26.191 31.366 25.415 30.815 25.277 29.998 L 25.277 29.998 L 24.717 26.628 L 7.787 41.248 L 31.757 41.248 Z " fill="url(#_lgradient_31)"/><linearGradient id="_lgradient_32" x1="0.11290322580645173" y1="0.9416172882537471" x2="0.9597258645858903" y2="0.06754644437040047" gradientTransform="matrix(17.05,0,0,28.69,6.707,5.108)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(0,198,255)"/><stop offset="98.69565217391305%" stop-opacity="1" style="stop-color:rgb(0,114,255)"/></linearGradient><path d=" M 10.057 32.498 L 10.057 32.498 C 9.643 33.216 8.725 33.462 8.007 33.048 L 8.007 33.048 C 7.29 32.634 7.043 31.716 7.457 30.998 L 7.457 30.998 L 19.437 10.038 L 22.267 5.108 L 23.757 8.748 L 22.077 11.458 L 10.057 32.498 Z " fill="url(#_lgradient_32)"/></svg>
|
||||||
|
After Width: | Height: | Size: 2.6 KiB |
@@ -0,0 +1 @@
|
|||||||
|
CMakeSetup.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
cemu.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
cursor.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
resolve.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
darktable.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
desmume.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
kakaotalk.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
epic-games.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
epiphany.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
gmail.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_1" x1="0.05829497091587049" y1="0.9732143209045783" x2="0.9185330428048988" y2="0.02820799869418389" gradientTransform="matrix(35.993,0,0,47,6.003,0.5)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(84,51,255)"/><stop offset="51.73913043478261%" stop-opacity="1" style="stop-color:rgb(32,189,255)"/><stop offset="98.26086956521739%" stop-opacity="1" style="stop-color:rgb(165,254,203)"/></linearGradient><path d=" M 6.004 17.519 C 6.036 14.101 7.447 10.726 10.627 9.51 C 11.5 9.195 12.454 9.033 13.404 9.04 L 13.404 9.04 L 13.404 9.04 L 13.404 9.04 L 13.404 9.04 L 13.404 9.04 L 13.404 9.04 L 13.404 9.04 L 13.404 9.04 L 13.404 9.04 L 13.404 9.04 L 13.404 9.04 C 15.495 9.055 17.569 9.891 18.721 11.73 C 21.111 15.566 22.199 20.135 22.943 24.497 C 22.943 24.497 21.703 27.027 21.046 28.383 C 20.075 24.078 19.154 19.73 16.965 15.816 C 15.808 13.719 13.094 12.438 10.837 13.563 C 8.537 14.436 7.849 16.801 7.778 19.201 L 7.778 19.201 L 6.419 21.137 L 6.213 19.953 L 6.213 19.953 L 6.213 19.953 C 6.068 19.159 5.996 18.337 6.004 17.519 L 6.004 17.519 Z M 22.393 34.193 L 22.393 34.193 L 22.393 34.193 L 22.393 34.192 L 24.109 30.703 L 24.235 30.447 C 24.235 30.447 24.235 30.447 24.235 30.447 L 24.235 30.447 L 24.235 30.448 C 24.236 30.495 24.35 33.467 24.423 36.16 L 24.423 36.172 L 24.423 36.172 L 24.423 36.172 C 24.453 37.276 24.475 38.332 24.481 39.12 C 24.287 41.618 24.195 44.445 22.471 46.429 C 21.435 47.352 19.916 47.691 18.572 47.397 C 16.029 46.913 15.734 43.977 16.225 41.901 C 17.314 37.091 19.857 32.782 21.79 28.286 C 23.192 25.292 24.54 22.272 25.908 19.262 C 25.908 19.262 25.908 19.262 25.908 19.262 L 25.908 19.262 L 25.908 19.26 L 25.908 19.26 C 26.7 17.519 27.497 15.78 28.316 14.052 C 29.105 12.388 30.014 10.43 30.855 8.791 L 30.856 8.788 L 30.856 8.788 L 30.856 8.788 C 30.856 8.788 30.856 8.788 30.856 8.788 C 30.856 8.788 30.856 8.788 30.856 8.788 L 30.856 8.788 L 30.856 8.788 L 33.258 3.366 L 33.258 3.366 L 34.471 1.144 L 38.193 1.748 L 38.193 1.748 L 41.997 0.5 L 37.011 8.535 L 37.011 8.535 L 37.011 8.535 C 37.011 8.535 37.011 8.535 37.011 8.535 L 37.011 8.535 L 33.872 13.392 L 33.872 13.392 L 33.872 13.392 L 33.872 13.392 L 33.872 13.392 C 33.872 13.392 33.872 13.392 33.872 13.392 C 33.872 13.392 33.872 13.392 33.872 13.392 L 33.872 13.392 L 33.872 13.392 L 33.872 13.392 L 30.469 18.634 C 30.469 18.634 30.469 18.634 30.468 18.634 C 26.789 24.5 23.367 30.535 20.555 36.866 C 19.793 38.902 17.829 41.461 19.184 43.312 C 20.668 45.338 21.672 40.766 21.884 39.377 C 21.944 39.007 21.99 38.635 22.028 38.26 C 22.028 38.259 22.029 38.258 22.029 38.257 L 22.1 37.465 C 22.187 36.369 22.239 35.268 22.393 34.194 L 22.393 34.192 L 22.393 34.193 L 22.393 34.193 L 22.393 34.193 Z " fill-rule="evenodd" fill="url(#_lgradient_1)"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.0 KiB |
@@ -0,0 +1 @@
|
|||||||
|
geogebra.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
gitkraken.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
gmail.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
disk-burner.svg
|
||||||
@@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<svg width="48" height="48" version="1.1" viewBox="0 0 48 48" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><defs><linearGradient id="linearGradient13"><stop stop-color="#93c2ff" offset="0"/><stop stop-color="#1b43e0" offset="1"/></linearGradient><linearGradient id="linearGradient7" x1="61.1819" x2="109.182" y1="50.3884" y2="98.3884" gradientTransform="matrix(.948999 0 0 .948999 -56.8376 -46.5945)" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient13"/><linearGradient id="linearGradient17" x2="48" y2="48" gradientUnits="userSpaceOnUse" xlink:href="#linearGradient13"/></defs><path d="m20.8109 11.4964v1.45221c-0.751249-0.883508-1.87112-1.44317-3.12696-1.44317-2.27239 0-4.10188 1.82949-4.10188 4.10188v3.26648c0 2.27239 1.82949 4.10188 4.10188 4.10188 1.25585 0 2.37572-0.559663 3.12696-1.44317v1.5906c0.03962 1.71653-1.55511 3.22546-5.6456 0.437752l0.0061 3.05297c7.38403 3.43896 8.80533-2.23187 8.80533-3.49072v-11.6267zm-2.1063 2.24864h0.01865c1.10823 0 2.00067 0.891871 2.00067 2.0001v2.88126c0 1.10824-0.89244 2.00067-2.00067 2.00067h-0.01865c-1.10823 0-2.0001-0.892436-2.0001-2.00067v-2.88126c0-1.10823 0.891872-2.0001 2.0001-2.0001zm9.34392-2.24864v1.45221c0.751249-0.883508 1.87112-1.44317 3.12696-1.44317 2.27239 0 4.10188 1.82949 4.10188 4.10188v3.26648c0 2.27239-1.8295 4.10188-4.10188 4.10188-1.25585 0-2.37572-0.559663-3.12696-1.44317v5.73032l-3.16594 0.44447v-15.697zm2.1063 2.24864h-0.01866c-1.10823 0-2.00067 0.891871-2.00067 2.0001v2.88126c0 1.10824 0.892438 2.00067 2.00067 2.00067h0.01866c1.10823 0 2.0001-0.892436 2.0001-2.00067v-2.88126c0-1.10823-0.891873-2.0001-2.0001-2.0001z" fill="url(#linearGradient7)" fill-rule="evenodd" style="paint-order:normal"/><path d="m30.5234 40.4685c-1.89733 2.3087-4.59063 5.09963-6.5234 5.09963-5.2428-5e-6 -18.4142-21.1434-18.4142-30.2373 0-8.76326 9.72323-12.899 18.4142-12.899 8.69097 9e-7 18.4142 4.13571 18.4142 12.899 0 5.00759-3.70858 12.2952-5.65762 15.8074" fill="none" stroke="url(#linearGradient17)" stroke-linecap="round" stroke-linejoin="round" stroke-width="4.09683"/></svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_4" x1="0.39980158730156745" y1="0.20242151662881497" x2="0.36506834215163786" y2="1.11853149718325" gradientTransform="matrix(36,0,0,10,0.5,24.5)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(67,233,123)"/><stop offset="97.82608695652173%" stop-opacity="1" style="stop-color:rgb(56,249,215)"/></linearGradient><path d=" M 4.5 34.5 L 0.5 34.5 L 0.5 24.5 L 17.5 24.5 L 17.5 30.5 L 21.21 30.5 C 22.46 30.11 23.63 29.48 24.64 28.65 C 25.53 27.88 26.21 26.9 26.63 25.8 C 26.92 25.02 27.67 24.5 28.5 24.5 L 36.5 24.5 L 36.5 32.5 L 36.5 34.5 L 32.5 34.5 L 32.5 32.5 L 32.5 28.5 L 29.79 28.5 C 29.14 29.72 28.27 30.81 27.21 31.71 C 25.7 32.96 23.94 33.89 22.04 34.42 C 21.87 34.47 21.68 34.5 21.5 34.5 L 13.5 34.5 L 13.5 28.5 L 4.5 28.5 L 4.5 34.5 Z " fill="url(#_lgradient_4)"/><linearGradient id="_lgradient_5" x1="0.10645977873617098" y1="-0.2563187542971434" x2="0.5083731961971028" y2="1.0267301862616416" gradientTransform="matrix(47,0,0,10,0.5,13.5)" gradientUnits="userSpaceOnUse"><stop offset="1.3043478260869565%" stop-opacity="1" style="stop-color:rgb(223,87,255)"/><stop offset="52.083333333333336%" stop-opacity="1" style="stop-color:rgb(36,30,252)"/><stop offset="97.91666666666666%" stop-opacity="1" style="stop-color:rgb(14,175,254)"/></linearGradient><path d=" M 36.5 19.5 L 36.5 17.5 L 45.5 17.5 L 47.5 17.5 L 47.5 13.5 L 45.5 13.5 L 32.5 13.5 L 32.5 19.5 L 29.79 19.5 C 29.14 18.28 28.27 17.19 27.21 16.29 C 25.7 15.04 23.94 14.11 22.04 13.58 C 21.87 13.53 21.68 13.5 21.5 13.5 L 13.5 13.5 L 13.5 19.5 L 4.5 19.5 L 4.5 13.5 L 0.5 13.5 L 0.5 23.5 L 17.5 23.5 L 17.5 17.5 L 21.21 17.5 C 22.46 17.89 23.63 18.52 24.64 19.35 C 25.53 20.12 26.21 21.1 26.63 22.2 C 26.92 22.98 27.67 23.5 28.5 23.5 L 36.5 23.5 L 46.5 23.5 L 46.5 19.5 L 36.5 19.5 Z " fill-rule="evenodd" fill="url(#_lgradient_5)"/></svg>
|
||||||
|
After Width: | Height: | Size: 2.1 KiB |
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_5" x1="0.021390937829293966" y1="0.991611433305716" x2="0.9170706006322442" y2="0.11650787075384861" gradientTransform="matrix(47.45,0,0,48.28,0.36,0)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(136,42,233)"/><stop offset="100%" stop-opacity="1" style="stop-color:rgb(52,236,235)"/></linearGradient><path d=" M 7.94 0.004 C 7.93 0.836 7.919 1.668 7.91 2.5 C 12.142 4.284 19.035 8.341 22.225 14.241 C 21.431 4.294 7.965 -0.149 7.94 0.004 L 7.94 0.004 L 7.94 0.004 Z M 40.06 0.004 C 40.035 -0.149 26.569 4.294 25.775 14.241 C 28.965 8.341 35.858 4.284 40.09 2.5 C 40.081 1.668 40.07 0.836 40.06 0.004 L 40.06 0.004 L 40.06 0.004 L 40.06 0.004 Z M 4.031 3.454 C 3.998 5.028 3.966 6.602 3.934 8.176 C 8.085 9.031 18.325 12.928 22.454 20.354 C 21.535 7.764 4.07 3.211 4.031 3.454 L 4.031 3.454 L 4.031 3.454 Z M 43.969 3.454 C 43.93 3.211 26.465 7.764 25.546 20.354 C 29.675 12.928 39.915 9.031 44.066 8.176 C 44.034 6.602 44.002 5.028 43.969 3.454 L 43.969 3.454 L 43.969 3.454 Z M 3.86 31.97 L 10.82 29.57 C 11.36 29.38 11.74 28.91 11.82 28.35 C 11.9 27.75 11.94 27.15 11.94 26.55 C 11.96 25.36 11.76 24.18 11.34 23.07 C 10.93 22.01 10.27 21.06 9.43 20.29 C 8.55 19.52 7.52 18.92 6.4 18.55 C 5.6 18.27 4.78 18.07 3.95 17.93 L 4.15 12.93 C 5.84 13.28 7.5 13.76 9.11 14.37 C 10.9 15.05 12.58 15.97 14.11 17.11 C 15.46 18.12 16.62 19.35 17.56 20.74 C 18.48 22.12 19.15 23.64 19.55 25.25 C 19.68 25.72 19.74 26.2 19.74 26.69 L 19.74 37.19 L 3.5 43.77 L 3.86 31.97 L 3.86 31.97 L 3.86 31.97 Z M 0.93 29.81 L 8.93 27.05 C 8.94 26.87 8.94 26.69 8.94 26.52 C 8.96 25.71 8.82 24.9 8.54 24.14 C 8.3 23.53 7.92 22.98 7.43 22.53 C 6.85 22.02 6.17 21.63 5.44 21.39 C 4.42 21.04 3.37 20.83 2.3 20.76 C 1.91 20.73 1.54 20.55 1.28 20.26 C 1.02 19.97 0.88 19.59 0.9 19.2 L 1.22 11.09 C 1.24 10.67 1.43 10.27 1.76 10 C 2.09 9.73 2.52 9.61 2.94 9.67 C 5.41 10.04 7.84 10.68 10.17 11.57 C 12.22 12.34 14.15 13.4 15.91 14.71 C 17.53 15.93 18.93 17.4 20.06 19.08 C 21.16 20.74 21.97 22.57 22.46 24.51 C 22.64 25.22 22.74 25.95 22.74 26.69 L 22.74 39.21 L 0.36 48.28 L 0.93 29.81 L 0.93 29.81 L 0.93 29.81 Z M 44.67 43.77 L 28.43 37.19 L 28.43 26.69 C 28.43 26.2 28.49 25.72 28.61 25.25 C 29.01 23.64 29.69 22.12 30.6 20.74 C 31.54 19.35 32.71 18.12 34.05 17.11 C 35.58 15.97 37.27 15.05 39.05 14.37 C 40.67 13.76 42.32 13.28 44.01 12.93 L 44.21 17.93 C 43.38 18.07 42.56 18.27 41.76 18.55 C 40.65 18.92 39.62 19.52 38.73 20.29 C 37.89 21.06 37.23 22.01 36.82 23.07 C 36.41 24.18 36.2 25.36 36.22 26.55 C 36.22 27.15 36.27 27.75 36.34 28.35 C 36.42 28.91 36.81 29.38 37.34 29.57 L 44.3 31.97 L 44.67 43.77 L 44.67 43.77 Z M 47.81 48.28 L 25.43 39.21 L 25.43 26.69 C 25.43 25.95 25.52 25.22 25.7 24.51 C 26.19 22.57 27 20.74 28.11 19.08 C 29.24 17.4 30.64 15.93 32.25 14.71 C 34.01 13.4 35.94 12.34 37.99 11.57 C 40.33 10.68 42.75 10.04 45.22 9.67 C 45.64 9.61 46.07 9.73 46.4 10 C 46.73 10.27 46.93 10.67 46.94 11.09 L 47.27 19.2 C 47.28 19.59 47.14 19.97 46.88 20.26 C 46.62 20.55 46.26 20.73 45.87 20.76 C 44.8 20.83 43.74 21.04 42.73 21.39 C 41.99 21.63 41.31 22.02 40.73 22.53 C 40.24 22.98 39.87 23.53 39.63 24.14 C 39.34 24.9 39.21 25.71 39.22 26.52 C 39.22 26.69 39.23 26.87 39.24 27.05 L 47.23 29.81 L 47.81 48.28 L 47.81 48.28 Z " fill-rule="evenodd" fill="url(#_lgradient_5)"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.5 KiB |
@@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Gravit.io -->
|
||||||
|
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_7" x1="0" y1="0.5" x2="1" y2="0.5" gradientTransform="matrix(46.792,0,0,46.792,0.604,0.604)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(255,224,49)"/><stop offset="98.69565217391305%" stop-opacity="1" style="stop-color:rgb(252,82,82)"/></linearGradient><path d=" M 29.349 34.735 C 30.335 33.969 36.657 28.597 37.292 27.986 C 38.127 27.18 38.135 26.969 37.397 24.817 C 35.784 20.108 32.947 14.487 31.67 13.472 C 31.138 13.049 30.157 13.056 29.468 13.485 C 28.507 14.085 28.55 14.893 29.644 16.811 C 30.038 17.502 30.361 18.114 30.361 18.171 C 30.361 18.229 30.224 18.275 30.056 18.275 C 29.842 18.275 29.353 17.666 28.401 16.217 C 26.954 14.011 26.537 13.66 25.586 13.853 C 24.869 13.998 24.052 14.553 23.783 15.08 C 23.472 15.688 23.6 15.996 25.05 18.109 C 25.94 19.408 26.183 19.872 26.044 20.012 C 25.944 20.114 25.811 20.197 25.749 20.197 C 25.687 20.197 24.876 19.152 23.948 17.875 C 23.354 17.059 22.89 16.459 22.545 16.06 C 21.951 15.248 21.387 15.5 20.658 15.769 C 20.137 16.026 19.609 16.397 19.349 16.742 C 18.738 17.552 18.828 18.064 19.832 19.478 C 20.315 20.158 21.031 21.114 21.424 21.601 C 22.112 22.455 22.278 23.056 21.864 23.194 C 21.623 23.273 21.748 23.412 17.131 17.965 C 14.271 14.592 12.928 13.125 12.592 13.006 C 11.96 12.784 11.271 13.075 10.595 13.854 C 9.596 15.004 9.479 14.8 15.098 21.671 C 17.857 25.043 20.184 27.895 20.27 28.007 C 20.587 28.423 20.192 28.394 18.684 27.889 C 17.415 27.463 16.956 27.382 16.125 27.435 C 14.748 27.55 14.122 28.31 14.091 29.36 C 14.07 30.093 14.771 30.8 15.628 31.238 C 16.118 31.49 21.543 33.243 26.004 34.591 C 27.953 35.181 28.731 35.214 29.349 34.734 L 29.349 34.735 Z M 18.03 3.6 C 18.03 3.6 18.04 3.6 18.05 3.6 L 18.01 3.6 L 18.01 3.6 L 18.03 3.6 L 24.02 3.61 L 30.01 3.62 C 30.33 3.62 30.66 3.66 30.97 3.74 C 31.41 3.84 31.83 3.98 32.24 4.15 C 32.66 4.32 33.06 4.53 33.44 4.76 C 33.71 4.93 33.97 5.13 34.2 5.36 L 38.43 9.6 L 42.66 13.84 C 42.89 14.07 43.09 14.33 43.25 14.6 C 43.49 14.98 43.69 15.38 43.86 15.79 C 44.04 16.21 44.17 16.63 44.27 17.07 C 44.35 17.38 44.39 17.71 44.4 18.03 C 44.4 18.03 44.4 18.04 44.4 18.05 L 44.4 18.01 L 44.4 18.01 L 44.4 18.03 L 44.39 24.02 L 44.38 30.03 C 44.38 31.59 43.76 33.09 42.65 34.19 L 38.4 38.43 L 34.16 42.66 C 33.93 42.89 33.67 43.09 33.4 43.25 C 33.02 43.49 32.62 43.69 32.21 43.86 C 31.79 44.04 31.37 44.17 30.93 44.27 C 30.62 44.35 30.29 44.39 29.97 44.4 C 29.97 44.4 29.96 44.4 29.95 44.4 L 29.99 44.4 L 29.99 44.4 L 29.97 44.4 L 23.98 44.39 L 17.99 44.38 C 17.67 44.38 17.34 44.34 17.03 44.26 C 16.59 44.16 16.17 44.02 15.76 43.85 C 15.34 43.68 14.94 43.47 14.56 43.24 C 14.29 43.07 14.03 42.87 13.8 42.64 L 9.57 38.4 L 5.34 34.16 C 5.11 33.93 4.91 33.67 4.75 33.4 C 4.51 33.02 4.31 32.62 4.14 32.21 C 3.96 31.79 3.83 31.37 3.73 30.93 C 3.65 30.62 3.61 30.29 3.6 29.97 L 3.61 23.98 L 3.62 17.99 C 3.62 17.67 3.66 17.34 3.74 17.03 C 3.84 16.59 3.98 16.17 4.15 15.76 C 4.32 15.34 4.53 14.94 4.76 14.56 C 4.93 14.29 5.13 14.03 5.36 13.8 L 9.6 9.57 L 13.84 5.34 C 14.07 5.11 14.33 4.91 14.6 4.75 C 14.98 4.51 15.38 4.31 15.79 4.14 C 16.21 3.96 16.63 3.83 17.07 3.73 C 17.38 3.65 17.71 3.61 18.03 3.6 L 18.03 3.6 Z M 3.6 29.97 C 3.6 29.97 3.6 29.96 3.6 29.95 L 3.6 29.99 L 3.6 29.99 L 3.6 29.97 L 3.6 29.97 Z M 29.983 47.396 L 23.976 47.39 L 17.969 47.384 C 15.937 47.382 13.122 46.212 11.687 44.774 L 7.444 40.522 L 3.201 36.27 C 1.765 34.832 0.602 32.015 0.604 29.983 L 0.61 23.976 L 0.616 17.969 C 0.618 15.937 1.788 13.122 3.226 11.687 L 7.478 7.444 L 11.73 3.201 C 13.168 1.765 15.985 0.602 18.017 0.604 L 24.024 0.61 L 30.031 0.616 C 32.063 0.618 34.878 1.788 36.313 3.226 L 40.556 7.478 L 44.799 11.73 C 46.235 13.168 47.398 15.985 47.396 18.017 L 47.39 24.024 L 47.384 30.031 C 47.382 32.063 46.212 34.878 44.774 36.313 L 40.522 40.556 L 36.27 44.799 C 34.832 46.235 32.015 47.398 29.983 47.396 L 29.983 47.396 Z " fill-rule="evenodd" fill="url(#_lgradient_7)"/></svg>
|
||||||
|
After Width: | Height: | Size: 4.1 KiB |
@@ -0,0 +1 @@
|
|||||||
|
joplin.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
kakaotalk.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_13" x1="0.24955340304810814" y1="0.9281914893617024" x2="0.7331744178517607" y2="0.08776595744680826" gradientTransform="matrix(43.422,0,0,47,2.289,0.5)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(198,255,221)"/><stop offset="50%" stop-opacity="1" style="stop-color:rgb(251,215,134)"/><stop offset="100%" stop-opacity="1" style="stop-color:rgb(247,121,125)"/></linearGradient><path d=" M 32.157 8 L 32.157 7.737 C 32.157 6.91 31.837 6.124 31.247 5.535 C 30.668 4.956 29.883 4.635 29.056 4.635 L 18.944 4.635 L 18.944 4.635 L 18.944 4.635 C 18.117 4.635 17.332 4.956 16.753 5.535 C 16.163 6.124 15.843 6.91 15.843 7.737 L 15.843 8 L 15.843 8 L 19 8 C 19.554 8 20 8.446 20 9 C 20 9.554 19.554 10 19 10 L 15.843 10 L 15.843 12 L 15.843 12 L 19 12 C 19.554 12 20 12.446 20 13 C 20 13.554 19.554 14 19 14 L 15.843 14 L 15.843 16 L 15.843 16 L 19 16 C 19.554 16 20 16.446 20 17 C 20 17.554 19.554 18 19 18 L 15.843 18 L 15.843 18.076 C 15.843 18.893 16.163 19.689 16.753 20.268 C 17.332 20.847 18.117 21.177 18.944 21.177 L 29.056 21.177 C 29.883 21.177 30.668 20.847 31.247 20.268 C 31.837 19.689 32.157 18.893 32.157 18.076 L 32.157 18 L 29 18 C 28.446 18 28 17.554 28 17 C 28 16.446 28.446 16 29 16 L 29 16 L 32.157 16 L 32.157 14 L 29 14 C 28.446 14 28 13.554 28 13 C 28 12.446 28.446 12 29 12 L 29 12 L 32.157 12 L 32.157 10 L 29 10 C 28.446 10 28 9.554 28 9 C 28 8.446 28.446 8 29 8 L 29 8 L 32.157 8 Z M 41.576 30.482 L 41.576 32.55 C 41.576 33.098 41.359 33.625 40.966 34.008 C 40.583 34.401 40.056 34.618 39.508 34.618 L 31.723 34.618 L 34.566 39.363 C 34.783 39.725 34.897 40.149 34.897 40.573 C 34.907 41.358 34.535 42.113 33.894 42.578 L 33.408 42.93 C 32.984 43.219 32.488 43.374 31.981 43.364 C 31.247 43.385 30.544 43.075 30.058 42.537 L 24 35.61 L 17.942 42.537 C 17.456 43.075 16.753 43.385 16.019 43.364 C 15.512 43.374 15.016 43.219 14.592 42.93 L 14.106 42.578 C 13.465 42.113 13.093 41.358 13.103 40.573 C 13.103 40.149 13.217 39.725 13.434 39.363 L 16.277 34.618 L 8.492 34.618 C 7.944 34.618 7.417 34.401 7.034 34.008 C 6.641 33.625 6.424 33.098 6.424 32.55 L 6.424 30.482 C 6.424 29.934 6.641 29.407 7.034 29.014 C 7.417 28.632 7.944 28.414 8.492 28.414 L 39.508 28.414 C 40.056 28.414 40.583 28.632 40.966 29.014 C 41.359 29.407 41.576 29.934 41.576 30.482 L 41.576 30.482 L 41.576 30.482 Z M 15.216 24.279 L 8.492 24.279 C 6.848 24.279 5.266 24.93 4.108 26.088 C 2.94 27.256 2.289 28.838 2.289 30.482 L 2.289 32.55 C 2.289 34.194 2.94 35.765 4.108 36.933 C 5.266 38.091 6.848 38.753 8.492 38.753 L 9.226 38.753 C 9.05 39.342 8.968 39.952 8.968 40.562 C 8.957 42.682 9.96 44.677 11.676 45.928 C 11.676 45.928 11.687 45.928 11.687 45.938 L 12.193 46.3 C 12.204 46.3 12.204 46.3 12.204 46.311 C 13.32 47.096 14.654 47.51 16.019 47.5 C 17.921 47.52 19.751 46.714 21.022 45.287 C 21.033 45.277 21.033 45.277 21.043 45.266 L 24 41.886 L 26.957 45.266 C 26.967 45.277 26.967 45.277 26.978 45.287 C 28.249 46.714 30.079 47.52 31.981 47.5 C 33.346 47.51 34.68 47.096 35.796 46.311 C 35.796 46.3 35.796 46.3 35.807 46.3 L 36.313 45.938 C 36.313 45.928 36.324 45.928 36.324 45.928 C 38.04 44.677 39.043 42.682 39.032 40.562 C 39.032 39.952 38.95 39.342 38.774 38.753 L 38.774 38.753 L 39.508 38.753 C 41.152 38.753 42.734 38.091 43.892 36.933 C 45.06 35.765 45.711 34.194 45.711 32.55 L 45.711 30.482 C 45.711 28.838 45.06 27.256 43.892 26.088 C 42.734 24.93 41.152 24.279 39.508 24.279 L 32.784 24.279 C 33.286 23.977 33.753 23.614 34.173 23.193 C 35.528 21.829 36.293 19.988 36.293 18.076 L 36.293 7.737 C 36.293 5.814 35.528 3.974 34.173 2.619 C 32.819 1.255 30.979 0.5 29.056 0.5 L 18.944 0.5 L 18.944 0.5 C 17.021 0.5 15.181 1.255 13.827 2.619 C 12.472 3.974 11.707 5.814 11.707 7.737 L 11.707 18.076 C 11.707 19.988 12.472 21.829 13.827 23.193 C 14.247 23.614 14.714 23.977 15.216 24.279 L 15.216 24.279 Z " fill-rule="evenodd" fill="url(#_lgradient_13)"/></svg>
|
||||||
|
After Width: | Height: | Size: 4.1 KiB |
@@ -0,0 +1 @@
|
|||||||
|
musescore.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
nextcloud.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
twitter.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
twitter.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_0" x1="0.0593744835262573" y1="0.08124732552394143" x2="0.873203727470684" y2="0.9174224026659414" gradientTransform="matrix(31.334,0,0,47,8.333,0.5)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(165,248,106)"/><stop offset="97.91666666666666%" stop-opacity="1" style="stop-color:rgb(47,206,146)"/></linearGradient><path d=" M 8.333 23.922 L 8.333 31.674 C 8.334 35.421 9.649 39.048 12.048 41.906 C 15.642 46.189 20.48 47.5 24 47.5 C 26.811 47.5 29.594 46.736 32.035 45.264 C 35.221 43.344 38.1 40.342 39.302 36.797 L 33.246 34.642 C 31.434 39.159 28.333 41.233 24 41.233 C 20.376 41.233 14.6 38.659 14.6 31.671 L 14.6 26.246 L 8.333 23.922 Z M 8.333 0.5 L 8.333 17.422 L 14.6 19.747 L 14.6 16.322 C 14.6 16.049 14.596 15.777 14.616 15.51 C 14.824 12.868 15.294 11.101 17.256 9.342 C 19.219 7.583 21.778 6.662 24.4 6.767 C 27.022 6.872 28.925 7.978 30.828 9.805 C 32.296 11.214 33.399 13.572 33.4 16.222 L 33.4 28.222 L 39.667 30.108 L 39.667 16.322 C 39.667 12.126 38.016 8.101 35.078 5.134 C 32.14 2.167 28.155 0.5 24 0.5 L 8.333 0.5 Z " fill-rule="evenodd" fill="url(#_lgradient_0)"/></svg>
|
||||||
|
After Width: | Height: | Size: 1.4 KiB |
@@ -0,0 +1 @@
|
|||||||
|
openrgb.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
openbroadcaster.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_16" x1="0" y1="0.5" x2="1" y2="0.5" gradientTransform="matrix(18.52,0,0,23.566,0.35,12.88)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(24,208,173)"/><stop offset="90.44964029999998%" stop-opacity="1" style="stop-color:rgb(7,195,242)"/></linearGradient><path d=" M 14.731 33.169 C 15.096 33.538 15.291 34.023 15.291 34.533 C 15.291 35.03 15.096 35.515 14.731 35.885 C 14.354 36.242 13.859 36.446 13.339 36.446 C 12.831 36.446 12.337 36.242 11.959 35.885 L 6.489 30.515 C 5.701 29.741 5.702 28.486 6.49 27.714 L 12.625 21.703 C 13.019 21.317 13.019 20.69 12.625 20.303 L 11.294 19 C 10.9 18.613 10.26 18.613 9.865 19 L 3.682 25.058 C 3.317 25.415 2.823 25.619 2.302 25.619 C 1.782 25.619 1.287 25.415 0.923 25.058 C 0.558 24.701 0.35 24.217 0.35 23.707 C 0.35 23.197 0.558 22.712 0.923 22.355 L 9.152 14.281 C 9.94 13.508 11.22 13.507 12.008 14.28 L 17.442 19.603 C 18.23 20.376 18.23 21.63 17.441 22.402 L 11.295 28.414 C 10.9 28.8 10.9 29.427 11.295 29.812 L 14.731 33.169 Z " fill="url(#_lgradient_16)"/><linearGradient id="_lgradient_17" x1="-0.11101968700020669" y1="-0.15806186659624283" x2="0.887411034839724" y2="0.8862271214245361" gradientTransform="matrix(24.845,0,0,19.613,12.883,0.6)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(84,51,255)"/><stop offset="51.73913043478261%" stop-opacity="1" style="stop-color:rgb(32,189,255)"/><stop offset="98.26086956521739%" stop-opacity="1" style="stop-color:rgb(165,254,203)"/></linearGradient><path d=" M 22.553 1.161 C 22.918 0.804 23.412 0.6 23.933 0.6 C 24.441 0.6 24.948 0.804 25.313 1.161 C 25.677 1.518 25.885 2.015 25.885 2.513 C 25.885 3.023 25.677 3.507 25.313 3.865 L 19.116 9.936 C 18.722 10.322 18.722 10.949 19.118 11.334 L 20.458 12.641 C 20.853 13.026 21.494 13.025 21.888 12.639 L 28.024 6.617 C 28.812 5.844 30.091 5.844 30.879 6.617 L 36.301 11.938 C 37.089 12.712 37.089 13.966 36.3 14.739 L 31.286 19.651 C 30.922 20.009 30.427 20.213 29.907 20.213 C 29.386 20.213 28.892 20.009 28.527 19.651 C 28.163 19.294 27.955 18.81 27.955 18.3 C 27.955 17.79 28.163 17.305 28.527 16.948 L 31.496 14.039 C 31.89 13.653 31.89 13.026 31.496 12.639 L 30.166 11.336 C 29.771 10.949 29.131 10.949 28.737 11.336 L 22.602 17.346 C 21.814 18.119 20.533 18.119 19.744 17.348 L 14.313 12.034 C 13.524 11.263 13.523 10.009 14.312 9.236 L 22.553 1.161 Z " fill="url(#_lgradient_17)"/><linearGradient id="_lgradient_18" x1="0.7802056034542408" y1="0.8133399827283142" x2="-4.440892098500626e-16" y2="-1.1102230246251565e-16" gradientTransform="matrix(23.206,0,0,24.369,16.02,19.18)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(211,0,220)"/><stop offset="100%" stop-opacity="1" style="stop-color:rgb(135,0,255)"/></linearGradient><path d=" M 19.352 31.358 C 18.974 31.715 18.48 31.906 17.972 31.906 C 17.452 31.906 16.957 31.715 16.58 31.358 C 16.215 30.988 16.02 30.503 16.02 29.993 C 16.02 29.496 16.215 29.011 16.58 28.642 L 24.82 20.578 C 25.609 19.806 26.89 19.807 27.678 20.579 L 33.099 25.89 C 33.887 26.663 33.887 27.918 33.1 28.691 L 26.963 34.713 C 26.569 35.099 26.568 35.728 26.961 36.116 L 28.285 37.426 C 28.677 37.814 29.316 37.816 29.71 37.429 L 35.894 31.371 C 36.258 31.014 36.753 30.809 37.273 30.809 C 37.794 30.809 38.288 31.014 38.653 31.371 C 39.017 31.728 39.225 32.212 39.225 32.722 C 39.225 33.232 39.017 33.717 38.653 34.074 L 30.411 42.149 C 29.623 42.922 28.345 42.919 27.56 42.143 L 22.154 36.806 C 21.369 36.03 21.371 34.773 22.16 34 L 28.294 27.99 C 28.689 27.604 28.689 26.976 28.294 26.59 L 26.964 25.286 C 26.57 24.9 25.93 24.9 25.536 25.287 L 19.352 31.358 Z " fill="url(#_lgradient_18)"/><linearGradient id="_lgradient_19" x1="0" y1="0.5" x2="0.9074880558539661" y2="0.9200778838291643" gradientTransform="matrix(32.719,0,0,32.058,14.931,15.342)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(78,84,200)"/><stop offset="83.88839793817618%" stop-opacity="1" style="stop-color:rgb(0,114,255)"/></linearGradient><path d=" M 15.646 36.781 C 14.626 37.78 14.707 39.469 15.829 40.568 L 21.904 46.52 C 23.026 47.619 24.749 47.699 25.769 46.7 L 27.674 44.833 C 27.488 44.726 27.309 44.603 27.149 44.446 L 17.486 34.978 L 15.646 36.781 Z M 32.211 20.551 L 41.874 30.019 C 42.034 30.175 42.16 30.351 42.269 30.533 L 46.936 25.961 C 47.955 24.962 47.874 23.273 46.752 22.174 L 40.677 16.222 C 39.555 15.123 37.832 15.043 36.812 16.042 L 32.211 20.551 Z " fill="url(#_lgradient_19)"/></svg>
|
||||||
|
After Width: | Height: | Size: 4.7 KiB |
@@ -0,0 +1 @@
|
|||||||
|
cantata.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
protonmail.svg
|
||||||
@@ -0,0 +1,136 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Generator: Gravit.io -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
style="isolation:isolate"
|
||||||
|
viewBox="0 0 48 48"
|
||||||
|
width="48pt"
|
||||||
|
height="48pt"
|
||||||
|
version="1.1"
|
||||||
|
id="svg11"
|
||||||
|
sodipodi:docname="QMPlay2.svg"
|
||||||
|
inkscape:version="1.3.2 (091e20ef0f, 2023-11-25)"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg">
|
||||||
|
<defs
|
||||||
|
id="defs11" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="namedview11"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:showpageshadow="2"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pagecheckerboard="0"
|
||||||
|
inkscape:deskcolor="#d1d1d1"
|
||||||
|
inkscape:document-units="pt"
|
||||||
|
inkscape:current-layer="svg11" />
|
||||||
|
<linearGradient
|
||||||
|
id="_lgradient_19"
|
||||||
|
x1="0"
|
||||||
|
y1="0.5"
|
||||||
|
x2="1"
|
||||||
|
y2="0.5"
|
||||||
|
gradientTransform="matrix(8.918,0,0,11.793,15,25.207)"
|
||||||
|
gradientUnits="userSpaceOnUse">
|
||||||
|
<stop
|
||||||
|
offset="0%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(255,229,59)"
|
||||||
|
id="stop1" />
|
||||||
|
<stop
|
||||||
|
offset="98.69565217391305%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(255,0,91)"
|
||||||
|
id="stop2" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="_lgradient_20"
|
||||||
|
x1="0"
|
||||||
|
y1="0.5"
|
||||||
|
x2="1"
|
||||||
|
y2="0.5"
|
||||||
|
gradientTransform="matrix(12.815,0,0,7.248,9,22.752)"
|
||||||
|
gradientUnits="userSpaceOnUse">
|
||||||
|
<stop
|
||||||
|
offset="0%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(253,116,108)"
|
||||||
|
id="stop3" />
|
||||||
|
<stop
|
||||||
|
offset="98.26086956521739%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(255,144,104)"
|
||||||
|
id="stop4" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="_lgradient_21"
|
||||||
|
x1="0.5180870166680417"
|
||||||
|
y1="0.03333118384844386"
|
||||||
|
x2="0.5073273481398528"
|
||||||
|
y2="0.9681890995036899"
|
||||||
|
gradientTransform="matrix(12.793,0,0,11.918,10,24.082)"
|
||||||
|
gradientUnits="userSpaceOnUse">
|
||||||
|
<stop
|
||||||
|
offset="0%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(244,97,51)"
|
||||||
|
id="stop5" />
|
||||||
|
<stop
|
||||||
|
offset="98.75%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(240,80,129)"
|
||||||
|
id="stop6" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="_lgradient_22"
|
||||||
|
x1="0"
|
||||||
|
y1="0.5"
|
||||||
|
x2="1"
|
||||||
|
y2="0.5"
|
||||||
|
gradientTransform="matrix(33.306421,42.251511,-31.532657,40.001368,14.712524,-16.026894)"
|
||||||
|
gradientUnits="userSpaceOnUse">
|
||||||
|
<stop
|
||||||
|
offset="0%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(24,208,173)"
|
||||||
|
id="stop7" />
|
||||||
|
<stop
|
||||||
|
offset="90.44964029999998%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(7,195,242)"
|
||||||
|
id="stop8" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
d="M 45.365876,28.664679 3.219055,47.359389 C 2.43261,47.707969 1.541937,47.395449 1.001849,46.566068 0.47123599,45.748707 0.40490799,44.582768 0.83129399,43.657228 2.195729,40.700307 3.256957,37.527026 4.0055,34.221525 4.706668,31.096325 5.057253,27.862945 5.057253,24.593503 5.038303,21.227902 4.678243,17.886341 3.977075,14.640941 3.200104,11.034941 2.119928,7.5491397 0.72706699,4.2436387 0.33858199,3.2940583 0.45228499,2.1160979 1.03975,1.3227777 1.608264,0.52945758 2.527362,0.27703738 3.304332,0.70975758 L 45.500424,23.734074 c 2.718448,1.482065 2.656859,3.692544 -0.134548,4.930605 z M 39.357626,25.939744 6.544865,40.471927 c 0.521138,-1.57462 0.956999,-3.20934 1.326534,-4.856082 0.805395,-3.59398 1.203355,-7.296141 1.21283,-11.034362 C 9.055809,20.771143 8.657843,16.972821 7.861924,13.2947 7.473439,11.50372 7.009152,9.7367787 6.488014,7.9938787 Z"
|
||||||
|
fill-rule="evenodd"
|
||||||
|
fill="url(#_lgradient_22)"
|
||||||
|
id="path8"
|
||||||
|
style="fill:url(#_lgradient_22);stroke-width:1.50925" />
|
||||||
|
<linearGradient
|
||||||
|
id="_lgradient_23"
|
||||||
|
x1="0"
|
||||||
|
y1="0.5"
|
||||||
|
x2="1"
|
||||||
|
y2="0.5"
|
||||||
|
gradientTransform="matrix(47,0,0,47.02,0.5,0.49)"
|
||||||
|
gradientUnits="userSpaceOnUse">
|
||||||
|
<stop
|
||||||
|
offset="0%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(84,51,255)"
|
||||||
|
id="stop9" />
|
||||||
|
<stop
|
||||||
|
offset="51.73913043478261%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(32,189,255)"
|
||||||
|
id="stop10" />
|
||||||
|
<stop
|
||||||
|
offset="98.26086956521739%"
|
||||||
|
stop-opacity="1"
|
||||||
|
style="stop-color:rgb(165,254,203)"
|
||||||
|
id="stop11" />
|
||||||
|
</linearGradient>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 4.3 KiB |
@@ -0,0 +1 @@
|
|||||||
|
maps.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
qt.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
qt.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
qdbusviewer.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
qtcreator.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
qtcreator.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
akregator.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
distributor-logo-opensuse.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
accessories-text-editor.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
slack.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
spotify-client.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
stacer.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
teamviewer.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
termius.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
thunar.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
virtualbox.svg
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?><!-- Generator: Gravit.io --><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" style="isolation:isolate" viewBox="0 0 48 48" width="48pt" height="48pt"><linearGradient id="_lgradient_37" x1="0" y1="0.5" x2="1" y2="0.5" gradientTransform="matrix(48,0,0,45.801,0,1.1)" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-opacity="1" style="stop-color:rgb(247,242,6)"/><stop offset="97.82608695652173%" stop-opacity="1" style="stop-color:rgb(255,187,36)"/></linearGradient><path d=" M 16.63 45.13 C 16.6 44.98 16.59 44.84 16.59 44.69 L 16.59 44.69 L 16.63 45.13 L 16.63 45.13 L 16.63 45.1 C 16.58 44.87 16.57 44.64 16.6 44.41 C 16.64 44.04 16.77 43.68 16.97 43.36 C 17.07 43.17 17.19 42.97 17.32 42.78 C 17.67 42.24 18.04 41.71 18.44 41.19 C 18.99 40.49 19.45 39.72 19.81 38.9 C 20.02 38.44 20.14 37.94 20.15 37.44 C 20.16 37.37 20.14 37.31 20.11 37.26 C 20.09 37.25 20.07 37.24 20.06 37.24 C 19.78 37.16 19.5 37.1 19.22 37.08 C 18.63 37.02 18.03 36.99 17.44 37 C 15.82 37.01 14.2 36.93 12.59 36.74 C 11.32 36.59 10.07 36.32 8.86 35.93 C 7.83 35.59 6.85 35.12 5.94 34.53 C 5.13 33.99 4.39 33.35 3.73 32.64 C 2.45 31.23 1.49 29.56 0.92 27.74 C 0.3 25.83 -0.01 23.83 0 21.81 C 0 19.87 0.27 17.93 0.8 16.06 C 1.35 14.18 2.25 12.42 3.47 10.88 C 4.75 9.26 6.28 7.85 8 6.71 C 9.91 5.43 11.95 4.39 14.1 3.59 C 16.54 2.69 19.06 2 21.62 1.56 C 23.77 1.26 25.93 1.11 28.1 1.1 C 29.45 1.1 30.79 1.17 32.12 1.33 C 33.46 1.48 34.79 1.74 36.09 2.11 C 37.39 2.48 38.65 2.99 39.85 3.63 C 41.08 4.3 42.22 5.12 43.24 6.09 C 44.83 7.68 46.06 9.61 46.82 11.73 C 47.61 13.89 48.01 16.17 48 18.47 C 48.01 21.56 47.31 24.62 45.96 27.4 C 44.82 29.75 43.18 31.82 41.15 33.47 C 39.09 35.12 36.7 36.32 34.14 36.97 C 33.87 37.03 33.61 37.11 33.36 37.21 C 33.23 37.26 33.11 37.33 32.99 37.41 C 32.72 37.62 32.46 37.85 32.21 38.1 C 31.71 38.58 31.22 39.08 30.74 39.59 C 29.41 40.99 27.98 42.29 26.47 43.5 C 25.77 44.05 25.04 44.56 24.28 45.04 C 23.58 45.48 22.84 45.87 22.07 46.2 C 21.61 46.4 21.13 46.56 20.64 46.69 C 20.18 46.82 19.72 46.89 19.24 46.9 C 18.91 46.91 18.57 46.86 18.24 46.77 C 17.72 46.61 17.27 46.29 16.95 45.84 C 16.8 45.63 16.69 45.38 16.63 45.13 Z M 20.11 37.26 C 20.11 37.26 20.11 37.25 20.11 37.25 C 20.1 37.25 20.1 37.24 20.09 37.24 C 20.12 37.25 20.14 37.27 20.16 37.28 C 20.14 37.27 20.13 37.27 20.11 37.26 Z M 23.31 40.87 C 23.36 40.76 23.41 40.65 23.46 40.54 C 23.88 39.62 24.12 38.61 24.15 37.59 C 24.2 36.55 23.86 35.52 23.2 34.71 C 22.98 34.44 22.72 34.2 22.44 34 C 22.05 33.73 21.63 33.53 21.18 33.4 C 20.66 33.25 20.13 33.14 19.59 33.1 C 18.87 33.03 18.13 32.99 17.4 33 C 15.95 33.01 14.5 32.93 13.06 32.76 C 12.05 32.65 11.06 32.43 10.1 32.12 C 9.41 31.9 8.75 31.58 8.15 31.19 C 7.61 30.83 7.12 30.41 6.68 29.94 C 5.79 28.95 5.12 27.79 4.73 26.52 C 4.23 25.01 3.99 23.42 4 21.83 C 4 20.25 4.22 18.68 4.65 17.17 C 5.05 15.79 5.71 14.49 6.6 13.36 C 7.63 12.07 8.85 10.95 10.22 10.03 C 11.87 8.93 13.64 8.03 15.49 7.35 C 17.68 6.53 19.93 5.92 22.23 5.51 C 24.18 5.25 26.15 5.11 28.12 5.1 C 29.3 5.1 30.49 5.16 31.66 5.3 C 32.79 5.43 33.9 5.65 34.99 5.96 C 36.02 6.25 37.02 6.65 37.96 7.16 C 38.86 7.64 39.7 8.25 40.45 8.95 C 41.61 10.13 42.5 11.54 43.06 13.1 C 43.69 14.82 44.01 16.63 44 18.46 C 44.01 20.96 43.45 23.42 42.36 25.66 C 41.48 27.48 40.21 29.08 38.64 30.35 C 37.03 31.64 35.17 32.57 33.17 33.09 C 32.74 33.19 32.32 33.32 31.91 33.48 C 31.45 33.66 31.01 33.91 30.6 34.2 C 30.18 34.53 29.77 34.88 29.39 35.26 C 28.87 35.77 28.35 36.3 27.85 36.83 C 26.64 38.09 25.35 39.27 23.98 40.36 C 23.76 40.53 23.54 40.7 23.31 40.87 Z " fill-rule="evenodd" fill="url(#_lgradient_37)"/></svg>
|
||||||
|
After Width: | Height: | Size: 3.6 KiB |
|
After Width: | Height: | Size: 5.8 KiB |