Compare commits
10 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
95d8577a2a | ||
![]() |
37133c95e5 | ||
![]() |
ca9fbdd542 | ||
![]() |
eb6c602a0b | ||
![]() |
923eab650c | ||
![]() |
b3360db958 | ||
![]() |
941989f86e | ||
![]() |
20ce7fc7fe | ||
![]() |
878456d92a | ||
![]() |
e1b83c3e9f |
35
Makefile
Normal file
35
Makefile
Normal file
@@ -0,0 +1,35 @@
|
||||
Version=0.4
|
||||
|
||||
PREFIX = /usr/local
|
||||
SYSCONFDIR = /etc
|
||||
|
||||
ICONS = \
|
||||
$(wildcard icons/*.svg) \
|
||||
$(wildcard icons/*.png)
|
||||
|
||||
BACKGROUNDS = \
|
||||
$(wildcard backgrounds/*.jpg)
|
||||
|
||||
install_icons:
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/icons/artix
|
||||
install -m0644 ${ICONS} $(DESTDIR)$(PREFIX)/share/icons/artix
|
||||
|
||||
install_backgrounds:
|
||||
install -dm0755 $(DESTDIR)$(PREFIX)/share/backgrounds
|
||||
install -m0755 ${BACKGROUNDS} $(DESTDIR)$(PREFIX)/share/backgrounds
|
||||
|
||||
uninstall_icons:
|
||||
for f in ${ICONS}; do rm -f $(DESTDIR)$(PREFIX)/share/icons/artix/$$f; done
|
||||
|
||||
uninstall_backgrounds:
|
||||
for f in ${BACKGROUNDS}; do rm -f $(DESTDIR)$(PREFIX)/share/backgrounds/$$f; done
|
||||
|
||||
install: install_icons install_backgrounds
|
||||
|
||||
uninstall: uninstall_icons uninstall_backgrounds
|
||||
|
||||
dist:
|
||||
git archive --format=tar --prefix=desktop-presets-$(Version)/ $(Version) | gzip -9 > desktop-presets-$(Version).tar.gz
|
||||
gpg --detach-sign --use-agent desktop-presets-$(Version).tar.gz
|
||||
|
||||
.PHONY: install uninstall dist
|
287
i3/skel/.i3/config
Normal file
287
i3/skel/.i3/config
Normal file
@@ -0,0 +1,287 @@
|
||||
# i3 config file
|
||||
# for a complete reference please refer to http://i3wm.org/docs/userguide.html
|
||||
|
||||
# font settins will be used for window tiles and bars
|
||||
font xft:Noto Sans 10
|
||||
|
||||
# mod key (Mod1=<Alt>, Mod4=<Super>)
|
||||
set $mod Mod4
|
||||
|
||||
# use Mouse+$mod to drag floating windows
|
||||
floating_modifier $mod
|
||||
|
||||
# border style <normal|1pixel|pixel xx|none|pixel>
|
||||
# note that new_float applies only to windows wich are strating
|
||||
# out as floating windows but not to windows that are floated later on
|
||||
new_window 1pixel
|
||||
new_float normal
|
||||
|
||||
# hide edge borders <none|vertical|horizontal|both|smart>
|
||||
hide_edge_borders none
|
||||
|
||||
# colors based in alexbooker i3 colors
|
||||
# modifying the value of any variable will affect
|
||||
# all the areas that use the same color
|
||||
set $base00 #101218
|
||||
set $base01 #212121
|
||||
set $base02 #1F242F
|
||||
set $base03 #7780a1
|
||||
set $base04 #C0C5CE
|
||||
set $base05 #d1d4e0
|
||||
set $base06 #C9CCDB
|
||||
set $base07 #ffffff
|
||||
set $base08 #ee829f
|
||||
set $base09 #f99170
|
||||
set $base0A #ffefcc
|
||||
set $base0B #a5ffe1
|
||||
set $base0C #97e0ff
|
||||
set $base0D #97bbf7
|
||||
set $base0E #c0b7f9
|
||||
set $base0F #fcc09e
|
||||
set $base10 #8bc34a
|
||||
set $base11 #150E0E
|
||||
set $base12 #474747
|
||||
|
||||
# focus the last urgent window
|
||||
bindsym $mod+u [urgent=latest] focus
|
||||
|
||||
# come back and forth from two alst used windows using Alt+Tab
|
||||
bindsym Mod1+Tab workspace back_and_forth
|
||||
|
||||
# start a terminal
|
||||
bindsym $mod+Return exec i3-sensible-terminal
|
||||
|
||||
# lock i3 with i3lock
|
||||
bindsym $mod+x exec i3lock-wrapper
|
||||
|
||||
# kill focused window
|
||||
bindsym $mod+Shift+q kill
|
||||
|
||||
# start file manager
|
||||
bindsym $mod+n exec ranger
|
||||
# uncomment (and comment line avobe) if you preffer pcmanfm file manager
|
||||
#bindsym $mod+n exec pcmanfm
|
||||
|
||||
# start dmenu-launcher
|
||||
bindsym $mod+d exec j4-dmenu-desktop
|
||||
# uncomment (and comment line ebove) if you use KDE/Plama applications
|
||||
#bindsym $mod+d exec QT_QPA_PLATFORMTHEME="kde" j4-dmenu-desktop
|
||||
|
||||
# show an OSD calendar
|
||||
bindsym $mod+F12 exec --no-startup-id "cal | osd_cat -c white -l 8 -i 10 -o 10 -f '-*-*-medium-*-*-*-20-*-*-*-*-*-*-*' -p bottom -A right -s 1"
|
||||
|
||||
# change focus
|
||||
bindsym $mod+h focus left
|
||||
bindsym $mod+j focus right
|
||||
bindsym $mod+k focus up
|
||||
bindsym $mod+l focus down
|
||||
|
||||
# alternatively, you can use the cursor keys:
|
||||
bindsym $mod+Left focus left
|
||||
bindsym $mod+Right focus right
|
||||
bindsym $mod+Up focus up
|
||||
bindsym $mod+Down focus down
|
||||
|
||||
# move focused window
|
||||
bindsym $mod+Shift+h move left
|
||||
bindsym $mod+Shift+j move right
|
||||
bindsym $mod+Shift+k move up
|
||||
bindsym $mod+Shift+l move down
|
||||
|
||||
# alternatively, you can use the cursor keys:
|
||||
bindsym $mod+Shift+Left move left
|
||||
bindsym $mod+Shift+Down move down
|
||||
bindsym $mod+Shift+Up move up
|
||||
bindsym $mod+Shift+Right move right
|
||||
|
||||
# split in horizontal orientation
|
||||
bindsym $mod+g split h
|
||||
|
||||
# split in vertical orientation
|
||||
bindsym $mod+v split v
|
||||
|
||||
# split toggle
|
||||
bindsym $mod+q split toggle
|
||||
|
||||
# enter fullscreen mode for the focused container
|
||||
bindsym $mod+f fullscreen
|
||||
bindsym $mod+Shift+Return fullscreen
|
||||
|
||||
# change container layout (stacked, tabbed, toggle split)
|
||||
bindsym $mod+s layout stacking
|
||||
bindsym $mod+w layout tabbed
|
||||
bindsym $mod+e layout toggle split
|
||||
|
||||
# move container to right screen
|
||||
bindsym $mod+Mod1+Right move container to output right
|
||||
bindsym $mod+Mod1+Left move container to output left
|
||||
|
||||
# toggle tiling / floating
|
||||
bindsym $mod+Shift+space floating toggle
|
||||
|
||||
# change focus between tiling / floating windows
|
||||
bindsym $mod+space focus mode_toggle
|
||||
|
||||
# focus the parent container
|
||||
bindsym $mod+a focus parent
|
||||
|
||||
# toggle sticky
|
||||
bindsym $mod+Shift+s sticky toggle
|
||||
|
||||
# makes the focused window into a scratchpad window
|
||||
bindsym $mod+Shift+minus move scratchpad
|
||||
|
||||
# hides or shows the focused scratchpad windows, cycle if more than one
|
||||
bindsym $mod+minus scratchpad show
|
||||
|
||||
#navigate workspaces next / previous
|
||||
bindsym $mod+Ctrl+Right workspace next
|
||||
bindsym $mod+Ctrl+Left workspace prev
|
||||
|
||||
# name the workspaces
|
||||
# to display fancy names or symbols you can use a font likr awesome and
|
||||
# use something like the following example:
|
||||
# set $workspace1 "1: "
|
||||
# set $workspace2 "2: "
|
||||
set $workspace1 1
|
||||
set $workspace2 2
|
||||
set $workspace3 3
|
||||
set $workspace4 4
|
||||
set $workspace5 5
|
||||
set $workspace6 6
|
||||
set $workspace7 7
|
||||
set $workspace8 8
|
||||
set $workspace9 9
|
||||
set $workspace0 10
|
||||
|
||||
# switch to workspace
|
||||
bindsym $mod+1 workspace $workspace1
|
||||
bindsym $mod+2 workspace $workspace2
|
||||
bindsym $mod+3 workspace $workspace3
|
||||
bindsym $mod+4 workspace $workspace4
|
||||
bindsym $mod+5 workspace $workspace5
|
||||
bindsym $mod+6 workspace $workspace6
|
||||
bindsym $mod+7 workspace $workspace7
|
||||
bindsym $mod+8 workspace $workspace8
|
||||
bindsym $mod+9 workspace $workspace9
|
||||
bindsym $mod+0 workspace $workspace0
|
||||
|
||||
# move focused container to workspace
|
||||
bindsym $mod+Shift+1 move container to workspace $workspace1
|
||||
bindsym $mod+Shift+2 move container to workspace $workspace2
|
||||
bindsym $mod+Shift+3 move container to workspace $workspace3
|
||||
bindsym $mod+Shift+4 move container to workspace $workspace4
|
||||
bindsym $mod+Shift+5 move container to workspace $workspace5
|
||||
bindsym $mod+Shift+6 move container to workspace $workspace6
|
||||
bindsym $mod+Shift+7 move container to workspace $workspace7
|
||||
bindsym $mod+Shift+8 move container to workspace $workspace8
|
||||
bindsym $mod+Shift+9 move container to workspace $workspace9
|
||||
bindsym $mod+Shift+0 move container to workspace $workspace0
|
||||
|
||||
# move workspace to right screen (cycles when in right most)
|
||||
bindsym $mod+Shift+m move workspace to output right
|
||||
|
||||
# reload i3 configuration file (this file)
|
||||
bindsym $mod+Shift+c reload
|
||||
|
||||
# restart i3 inplace
|
||||
bindsym $mod+Shift+r restart
|
||||
|
||||
# exit i3
|
||||
bindsym $mod+Shift+e exec "i3-nagbar -t warning -m 'You pressed the exit shortcut. Do you really want to exit i3? This will end your X session.' -b 'Yes, exit i3' 'i3-msg exit'"
|
||||
|
||||
# resize window (you can also use $mod right mouse)
|
||||
mode "" {
|
||||
# bindings to resize
|
||||
bindsym j resize shrink width 10 px or 10 ppt
|
||||
bindsym k resize grow height 10 px or 10 ppt
|
||||
bindsym l resize shrink height 10 px or 10 ppt
|
||||
bindsym semicolon resize grow width 10 px or 10 ppt
|
||||
|
||||
# same bindings, but for the arrow keys
|
||||
bindsym Left resize shrink width 10 px or 10 ppt
|
||||
bindsym Down resize grow height 10 px or 10 ppt
|
||||
bindsym Up resize shrink height 10 px or 10 ppt
|
||||
bindsym Right resize grow width 10 px or 10 ppt
|
||||
|
||||
# back to normal: Enter or Escape
|
||||
bindsym Return mode "default"
|
||||
bindsym Escape mode "default"
|
||||
}
|
||||
|
||||
# Enter the resize mode
|
||||
bindsym $mod+r mode ""
|
||||
|
||||
# bind tools to workspaces (examples)
|
||||
#assign [class="Firefox"] $workspace3
|
||||
#assign [class="Spotify"] $workspace0
|
||||
|
||||
# change some windows behaviour
|
||||
for_window [class="Calamares"] floating enable border normal
|
||||
for_window [class="(?i)virtualbox"] floating enable border normal
|
||||
|
||||
# window colors
|
||||
# border background text indicator
|
||||
client.focused $base01 $base01 $base10 $base0F
|
||||
client.focused_inactive $base11 $base11 $base12 $base0F
|
||||
client.unfocused $base11 $base11 $base12 $base0F
|
||||
client.urgent $base02 $base08 $base00 $base0F
|
||||
|
||||
# start i3bar to display a workspace bar
|
||||
bar {
|
||||
font pango: Noto Sans, FontAwesome 10
|
||||
status_command i3blocks
|
||||
#tray_output primary
|
||||
#tray_padding 0
|
||||
position top
|
||||
colors {
|
||||
separator $base10
|
||||
background $base01
|
||||
statusline $base05
|
||||
#border background text
|
||||
focused_workspace $base01 $base01 $base10
|
||||
active_workspace $base01 $base01 $base03
|
||||
inactive_workspace $base01 $base01 $base03
|
||||
urgent_workspace $base01 $base01 $base08
|
||||
}
|
||||
}
|
||||
|
||||
# hide or display bar
|
||||
bindsym $mod+p bar mode toggle
|
||||
bindsym $mod+m bar mode invisible
|
||||
|
||||
# volume control
|
||||
# increase sound volume
|
||||
bindsym XF86AudioRaiseVolume exec "amixer -q -D default sset Master 5%+ && pkill -RTMIN+1 i3blocks && osd_cat -S white -p middle -b percentage -P $(/usr/lib/i3blocks/volume) -T 'VOLUME' -d 1 -A center -l 1 -c green -f '-*-*-medium-*-*-*-20-*-*-*-*-*-*-*'"
|
||||
# decrease sound volume
|
||||
bindsym XF86AudioLowerVolume exec "amixer -q -D default sset Master 5%- && pkill -RTMIN+1 i3blocks && osd_cat -S white -p middle -b percentage -P $(/usr/lib/i3blocks/volume) -T 'VOLUME' -d 1 -A center -l 1 -c green -f '-*-*-medium-*-*-*-20-*-*-*-*-*-*-*'"
|
||||
# mute sound
|
||||
bindsym XF86AudioMute exec "amixer -q -D default sset Master toggle && pkill -RTMIN+1 i3blocks && .config/i3/mute | osd_cat -p middle -d 1 -A center -l 1 -c green -f '-*-*-medium-*-*-*-20-*-*-*-*-*-*-*'"
|
||||
|
||||
# sreen brightness controls
|
||||
bindsym XF86MonBrightnessUp exec xbacklight -inc 10 # increase screen brightness
|
||||
bindsym XF86MonBrightnessDown exec xbacklight -dec 10 # decrease screen brightness
|
||||
|
||||
# Media player controls
|
||||
bindsym XF86AudioPlay exec playerctl play-pause
|
||||
bindsym XF86AudioPause exec playerctl pause
|
||||
bindsym XF86AudioStop exec playerctl stop
|
||||
bindsym XF86AudioNext exec playerctl next
|
||||
bindsym XF86AudioPrev exec playerctl previous
|
||||
focus_follows_mouse no
|
||||
|
||||
# disable mouse warping
|
||||
#mouse_warping none
|
||||
|
||||
# set random background on desktop
|
||||
exec_always --no-startup-id feh --bg-fill "$(find $HOME/.wallpaper/|shuf -n1)"
|
||||
|
||||
# printscreen
|
||||
bindsym Print exec scrot -q 95 '%Y-%m-%d-%s_$wx$h_scrot.png' -e 'mv $f ~/Pictures/'
|
||||
|
||||
# background apps startup
|
||||
exec compton -f
|
||||
exec --no-startup-id blueberry-tray
|
||||
exec --no-startup-id nm-applet
|
||||
exec --no-startup-id pamac-tray
|
||||
exec --no-startup-id clipit
|
BIN
i3/skel/.wallpaper/artix_i3.png
Normal file
BIN
i3/skel/.wallpaper/artix_i3.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 50 KiB |
410
icons/flower_of_life_8_and_36_arcs.svg
Normal file
410
icons/flower_of_life_8_and_36_arcs.svg
Normal file
@@ -0,0 +1,410 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<svg
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||
xmlns:cc="http://creativecommons.org/ns#"
|
||||
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||
xmlns:svg="http://www.w3.org/2000/svg"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||
version="1.0"
|
||||
width="210mm"
|
||||
height="297mm"
|
||||
id="c:\circles_1.svg"
|
||||
inkscape:version="0.92.1 r"
|
||||
sodipodi:docname="flower_of_life_8_and_36_arcs.svg">
|
||||
<metadata
|
||||
id="metadata4159">
|
||||
<rdf:RDF>
|
||||
<cc:Work
|
||||
rdf:about="">
|
||||
<dc:format>image/svg+xml</dc:format>
|
||||
<dc:type
|
||||
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||
<dc:title></dc:title>
|
||||
</cc:Work>
|
||||
</rdf:RDF>
|
||||
</metadata>
|
||||
<defs
|
||||
id="defs4157" />
|
||||
<sodipodi:namedview
|
||||
pagecolor="#ffffff"
|
||||
bordercolor="#666666"
|
||||
borderopacity="1"
|
||||
objecttolerance="10"
|
||||
gridtolerance="10"
|
||||
guidetolerance="10"
|
||||
inkscape:pageopacity="0"
|
||||
inkscape:pageshadow="2"
|
||||
inkscape:window-width="2558"
|
||||
inkscape:window-height="1400"
|
||||
id="namedview4155"
|
||||
showgrid="false"
|
||||
inkscape:zoom="0.54942197"
|
||||
inkscape:cx="661.7319"
|
||||
inkscape:cy="1064.4209"
|
||||
inkscape:window-x="0"
|
||||
inkscape:window-y="39"
|
||||
inkscape:window-maximized="0"
|
||||
inkscape:current-layer="c:\circles_1.svg"
|
||||
units="mm" />
|
||||
<!-- X Coordinate transform: fx(x)=(x+2.2725)*220.022-->
|
||||
<!-- Y Coordinate transform: fy(y)=(2.2725-y)*220.022 -->
|
||||
<g
|
||||
style="fill:#ffffff;fill-opacity:0;stroke:#00ffff;stroke-width:8;stroke-opacity:1"
|
||||
id="g4139"
|
||||
transform="matrix(-7.6682589e-4,-0.35005551,0.35005551,-7.6682589e-4,43.090199,905.51835)">
|
||||
<circle
|
||||
cx="415.98828"
|
||||
cy="736.5813"
|
||||
r="234.69014"
|
||||
id="circle4141"
|
||||
style="stroke:#00ffff;stroke-width:8.53333378;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="650.67841"
|
||||
cy="736.5813"
|
||||
r="234.69014"
|
||||
id="circle4143"
|
||||
style="stroke:#00ffff;stroke-width:8.53333378;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="298.64319"
|
||||
cy="533.33331"
|
||||
r="234.69014"
|
||||
id="circle4145"
|
||||
style="stroke:#00ffff;stroke-width:8.53333378;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="533.33331"
|
||||
cy="533.33331"
|
||||
r="234.69014"
|
||||
id="circle4147"
|
||||
style="stroke:#00ffff;stroke-width:8.53333378;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="768.02344"
|
||||
cy="533.33331"
|
||||
r="234.69014"
|
||||
id="circle4149"
|
||||
style="stroke:#00ffff;stroke-width:8.53333378;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="415.98828"
|
||||
cy="330.08533"
|
||||
r="234.69014"
|
||||
id="circle4151"
|
||||
style="stroke:#00ffff;stroke-width:8.53333378;stroke-opacity:1" />
|
||||
<circle
|
||||
cx="650.67841"
|
||||
cy="330.08533"
|
||||
r="234.69014"
|
||||
id="circle4153"
|
||||
style="stroke:#00ffff;stroke-width:8.53333378;stroke-opacity:1" />
|
||||
</g>
|
||||
<g
|
||||
id="g5261"
|
||||
transform="matrix(0.29833054,0,0,0.29833054,592.2858,80.330581)">
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="537.96753"
|
||||
cy="571.60083"
|
||||
cx="-1179.4214"
|
||||
id="circlebase" />
|
||||
<circle
|
||||
id="FlowerCenter"
|
||||
cx="-1179.4214"
|
||||
cy="571.60083"
|
||||
r="179.32251"
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="179.32251"
|
||||
cy="392.27832"
|
||||
cx="-1179.4214"
|
||||
id="circle01000" />
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="179.32251"
|
||||
cy="481.93961"
|
||||
cx="-1024.1235"
|
||||
id="circle01060" />
|
||||
<circle
|
||||
id="circle01120"
|
||||
cx="-1024.1235"
|
||||
cy="661.26208"
|
||||
r="179.32251"
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
id="circle01180"
|
||||
cx="-1179.4214"
|
||||
cy="750.92334"
|
||||
r="179.32251"
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="179.32251"
|
||||
cy="661.26208"
|
||||
cx="-1334.7192"
|
||||
id="circle01240" />
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="179.32251"
|
||||
cy="481.93961"
|
||||
cx="-1334.7192"
|
||||
id="circle01300" />
|
||||
<circle
|
||||
id="circle02030"
|
||||
cx="-1024.1235"
|
||||
cy="302.61707"
|
||||
r="179.32251"
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="179.32251"
|
||||
cy="571.60083"
|
||||
cx="-868.82562"
|
||||
id="circle02090" />
|
||||
<circle
|
||||
id="circle02150"
|
||||
cx="-1024.1235"
|
||||
cy="840.58459"
|
||||
r="179.32251"
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="179.32251"
|
||||
cy="840.58459"
|
||||
cx="-1334.7192"
|
||||
id="circle02210" />
|
||||
<circle
|
||||
id="circle02270"
|
||||
cx="-1490.0171"
|
||||
cy="571.60083"
|
||||
r="179.32251"
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="179.32251"
|
||||
cy="302.61707"
|
||||
cx="-1334.7192"
|
||||
id="circle02300" />
|
||||
<circle
|
||||
id="circle03000"
|
||||
cx="-1179.4214"
|
||||
cy="212.95583"
|
||||
r="179.32251"
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="179.32251"
|
||||
cy="392.27832"
|
||||
cx="-868.82562"
|
||||
id="circle03060" />
|
||||
<circle
|
||||
id="circle03120"
|
||||
cx="-868.82562"
|
||||
cy="750.92334"
|
||||
r="179.32251"
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="179.32251"
|
||||
cy="930.24585"
|
||||
cx="-1179.4214"
|
||||
id="circle03180" />
|
||||
<circle
|
||||
id="circle03240"
|
||||
cx="-1490.0171"
|
||||
cy="750.92334"
|
||||
r="179.32251"
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
<circle
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.58645034;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||
r="179.32251"
|
||||
cy="392.27832"
|
||||
cx="-1490.0171"
|
||||
id="circle03300" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate"
|
||||
id="path4481"
|
||||
d="m -1179.4214,33.633262 a 179.32251,179.32251 0 0 1 -155.2978,89.661258" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -1023.7586,123.29416 A 179.32251,179.32251 0 0 1 -1179.819,32.940898"
|
||||
id="path4483"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -868.985,212.95575 a 179.32251,179.32251 0 0 1 -155.0706,-89.54373"
|
||||
id="path4994"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -713.52775,302.61712 A 179.32251,179.32251 0 0 1 -868.8256,212.95586"
|
||||
id="path4996"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -713.5278,481.93959 a 179.32251,179.32251 0 0 1 0,-179.32251"
|
||||
id="path4998"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -713.5278,661.26211 a 179.32251,179.32251 0 0 1 0,-179.32251"
|
||||
id="path5000"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -713.5278,840.58462 a 179.32251,179.32251 0 0 1 0,-179.32251"
|
||||
id="path5002"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -868.8256,930.24588 a 179.32251,179.32251 0 0 1 155.29785,-89.66126"
|
||||
id="path5004"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1024.1235,1019.9071 a 179.32251,179.32251 0 0 1 155.29785,-89.66122"
|
||||
id="path5006"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1179.4213,1109.5684 a 179.32251,179.32251 0 0 1 155.2979,-89.6613"
|
||||
id="path5008"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1334.7192,1019.9071 a 179.32251,179.32251 0 0 1 155.2978,89.6613"
|
||||
id="path5010"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1490.0171,930.24588 a 179.32251,179.32251 0 0 1 155.2979,89.66122"
|
||||
id="path5012"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1645.315,840.58462 a 179.32251,179.32251 0 0 1 155.2979,89.66126"
|
||||
id="path5014"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1645.3149,481.9396 a 179.32251,179.32251 0 0 1 0,179.32251"
|
||||
id="path5016"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1645.3149,661.26211 a 179.32251,179.32251 0 0 1 0,179.32251"
|
||||
id="path5018"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1645.3149,302.61708 a 179.32251,179.32251 0 0 1 0,179.32251"
|
||||
id="path5020"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1490.0171,212.95586 a 179.32251,179.32251 0 0 1 -155.2979,89.66126"
|
||||
id="path5022"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1334.7192,123.29456 a 179.32251,179.32251 0 0 1 -155.2979,89.66126"
|
||||
id="path5024"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate"
|
||||
id="path5026"
|
||||
d="M -1179.4214,33.633348 A 179.32251,179.32251 0 1 1 -1490.0171,212.95586" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1024.1235,123.29456 a 179.32251,179.32251 0 0 1 -310.5957,0"
|
||||
id="path5028"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -713.52775,481.93959 A 179.32251,179.32251 0 0 1 -868.8256,212.95582"
|
||||
id="path5030"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -868.8256,930.24588 A 179.32251,179.32251 0 0 1 -713.52775,661.26211"
|
||||
id="path5032"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1334.7192,1019.9071 a 179.32251,179.32251 0 0 1 310.5957,0"
|
||||
id="path5034"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1645.315,661.26211 a 179.32251,179.32251 0 0 1 155.2979,268.98377"
|
||||
id="path5036"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -1490.0171,212.95582 A 179.32251,179.32251 0 0 1 -1645.315,481.93959"
|
||||
id="path5038"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -868.8256,212.95586 A 179.32251,179.32251 0 0 1 -1179.4213,33.633348"
|
||||
id="path5040"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -713.5278,302.61706 A 179.32251,179.32251 0 0 1 -1024.1235,123.29455"
|
||||
id="path5042"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -713.52775,661.26211 a 179.32251,179.32251 0 1 1 0,-358.64503"
|
||||
id="path5044"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -713.52775,840.58462 a 179.32251,179.32251 0 1 1 0,-358.64503"
|
||||
id="path5046"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -1024.1235,1019.9071 A 179.32251,179.32251 0 0 1 -713.5278,840.58463"
|
||||
id="path5048"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="M -1179.4213,1109.5684 A 179.32251,179.32251 0 0 1 -868.8256,930.24588"
|
||||
id="path5050"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1490.0171,930.24588 a 179.32251,179.32251 0 1 1 310.5957,179.32252"
|
||||
id="path5052"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1645.3149,840.58463 a 179.32251,179.32251 0 1 1 310.5957,179.32247"
|
||||
id="path5054"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1645.315,481.93959 a 179.32251,179.32251 0 0 1 0,358.64503"
|
||||
id="path5056"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1645.315,302.61708 a 179.32251,179.32251 0 0 1 0,358.64503"
|
||||
id="path5058"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<path
|
||||
inkscape:connector-curvature="0"
|
||||
d="m -1334.7192,123.29455 a 179.32251,179.32251 0 1 1 -310.5957,179.32251"
|
||||
id="path5060"
|
||||
style="display:inline;overflow:visible;visibility:visible;opacity:1;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:#00ffff;stroke-width:3.58645034;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;enable-background:accumulate" />
|
||||
<circle
|
||||
id="circle4990"
|
||||
cx="-1179.4214"
|
||||
cy="571.60083"
|
||||
r="566.1875"
|
||||
style="fill:none;stroke:#00ffff;stroke-width:3.77458334;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||
</g>
|
||||
</svg>
|
After Width: | Height: | Size: 22 KiB |
Reference in New Issue
Block a user