Compare commits
52 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1f7ce8b6fb | ||
|
|
2a391702fd | ||
|
|
3d3125f4fe | ||
|
|
0aa4b0eba3 | ||
|
|
94e06bb116 | ||
|
|
c16ac69f0f | ||
|
|
1adbf2c0f6 | ||
|
|
286a06ac1b | ||
|
|
f1016e321e | ||
|
|
74ab7d14ce | ||
|
|
9599f80ff8 | ||
|
|
31d3d98a51 | ||
|
|
8e436e5036 | ||
|
|
8a599a3351 | ||
|
|
406d6145cc | ||
|
|
9e8d5c90e2 | ||
|
|
be3dc36490 | ||
|
|
cb3f60c85c | ||
|
|
2aee6245c5 | ||
|
|
0ef7e2786d | ||
|
|
05c4b1ee2d | ||
|
|
d0d1f3a76d | ||
|
|
ee01a250c9 | ||
|
|
04909a5a63 | ||
|
|
14fb2420ad | ||
|
|
a0d6b9185d | ||
|
|
e1d32fc6f3 | ||
|
|
50049bba08 | ||
|
|
d260dba766 | ||
|
|
f375f7ae69 | ||
|
|
6b4a055815 | ||
|
|
584b565146 | ||
|
|
05274e8525 | ||
|
|
609387b2b8 | ||
|
|
bfd00a3718 | ||
|
|
485d4b49a4 | ||
|
|
f5387bce00 | ||
|
|
86a46cd937 | ||
|
|
8dff04e4b1 | ||
|
|
1db38df420 | ||
|
|
934890d92a | ||
|
|
707a5ca9ce | ||
|
|
4a95c65e10 | ||
|
|
7a7296ed1e | ||
|
|
df545e03d2 | ||
|
|
ceba53c830 | ||
|
|
f8dac337da | ||
|
|
02302587e1 | ||
|
|
e57dbff383 | ||
|
|
ee9bef007e | ||
|
|
61bcec9564 | ||
|
|
6c9b4da571 |
13
.gitignore
vendored
13
.gitignore
vendored
@@ -1 +1,12 @@
|
||||
/archives
|
||||
Main/Black/x1/
|
||||
Main/Black/x1_25/
|
||||
Main/Black/x1_5/
|
||||
Main/BlackTiny/x1/
|
||||
Main/BlackTiny/x1_25/
|
||||
Main/BlackTiny/x1_5/
|
||||
Main/White/x1/
|
||||
Main/White/x1_25/
|
||||
Main/White/x1_5/
|
||||
Main/WhiteTiny/x1/
|
||||
Main/WhiteTiny/x1_25/
|
||||
Main/WhiteTiny/x1_5/
|
||||
|
||||
118
.gitlab-ci.yml
Normal file
118
.gitlab-ci.yml
Normal file
@@ -0,0 +1,118 @@
|
||||
# GitLab CI configuration for ffsend builds, tests and releases
|
||||
#
|
||||
# To add a new release:
|
||||
# - configure a new 'build-*' job with the proper target
|
||||
# - export a build artifact from the new job
|
||||
# - manually upload artifact to GitHub in the 'github-release' job
|
||||
|
||||
stages:
|
||||
- package
|
||||
|
||||
# AUR packages release
|
||||
package-aur:
|
||||
image: archlinux/base
|
||||
stage: package
|
||||
# needs:
|
||||
# - release-github
|
||||
dependencies: []
|
||||
only:
|
||||
- /^v(\d+\.)*\d+$/
|
||||
before_script: []
|
||||
script:
|
||||
- cd ./pkg/aur
|
||||
|
||||
# Determine the version number we're releasing for
|
||||
- VERSION=$(echo $CI_COMMIT_REF_NAME | cut -c 2-)
|
||||
- echo "Determined binary version number 'v$VERSION'"
|
||||
|
||||
# Determine remote URLs and SHA checksums
|
||||
- echo "Determining SHA checksums for remote files..."
|
||||
- URL_SOURCE=https://git.auteiy.me/dmitry/cursorsPosy/-/archive/v$VERSION/cursorsPosy-v$VERSION.tar.gz?path=themes
|
||||
- 'echo "Selected source URL: $URL_SOURCE"'
|
||||
- echo "Determining sha256sum for remote source..."
|
||||
- 'SHA_SOURCE=$(curl -sSL "$URL_SOURCE" | sha256sum | cut -d" " -f1)'
|
||||
- 'echo "Got sha256sum: $SHA_SOURCE"'
|
||||
|
||||
# Update PKGBUILD parameters: version, source URL and SHA sum
|
||||
- echo "Updating PKGBUILDS with release information..."
|
||||
- sed "s/^pkgver=.*\$/pkgver=$VERSION/" -i posy-cursors/PKGBUILD
|
||||
- sed "s/^source=(\"\(.*\)::.*\").*\$/source=(\"\1::$(echo $URL_SOURCE | sed 's/\//\\\//g')\")/" -i posy-cursors/PKGBUILD
|
||||
- sed "s/^sha256sums=.*\$/sha256sums=('$SHA_SOURCE')/" -i posy-cursors/PKGBUILD
|
||||
|
||||
# Get SHA hash for local and remote file w/o version, update if it has changed
|
||||
# - 'SHA_STRIP_LOCAL=$(cat ffsend-git/PKGBUILD | sed /^pkgver=.\*/d | sha256sum | cut -d" " -f1)'
|
||||
# - 'SHA_STRIP_REMOTE=$(curl -sSL "https://aur.archlinux.org/cgit/aur.git/plain/PKGBUILD?h=ffsend-git" | sed /^pkgver=.\*/d | sha256sum | cut -d" " -f1)'
|
||||
|
||||
# Install dependencies
|
||||
- echo "Installing required build packages..."
|
||||
- pacman -Syu --noconfirm sudo base-devel openssh git openssl
|
||||
|
||||
# Make AUR package
|
||||
- mkdir -p /.cargo
|
||||
- chmod -R 777 /.cargo
|
||||
- cd posy-cursors/
|
||||
- echo "Making main source package..."
|
||||
- sudo -u nobody makepkg -c
|
||||
- sudo -u nobody makepkg --printsrcinfo > .SRCINFO
|
||||
# Make git package if different than the remote
|
||||
# - |
|
||||
# if [ ! "$SHA_STRIP_LOCAL" == "$SHA_STRIP_REMOTE" ]; then
|
||||
# cd ../ffsend-git
|
||||
# echo "Making git source package..."
|
||||
# sudo -u nobody makepkg -c
|
||||
# sudo -u nobody makepkg --printsrcinfo > .SRCINFO
|
||||
# else
|
||||
# echo "Not making git source package, it has not changed"
|
||||
# fi
|
||||
- cd ..
|
||||
|
||||
# Set up SSH for publishing
|
||||
- mkdir -p /root/.ssh
|
||||
- echo "$AUR_SSH_PRIVATE"
|
||||
- sleep 5
|
||||
- cp ./aur.pub /root/.ssh/id_rsa.pub
|
||||
- echo "$AUR_SSH_PRIVATE" | base64 -d > /root/.ssh/id_rsa
|
||||
- echo "Host aur.archlinux.org" >> /root/.ssh/config
|
||||
- echo " IdentityFile /root/.ssh/aur" >> /root/.ssh/config
|
||||
- echo " User aur" >> /root/.ssh/config
|
||||
- chmod 600 /root/.ssh/{id_rsa*,config}
|
||||
- eval `ssh-agent -s`
|
||||
- ssh-add /root/.ssh/id_rsa
|
||||
- ssh-keyscan -H aur.archlinux.org >> /root/.ssh/known_hosts
|
||||
- git config --global user.name "Dmitry Porunov"
|
||||
- git config --global user.email "dmitry@auteiy.me"
|
||||
|
||||
# Publish main package: clone AUR repo, commit update and push
|
||||
- git clone ssh://aur@aur.archlinux.org/posy-cursors.git aur-posy-cursors
|
||||
- cd aur-posy-cursors
|
||||
- cp ../posy-cursors/{PKGBUILD,.SRCINFO} ./
|
||||
- git add PKGBUILD .SRCINFO
|
||||
- git commit -m "Release v$VERSION"
|
||||
- git push
|
||||
- cd ..
|
||||
|
||||
# Publish binary package: clone AUR repo, commit update and push
|
||||
# - git clone ssh://aur@aur.archlinux.org/ffsend-bin.git aur-ffsend-bin
|
||||
# - cd aur-ffsend-bin
|
||||
# - cp ../ffsend-bin/{PKGBUILD,.SRCINFO} ./
|
||||
# - git add PKGBUILD .SRCINFO
|
||||
# - git commit -m "Release v$VERSION"
|
||||
# - git push
|
||||
# - cd ..
|
||||
|
||||
# Publish git package: clone AUR repo, commit update and push
|
||||
# Only publish it if it is different than the remote
|
||||
# - |
|
||||
# if [ ! "$SHA_STRIP_LOCAL" == "$SHA_STRIP_REMOTE" ]; then
|
||||
# git clone ssh://aur@aur.archlinux.org/ffsend-git.git aur-ffsend-git
|
||||
# cd aur-ffsend-git
|
||||
# cp ../ffsend-git/{PKGBUILD,.SRCINFO} ./
|
||||
# git add PKGBUILD .SRCINFO
|
||||
# git commit -m "Update PKGBUILD for release v$VERSION"
|
||||
# git push
|
||||
# cd ..
|
||||
# else
|
||||
# echo "Not pushing git package, it has not changed"
|
||||
# fi
|
||||
|
||||
# TODO: add job to test ffsend{-git} AUR packages
|
||||
65
README.md
Normal file
65
README.md
Normal file
@@ -0,0 +1,65 @@
|
||||
## Preview
|
||||
|
||||

|
||||
|
||||
|
||||
### Original
|
||||
http://www.michieldb.nl/other/cursors/
|
||||
|
||||
##### Build script from here
|
||||
https://github.com/keeferrourke/capitaine-cursors
|
||||
|
||||
|
||||
# Installation instructions
|
||||
### Arch Linux
|
||||
```
|
||||
git clone https://aur.archlinux.org/posy-cursors.git
|
||||
cd posy-cursors
|
||||
makepkg -si
|
||||
```
|
||||
<sub><sup>yay -S posy-cursors</sup></sub>
|
||||
|
||||
### Manual
|
||||
|
||||
##### Build
|
||||
|
||||
You'll need:
|
||||
|
||||
`imagemagick` for converting images to different sizes
|
||||
|
||||
`xcursorgen` for creating **Xcursor** files
|
||||
|
||||
|
||||
Run `bash Main/create.sh`
|
||||
|
||||
`cd Prebuilt`
|
||||
|
||||
Copy `posy-*` folders to `~/.icons`
|
||||
|
||||
##### Download
|
||||
|
||||
Download this [archive](https://git.auteiy.me/dmitry/cursorsPosy/-/archive/master/cursorsPosy-master.tar.gz?path=Prebuilt)
|
||||
|
||||
Extract it
|
||||
|
||||
`cd cursorsPosy-master-Prebuilt/Prebuilt`
|
||||
|
||||
Copy `posy-*` folders to `~/.icons`
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
---
|
||||
|
||||
#### After installation you can preview some of the cursors in action here
|
||||
https://codepen.io/chriscoyier/pen/uCwfB
|
||||
|
||||
### Special Thanks
|
||||
|
||||
##### To [Keefer Rourke](https://github.com/keeferrourke) for his [Capitaine Cursors](https://github.com/keeferrourke/capitaine-cursors) theme, from which I took scripts whole repository structure.
|
||||
|
||||
##### To [Patrick Gordon](https://github.com/paddygord) for creating [ani2 ico converter](https://github.com/paddygord/cursor-converter/) from Windows's formats
|
||||
|
||||
##### To FisHlaBsoMAN for creating [localemouse](https://bitbucket.org/group-of-coders/localemouse/src/master/) software that check current cursor in use.
|
||||
77
build.sh
77
build.sh
@@ -1,77 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# Capitaine cursors, macOS inspired cursors based on KDE Breeze
|
||||
# Copyright (c) 2016 Keefer Rourke <keefer.rourke@gmail.com>
|
||||
# Modified to include white cursors by Efus10n - 4 Mar 2019
|
||||
|
||||
function create {
|
||||
cd "$SRC"
|
||||
mkdir -p x1 x1_25 x1_5 x2
|
||||
cd "$SRC"/$1
|
||||
# find . -name "*.svg" -type f -exec sh -c 'inkscape -z -e "../x1/${0%.svg}.png" -w 32 -h 32 $0' {} \;
|
||||
# find . -name "*.svg" -type f -exec sh -c 'inkscape -z -e "../x1_25/${0%.svg}.png" -w 40 -w 40 $0' {} \;
|
||||
# find . -name "*.svg" -type f -exec sh -c 'inkscape -z -e "../x1_5/${0%.svg}.png" -w 48 -w 48 $0' {} \;
|
||||
# find . -name "*.svg" -type f -exec sh -c 'inkscape -z -e "../x2/${0%.svg}.png" -w 64 -w 64 $0' {} \;
|
||||
|
||||
cd $SRC
|
||||
|
||||
# generate cursors
|
||||
if [[ "$THEME" =~ White$ ]]; then
|
||||
BUILD="$SRC"/../dist-white
|
||||
else BUILD="$SRC"/../dist
|
||||
fi
|
||||
OUTPUT="$BUILD"/cursors
|
||||
ALIASES="$SRC"/cursorList
|
||||
|
||||
if [ ! -d "$BUILD" ]; then
|
||||
mkdir "$BUILD"
|
||||
fi
|
||||
if [ ! -d "$OUTPUT" ]; then
|
||||
mkdir "$OUTPUT"
|
||||
fi
|
||||
|
||||
echo -ne "Generating cursor theme...\\r"
|
||||
for CUR in config/*.cursor; do
|
||||
BASENAME="$CUR"
|
||||
BASENAME="${BASENAME##*/}"
|
||||
BASENAME="${BASENAME%.*}"
|
||||
|
||||
xcursorgen "$CUR" "$OUTPUT/$BASENAME"
|
||||
done
|
||||
echo -e "Generating cursor theme... DONE"
|
||||
|
||||
cd "$OUTPUT"
|
||||
|
||||
#generate aliases
|
||||
echo -ne "Generating shortcuts...\\r"
|
||||
while read ALIAS; do
|
||||
FROM="${ALIAS#* }"
|
||||
TO="${ALIAS% *}"
|
||||
|
||||
if [ -e $TO ]; then
|
||||
continue
|
||||
fi
|
||||
ln -sr "$FROM" "$TO"
|
||||
done < "$ALIASES"
|
||||
echo -e "Generating shortcuts... DONE"
|
||||
|
||||
cd "$PWD"
|
||||
|
||||
echo -ne "Generating Theme Index...\\r"
|
||||
INDEX="$OUTPUT/../index.theme"
|
||||
if [ ! -e "$OUTPUT/../$INDEX" ]; then
|
||||
touch "$INDEX"
|
||||
echo -e "[Icon Theme]\nName=$THEME\n" > "$INDEX"
|
||||
fi
|
||||
echo -e "Generating Theme Index... DONE"
|
||||
}
|
||||
|
||||
# generate pixmaps from svg source
|
||||
SRC=$PWD/src
|
||||
THEME="Posy"
|
||||
|
||||
create svg
|
||||
|
||||
# THEME="Capitaine Cursors - White"
|
||||
|
||||
# create svg-white
|
||||
BIN
dist/cursors/alias
vendored
BIN
dist/cursors/alias
vendored
Binary file not shown.
BIN
dist/cursors/all-scroll
vendored
BIN
dist/cursors/all-scroll
vendored
Binary file not shown.
BIN
dist/cursors/bottom_left_corner
vendored
BIN
dist/cursors/bottom_left_corner
vendored
Binary file not shown.
BIN
dist/cursors/bottom_right_corner
vendored
BIN
dist/cursors/bottom_right_corner
vendored
Binary file not shown.
BIN
dist/cursors/bottom_side
vendored
BIN
dist/cursors/bottom_side
vendored
Binary file not shown.
BIN
dist/cursors/cell
vendored
BIN
dist/cursors/cell
vendored
Binary file not shown.
BIN
dist/cursors/center_ptr
vendored
BIN
dist/cursors/center_ptr
vendored
Binary file not shown.
BIN
dist/cursors/col-resize
vendored
BIN
dist/cursors/col-resize
vendored
Binary file not shown.
BIN
dist/cursors/color-picker
vendored
BIN
dist/cursors/color-picker
vendored
Binary file not shown.
BIN
dist/cursors/context-menu
vendored
BIN
dist/cursors/context-menu
vendored
Binary file not shown.
BIN
dist/cursors/copy
vendored
BIN
dist/cursors/copy
vendored
Binary file not shown.
BIN
dist/cursors/crosshair
vendored
BIN
dist/cursors/crosshair
vendored
Binary file not shown.
BIN
dist/cursors/default
vendored
BIN
dist/cursors/default
vendored
Binary file not shown.
BIN
dist/cursors/dnd-move
vendored
BIN
dist/cursors/dnd-move
vendored
Binary file not shown.
BIN
dist/cursors/dnd-no-drop
vendored
BIN
dist/cursors/dnd-no-drop
vendored
Binary file not shown.
BIN
dist/cursors/down-arrow
vendored
BIN
dist/cursors/down-arrow
vendored
Binary file not shown.
BIN
dist/cursors/draft
vendored
BIN
dist/cursors/draft
vendored
Binary file not shown.
BIN
dist/cursors/fleur
vendored
BIN
dist/cursors/fleur
vendored
Binary file not shown.
BIN
dist/cursors/help
vendored
BIN
dist/cursors/help
vendored
Binary file not shown.
BIN
dist/cursors/left-arrow
vendored
BIN
dist/cursors/left-arrow
vendored
Binary file not shown.
BIN
dist/cursors/left_side
vendored
BIN
dist/cursors/left_side
vendored
Binary file not shown.
BIN
dist/cursors/no-drop
vendored
BIN
dist/cursors/no-drop
vendored
Binary file not shown.
BIN
dist/cursors/not-allowed
vendored
BIN
dist/cursors/not-allowed
vendored
Binary file not shown.
BIN
dist/cursors/openhand
vendored
BIN
dist/cursors/openhand
vendored
Binary file not shown.
BIN
dist/cursors/pencil
vendored
BIN
dist/cursors/pencil
vendored
Binary file not shown.
BIN
dist/cursors/pirate
vendored
BIN
dist/cursors/pirate
vendored
Binary file not shown.
BIN
dist/cursors/pointer
vendored
BIN
dist/cursors/pointer
vendored
Binary file not shown.
BIN
dist/cursors/progress
vendored
BIN
dist/cursors/progress
vendored
Binary file not shown.
BIN
dist/cursors/right-arrow
vendored
BIN
dist/cursors/right-arrow
vendored
Binary file not shown.
BIN
dist/cursors/right_ptr
vendored
BIN
dist/cursors/right_ptr
vendored
Binary file not shown.
BIN
dist/cursors/right_side
vendored
BIN
dist/cursors/right_side
vendored
Binary file not shown.
BIN
dist/cursors/row-resize
vendored
BIN
dist/cursors/row-resize
vendored
Binary file not shown.
BIN
dist/cursors/size_bdiag
vendored
BIN
dist/cursors/size_bdiag
vendored
Binary file not shown.
BIN
dist/cursors/size_fdiag
vendored
BIN
dist/cursors/size_fdiag
vendored
Binary file not shown.
BIN
dist/cursors/size_hor
vendored
BIN
dist/cursors/size_hor
vendored
Binary file not shown.
BIN
dist/cursors/size_ver
vendored
BIN
dist/cursors/size_ver
vendored
Binary file not shown.
BIN
dist/cursors/text
vendored
BIN
dist/cursors/text
vendored
Binary file not shown.
BIN
dist/cursors/top_left_corner
vendored
BIN
dist/cursors/top_left_corner
vendored
Binary file not shown.
BIN
dist/cursors/top_right_corner
vendored
BIN
dist/cursors/top_right_corner
vendored
Binary file not shown.
BIN
dist/cursors/top_side
vendored
BIN
dist/cursors/top_side
vendored
Binary file not shown.
BIN
dist/cursors/up-arrow
vendored
BIN
dist/cursors/up-arrow
vendored
Binary file not shown.
BIN
dist/cursors/vertical-text
vendored
BIN
dist/cursors/vertical-text
vendored
Binary file not shown.
BIN
dist/cursors/wait
vendored
BIN
dist/cursors/wait
vendored
Binary file not shown.
BIN
dist/cursors/wayland-cursor
vendored
BIN
dist/cursors/wayland-cursor
vendored
Binary file not shown.
BIN
dist/cursors/x-cursor
vendored
BIN
dist/cursors/x-cursor
vendored
Binary file not shown.
BIN
dist/cursors/zoom-in
vendored
BIN
dist/cursors/zoom-in
vendored
Binary file not shown.
BIN
dist/cursors/zoom-out
vendored
BIN
dist/cursors/zoom-out
vendored
Binary file not shown.
3
dist/index.theme
vendored
3
dist/index.theme
vendored
@@ -1,3 +0,0 @@
|
||||
[Icon Theme]
|
||||
Name=Posy
|
||||
|
||||
1
pkg/aur/aur.pub
Normal file
1
pkg/aur/aur.pub
Normal file
@@ -0,0 +1 @@
|
||||
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDHfiNi+rOCPKGLB6v9uuYR6GkN6Zd+CdaRbV82A26AUzs48ZG0xZGXHsoRuZY/yCUhcrS2u9xZ16fsAxnyf1QCF1hZVABUYtNhL1eEbSbLNiG9vIWJzbRjgegN/yyiG9ZVhFfNqXtPeapvuM3H44a2XeeFJcvTOfj/alkVjypi/DY/+XpC1IlX+CARC/e0zXHa3KZohn+CfBj8kWZWQEr7+EtKT59pslNxuJPcDUw7sKYLcBBz00BT0vv3lntyvZI1rRsD7AvItOwSZPp6or78Tgp8+O0HvFpjrlNipPEqDPpETIPcjTIVAlvlPFK1J0Rpzud38YdoWGfPiM77k7L7 timvisee@aur
|
||||
43
pkg/aur/posy-cursors-git/PKGBUILD
Normal file
43
pkg/aur/posy-cursors-git/PKGBUILD
Normal file
@@ -0,0 +1,43 @@
|
||||
# Maintainer: Tim Visee <tim@visee.me>
|
||||
#
|
||||
# This PKGBUILD is managed externally, and is automatically updated here:
|
||||
# - https://gitlab.com/timvisee/ffsend/blob/master/pkg/aur/ffsend-git/PKGBUILD
|
||||
# - Mirror: https://github.com/timvisee/ffsend/blob/master/pkg/aur/ffsend-git/PKGBUILD
|
||||
|
||||
pkgname=ffsend-git
|
||||
pkgver=0.0.0 # automatically set in CI, see: /.gitlab-ci.yml
|
||||
pkgrel=1
|
||||
pkgdesc="Easily and securely share files from the command line. A Firefox Send client."
|
||||
url="https://gitlab.com/timvisee/ffsend"
|
||||
license=('GPL3')
|
||||
source=("ffsend::git+$url.git")
|
||||
sha256sums=('SKIP')
|
||||
arch=('x86_64' 'i686')
|
||||
provides=('ffsend')
|
||||
conflicts=('ffsend')
|
||||
depends=('ca-certificates')
|
||||
makedepends=('openssl>=1.0' 'rust>=1.32' 'cargo' 'cmake')
|
||||
optdepends=('xclip: clipboard support'
|
||||
'bash-completion: support auto completion for bash')
|
||||
|
||||
build() {
|
||||
cd ffsend
|
||||
env CARGO_INCREMENTAL=0 cargo build --release
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/ffsend"
|
||||
|
||||
# Install Binary
|
||||
install -Dm755 "./target/release/ffsend" "$pkgdir/usr/bin/ffsend"
|
||||
|
||||
# Install shell completions and LICENSE file
|
||||
install -Dm644 "contrib/completions/ffsend.bash" \
|
||||
"$pkgdir/etc/bash_completion.d/ffsend"
|
||||
install -Dm644 "contrib/completions/_ffsend" \
|
||||
"$pkgdir/usr/share/zsh/site-functions/_ffsend"
|
||||
install -Dm644 "contrib/completions/ffsend.fish" \
|
||||
"$pkgdir/usr/share/fish/vendor_completions.d/ffsend.fish"
|
||||
install -Dm644 "LICENSE" \
|
||||
"$pkgdir/usr/share/licenses/ffsend/LICENSE"
|
||||
}
|
||||
21
pkg/aur/posy-cursors/PKGBUILD
Normal file
21
pkg/aur/posy-cursors/PKGBUILD
Normal file
@@ -0,0 +1,21 @@
|
||||
# Maintainer: Auteiy <dmitry@auteiy.me>
|
||||
|
||||
pkgname=posy-cursors
|
||||
pkgver=0.0.0 # automatically set in CI, see: /.gitlab-ci.yml
|
||||
pkgrel=1
|
||||
pkgdesc="Port of Posy's improved cursors"
|
||||
arch=(any)
|
||||
url="https://git.auteiy.me/dmitry/cursorsPosy"
|
||||
license=(unknown)
|
||||
source=("$pkgname-$pkgver.tar.gz::$url/-/archive/v$pkgver/cursorsPosy-v$pkgver.tar.gz?path=themes") # automatically set in CI, see: /.gitlab-ci.yml
|
||||
|
||||
sha256sums=('SKIP') # automatically set in CI, see: /.gitlab-ci.yml
|
||||
|
||||
package() {
|
||||
cd cursorsPosy-v$pkgver-themes/themes
|
||||
install -Ddm755 "$pkgdir/usr/share/icons"
|
||||
cp -dr --no-preserve=ownership posy-white/ "$pkgdir/usr/share/icons/posy-white"
|
||||
cp -dr --no-preserve=ownership posy-black/ "$pkgdir/usr/share/icons/posy-black"
|
||||
cp -dr --no-preserve=ownership posy-white-tiny/ "$pkgdir/usr/share/icons/posy-white-tiny"
|
||||
cp -dr --no-preserve=ownership posy-black-tiny/ "$pkgdir/usr/share/icons/posy-black-tiny"
|
||||
}
|
||||
304
src/Black/config/progress.cursor
Normal file
304
src/Black/config/progress.cursor
Normal file
@@ -0,0 +1,304 @@
|
||||
24 16 16 x1/progress-1.png 30
|
||||
24 16 16 x1/progress-2.png 30
|
||||
24 16 16 x1/progress-3.png 30
|
||||
24 16 16 x1/progress-4.png 30
|
||||
24 16 16 x1/progress-5.png 30
|
||||
24 16 16 x1/progress-6.png 30
|
||||
24 16 16 x1/progress-7.png 30
|
||||
24 16 16 x1/progress-8.png 30
|
||||
24 16 16 x1/progress-9.png 30
|
||||
24 16 16 x1/progress-10.png 30
|
||||
24 16 16 x1/progress-11.png 30
|
||||
24 16 16 x1/progress-12.png 30
|
||||
24 16 16 x1/progress-13.png 30
|
||||
24 16 16 x1/progress-14.png 30
|
||||
24 16 16 x1/progress-15.png 30
|
||||
24 16 16 x1/progress-16.png 30
|
||||
24 16 16 x1/progress-17.png 30
|
||||
24 16 16 x1/progress-18.png 30
|
||||
24 16 16 x1/progress-19.png 30
|
||||
24 16 16 x1/progress-20.png 30
|
||||
24 16 16 x1/progress-21.png 30
|
||||
24 16 16 x1/progress-22.png 30
|
||||
24 16 16 x1/progress-23.png 30
|
||||
24 16 16 x1/progress-24.png 30
|
||||
24 16 16 x1/progress-25.png 30
|
||||
24 16 16 x1/progress-26.png 30
|
||||
24 16 16 x1/progress-27.png 30
|
||||
24 16 16 x1/progress-28.png 30
|
||||
24 16 16 x1/progress-29.png 30
|
||||
24 16 16 x1/progress-30.png 30
|
||||
24 16 16 x1/progress-31.png 30
|
||||
24 16 16 x1/progress-32.png 30
|
||||
24 16 16 x1/progress-33.png 30
|
||||
24 16 16 x1/progress-34.png 30
|
||||
24 16 16 x1/progress-35.png 30
|
||||
24 16 16 x1/progress-36.png 30
|
||||
24 16 16 x1/progress-37.png 30
|
||||
24 16 16 x1/progress-38.png 30
|
||||
24 16 16 x1/progress-39.png 30
|
||||
24 16 16 x1/progress-40.png 30
|
||||
24 16 16 x1/progress-41.png 30
|
||||
24 16 16 x1/progress-42.png 30
|
||||
24 16 16 x1/progress-43.png 30
|
||||
24 16 16 x1/progress-44.png 30
|
||||
24 16 16 x1/progress-45.png 30
|
||||
24 16 16 x1/progress-46.png 30
|
||||
24 16 16 x1/progress-47.png 30
|
||||
24 16 16 x1/progress-48.png 30
|
||||
24 16 16 x1/progress-49.png 30
|
||||
24 16 16 x1/progress-50.png 30
|
||||
24 16 16 x1/progress-51.png 30
|
||||
24 16 16 x1/progress-52.png 30
|
||||
24 16 16 x1/progress-53.png 30
|
||||
24 16 16 x1/progress-54.png 30
|
||||
24 16 16 x1/progress-55.png 30
|
||||
24 16 16 x1/progress-56.png 30
|
||||
24 16 16 x1/progress-57.png 30
|
||||
24 16 16 x1/progress-58.png 30
|
||||
24 16 16 x1/progress-59.png 30
|
||||
24 16 16 x1/progress-60.png 30
|
||||
24 16 16 x1/progress-61.png 30
|
||||
24 16 16 x1/progress-62.png 30
|
||||
24 16 16 x1/progress-63.png 30
|
||||
24 16 16 x1/progress-64.png 30
|
||||
24 16 16 x1/progress-65.png 30
|
||||
24 16 16 x1/progress-66.png 30
|
||||
24 16 16 x1/progress-67.png 30
|
||||
24 16 16 x1/progress-68.png 30
|
||||
24 16 16 x1/progress-69.png 30
|
||||
24 16 16 x1/progress-70.png 30
|
||||
24 16 16 x1/progress-71.png 30
|
||||
24 16 16 x1/progress-72.png 30
|
||||
24 16 16 x1/progress-73.png 30
|
||||
24 16 16 x1/progress-74.png 30
|
||||
24 16 16 x1/progress-75.png 30
|
||||
24 16 16 x1/progress-76.png 30
|
||||
30 20 20 x1_25/progress-1.png 30
|
||||
30 20 20 x1_25/progress-2.png 30
|
||||
30 20 20 x1_25/progress-3.png 30
|
||||
30 20 20 x1_25/progress-4.png 30
|
||||
30 20 20 x1_25/progress-5.png 30
|
||||
30 20 20 x1_25/progress-6.png 30
|
||||
30 20 20 x1_25/progress-7.png 30
|
||||
30 20 20 x1_25/progress-8.png 30
|
||||
30 20 20 x1_25/progress-9.png 30
|
||||
30 20 20 x1_25/progress-10.png 30
|
||||
30 20 20 x1_25/progress-11.png 30
|
||||
30 20 20 x1_25/progress-12.png 30
|
||||
30 20 20 x1_25/progress-13.png 30
|
||||
30 20 20 x1_25/progress-14.png 30
|
||||
30 20 20 x1_25/progress-15.png 30
|
||||
30 20 20 x1_25/progress-16.png 30
|
||||
30 20 20 x1_25/progress-17.png 30
|
||||
30 20 20 x1_25/progress-18.png 30
|
||||
30 20 20 x1_25/progress-19.png 30
|
||||
30 20 20 x1_25/progress-20.png 30
|
||||
30 20 20 x1_25/progress-21.png 30
|
||||
30 20 20 x1_25/progress-22.png 30
|
||||
30 20 20 x1_25/progress-23.png 30
|
||||
30 20 20 x1_25/progress-24.png 30
|
||||
30 20 20 x1_25/progress-25.png 30
|
||||
30 20 20 x1_25/progress-26.png 30
|
||||
30 20 20 x1_25/progress-27.png 30
|
||||
30 20 20 x1_25/progress-28.png 30
|
||||
30 20 20 x1_25/progress-29.png 30
|
||||
30 20 20 x1_25/progress-30.png 30
|
||||
30 20 20 x1_25/progress-31.png 30
|
||||
30 20 20 x1_25/progress-32.png 30
|
||||
30 20 20 x1_25/progress-33.png 30
|
||||
30 20 20 x1_25/progress-34.png 30
|
||||
30 20 20 x1_25/progress-35.png 30
|
||||
30 20 20 x1_25/progress-36.png 30
|
||||
30 20 20 x1_25/progress-37.png 30
|
||||
30 20 20 x1_25/progress-38.png 30
|
||||
30 20 20 x1_25/progress-39.png 30
|
||||
30 20 20 x1_25/progress-40.png 30
|
||||
30 20 20 x1_25/progress-41.png 30
|
||||
30 20 20 x1_25/progress-42.png 30
|
||||
30 20 20 x1_25/progress-43.png 30
|
||||
30 20 20 x1_25/progress-44.png 30
|
||||
30 20 20 x1_25/progress-45.png 30
|
||||
30 20 20 x1_25/progress-46.png 30
|
||||
30 20 20 x1_25/progress-47.png 30
|
||||
30 20 20 x1_25/progress-48.png 30
|
||||
30 20 20 x1_25/progress-49.png 30
|
||||
30 20 20 x1_25/progress-50.png 30
|
||||
30 20 20 x1_25/progress-51.png 30
|
||||
30 20 20 x1_25/progress-52.png 30
|
||||
30 20 20 x1_25/progress-53.png 30
|
||||
30 20 20 x1_25/progress-54.png 30
|
||||
30 20 20 x1_25/progress-55.png 30
|
||||
30 20 20 x1_25/progress-56.png 30
|
||||
30 20 20 x1_25/progress-57.png 30
|
||||
30 20 20 x1_25/progress-58.png 30
|
||||
30 20 20 x1_25/progress-59.png 30
|
||||
30 20 20 x1_25/progress-60.png 30
|
||||
30 20 20 x1_25/progress-61.png 30
|
||||
30 20 20 x1_25/progress-62.png 30
|
||||
30 20 20 x1_25/progress-63.png 30
|
||||
30 20 20 x1_25/progress-64.png 30
|
||||
30 20 20 x1_25/progress-65.png 30
|
||||
30 20 20 x1_25/progress-66.png 30
|
||||
30 20 20 x1_25/progress-67.png 30
|
||||
30 20 20 x1_25/progress-68.png 30
|
||||
30 20 20 x1_25/progress-69.png 30
|
||||
30 20 20 x1_25/progress-70.png 30
|
||||
30 20 20 x1_25/progress-71.png 30
|
||||
30 20 20 x1_25/progress-72.png 30
|
||||
30 20 20 x1_25/progress-73.png 30
|
||||
30 20 20 x1_25/progress-74.png 30
|
||||
30 20 20 x1_25/progress-75.png 30
|
||||
30 20 20 x1_25/progress-76.png 30
|
||||
36 24 24 x1_5/progress-1.png 30
|
||||
36 24 24 x1_5/progress-2.png 30
|
||||
36 24 24 x1_5/progress-3.png 30
|
||||
36 24 24 x1_5/progress-4.png 30
|
||||
36 24 24 x1_5/progress-5.png 30
|
||||
36 24 24 x1_5/progress-6.png 30
|
||||
36 24 24 x1_5/progress-7.png 30
|
||||
36 24 24 x1_5/progress-8.png 30
|
||||
36 24 24 x1_5/progress-9.png 30
|
||||
36 24 24 x1_5/progress-10.png 30
|
||||
36 24 24 x1_5/progress-11.png 30
|
||||
36 24 24 x1_5/progress-12.png 30
|
||||
36 24 24 x1_5/progress-13.png 30
|
||||
36 24 24 x1_5/progress-14.png 30
|
||||
36 24 24 x1_5/progress-15.png 30
|
||||
36 24 24 x1_5/progress-16.png 30
|
||||
36 24 24 x1_5/progress-17.png 30
|
||||
36 24 24 x1_5/progress-18.png 30
|
||||
36 24 24 x1_5/progress-19.png 30
|
||||
36 24 24 x1_5/progress-20.png 30
|
||||
36 24 24 x1_5/progress-21.png 30
|
||||
36 24 24 x1_5/progress-22.png 30
|
||||
36 24 24 x1_5/progress-23.png 30
|
||||
36 24 24 x1_5/progress-24.png 30
|
||||
36 24 24 x1_5/progress-25.png 30
|
||||
36 24 24 x1_5/progress-26.png 30
|
||||
36 24 24 x1_5/progress-27.png 30
|
||||
36 24 24 x1_5/progress-28.png 30
|
||||
36 24 24 x1_5/progress-29.png 30
|
||||
36 24 24 x1_5/progress-30.png 30
|
||||
36 24 24 x1_5/progress-31.png 30
|
||||
36 24 24 x1_5/progress-32.png 30
|
||||
36 24 24 x1_5/progress-33.png 30
|
||||
36 24 24 x1_5/progress-34.png 30
|
||||
36 24 24 x1_5/progress-35.png 30
|
||||
36 24 24 x1_5/progress-36.png 30
|
||||
36 24 24 x1_5/progress-37.png 30
|
||||
36 24 24 x1_5/progress-38.png 30
|
||||
36 24 24 x1_5/progress-39.png 30
|
||||
36 24 24 x1_5/progress-40.png 30
|
||||
36 24 24 x1_5/progress-41.png 30
|
||||
36 24 24 x1_5/progress-42.png 30
|
||||
36 24 24 x1_5/progress-43.png 30
|
||||
36 24 24 x1_5/progress-44.png 30
|
||||
36 24 24 x1_5/progress-45.png 30
|
||||
36 24 24 x1_5/progress-46.png 30
|
||||
36 24 24 x1_5/progress-47.png 30
|
||||
36 24 24 x1_5/progress-48.png 30
|
||||
36 24 24 x1_5/progress-49.png 30
|
||||
36 24 24 x1_5/progress-50.png 30
|
||||
36 24 24 x1_5/progress-51.png 30
|
||||
36 24 24 x1_5/progress-52.png 30
|
||||
36 24 24 x1_5/progress-53.png 30
|
||||
36 24 24 x1_5/progress-54.png 30
|
||||
36 24 24 x1_5/progress-55.png 30
|
||||
36 24 24 x1_5/progress-56.png 30
|
||||
36 24 24 x1_5/progress-57.png 30
|
||||
36 24 24 x1_5/progress-58.png 30
|
||||
36 24 24 x1_5/progress-59.png 30
|
||||
36 24 24 x1_5/progress-60.png 30
|
||||
36 24 24 x1_5/progress-61.png 30
|
||||
36 24 24 x1_5/progress-62.png 30
|
||||
36 24 24 x1_5/progress-63.png 30
|
||||
36 24 24 x1_5/progress-64.png 30
|
||||
36 24 24 x1_5/progress-65.png 30
|
||||
36 24 24 x1_5/progress-66.png 30
|
||||
36 24 24 x1_5/progress-67.png 30
|
||||
36 24 24 x1_5/progress-68.png 30
|
||||
36 24 24 x1_5/progress-69.png 30
|
||||
36 24 24 x1_5/progress-70.png 30
|
||||
36 24 24 x1_5/progress-71.png 30
|
||||
36 24 24 x1_5/progress-72.png 30
|
||||
36 24 24 x1_5/progress-73.png 30
|
||||
36 24 24 x1_5/progress-74.png 30
|
||||
36 24 24 x1_5/progress-75.png 30
|
||||
36 24 24 x1_5/progress-76.png 30
|
||||
48 32 32 x2/progress-1.png 30
|
||||
48 32 32 x2/progress-2.png 30
|
||||
48 32 32 x2/progress-3.png 30
|
||||
48 32 32 x2/progress-4.png 30
|
||||
48 32 32 x2/progress-5.png 30
|
||||
48 32 32 x2/progress-6.png 30
|
||||
48 32 32 x2/progress-7.png 30
|
||||
48 32 32 x2/progress-8.png 30
|
||||
48 32 32 x2/progress-9.png 30
|
||||
48 32 32 x2/progress-10.png 30
|
||||
48 32 32 x2/progress-11.png 30
|
||||
48 32 32 x2/progress-12.png 30
|
||||
48 32 32 x2/progress-13.png 30
|
||||
48 32 32 x2/progress-14.png 30
|
||||
48 32 32 x2/progress-15.png 30
|
||||
48 32 32 x2/progress-16.png 30
|
||||
48 32 32 x2/progress-17.png 30
|
||||
48 32 32 x2/progress-18.png 30
|
||||
48 32 32 x2/progress-19.png 30
|
||||
48 32 32 x2/progress-20.png 30
|
||||
48 32 32 x2/progress-21.png 30
|
||||
48 32 32 x2/progress-22.png 30
|
||||
48 32 32 x2/progress-23.png 30
|
||||
48 32 32 x2/progress-24.png 30
|
||||
48 32 32 x2/progress-25.png 30
|
||||
48 32 32 x2/progress-26.png 30
|
||||
48 32 32 x2/progress-27.png 30
|
||||
48 32 32 x2/progress-28.png 30
|
||||
48 32 32 x2/progress-29.png 30
|
||||
48 32 32 x2/progress-30.png 30
|
||||
48 32 32 x2/progress-31.png 30
|
||||
48 32 32 x2/progress-32.png 30
|
||||
48 32 32 x2/progress-33.png 30
|
||||
48 32 32 x2/progress-34.png 30
|
||||
48 32 32 x2/progress-35.png 30
|
||||
48 32 32 x2/progress-36.png 30
|
||||
48 32 32 x2/progress-37.png 30
|
||||
48 32 32 x2/progress-38.png 30
|
||||
48 32 32 x2/progress-39.png 30
|
||||
48 32 32 x2/progress-40.png 30
|
||||
48 32 32 x2/progress-41.png 30
|
||||
48 32 32 x2/progress-42.png 30
|
||||
48 32 32 x2/progress-43.png 30
|
||||
48 32 32 x2/progress-44.png 30
|
||||
48 32 32 x2/progress-45.png 30
|
||||
48 32 32 x2/progress-46.png 30
|
||||
48 32 32 x2/progress-47.png 30
|
||||
48 32 32 x2/progress-48.png 30
|
||||
48 32 32 x2/progress-49.png 30
|
||||
48 32 32 x2/progress-50.png 30
|
||||
48 32 32 x2/progress-51.png 30
|
||||
48 32 32 x2/progress-52.png 30
|
||||
48 32 32 x2/progress-53.png 30
|
||||
48 32 32 x2/progress-54.png 30
|
||||
48 32 32 x2/progress-55.png 30
|
||||
48 32 32 x2/progress-56.png 30
|
||||
48 32 32 x2/progress-57.png 30
|
||||
48 32 32 x2/progress-58.png 30
|
||||
48 32 32 x2/progress-59.png 30
|
||||
48 32 32 x2/progress-60.png 30
|
||||
48 32 32 x2/progress-61.png 30
|
||||
48 32 32 x2/progress-62.png 30
|
||||
48 32 32 x2/progress-63.png 30
|
||||
48 32 32 x2/progress-64.png 30
|
||||
48 32 32 x2/progress-65.png 30
|
||||
48 32 32 x2/progress-66.png 30
|
||||
48 32 32 x2/progress-67.png 30
|
||||
48 32 32 x2/progress-68.png 30
|
||||
48 32 32 x2/progress-69.png 30
|
||||
48 32 32 x2/progress-70.png 30
|
||||
48 32 32 x2/progress-71.png 30
|
||||
48 32 32 x2/progress-72.png 30
|
||||
48 32 32 x2/progress-73.png 30
|
||||
48 32 32 x2/progress-74.png 30
|
||||
48 32 32 x2/progress-75.png 30
|
||||
48 32 32 x2/progress-76.png 30
|
||||
304
src/Black/config/wait.cursor
Normal file
304
src/Black/config/wait.cursor
Normal file
@@ -0,0 +1,304 @@
|
||||
24 16 16 x1/wait-1.png 30
|
||||
24 16 16 x1/wait-2.png 30
|
||||
24 16 16 x1/wait-3.png 30
|
||||
24 16 16 x1/wait-4.png 30
|
||||
24 16 16 x1/wait-5.png 30
|
||||
24 16 16 x1/wait-6.png 30
|
||||
24 16 16 x1/wait-7.png 30
|
||||
24 16 16 x1/wait-8.png 30
|
||||
24 16 16 x1/wait-9.png 30
|
||||
24 16 16 x1/wait-10.png 30
|
||||
24 16 16 x1/wait-11.png 30
|
||||
24 16 16 x1/wait-12.png 30
|
||||
24 16 16 x1/wait-13.png 30
|
||||
24 16 16 x1/wait-14.png 30
|
||||
24 16 16 x1/wait-15.png 30
|
||||
24 16 16 x1/wait-16.png 30
|
||||
24 16 16 x1/wait-17.png 30
|
||||
24 16 16 x1/wait-18.png 30
|
||||
24 16 16 x1/wait-19.png 30
|
||||
24 16 16 x1/wait-20.png 30
|
||||
24 16 16 x1/wait-21.png 30
|
||||
24 16 16 x1/wait-22.png 30
|
||||
24 16 16 x1/wait-23.png 30
|
||||
24 16 16 x1/wait-24.png 30
|
||||
24 16 16 x1/wait-25.png 30
|
||||
24 16 16 x1/wait-26.png 30
|
||||
24 16 16 x1/wait-27.png 30
|
||||
24 16 16 x1/wait-28.png 30
|
||||
24 16 16 x1/wait-29.png 30
|
||||
24 16 16 x1/wait-30.png 30
|
||||
24 16 16 x1/wait-31.png 30
|
||||
24 16 16 x1/wait-32.png 30
|
||||
24 16 16 x1/wait-33.png 30
|
||||
24 16 16 x1/wait-34.png 30
|
||||
24 16 16 x1/wait-35.png 30
|
||||
24 16 16 x1/wait-36.png 30
|
||||
24 16 16 x1/wait-37.png 30
|
||||
24 16 16 x1/wait-38.png 30
|
||||
24 16 16 x1/wait-39.png 30
|
||||
24 16 16 x1/wait-40.png 30
|
||||
24 16 16 x1/wait-41.png 30
|
||||
24 16 16 x1/wait-42.png 30
|
||||
24 16 16 x1/wait-43.png 30
|
||||
24 16 16 x1/wait-44.png 30
|
||||
24 16 16 x1/wait-45.png 30
|
||||
24 16 16 x1/wait-46.png 30
|
||||
24 16 16 x1/wait-47.png 30
|
||||
24 16 16 x1/wait-48.png 30
|
||||
24 16 16 x1/wait-49.png 30
|
||||
24 16 16 x1/wait-50.png 30
|
||||
24 16 16 x1/wait-51.png 30
|
||||
24 16 16 x1/wait-52.png 30
|
||||
24 16 16 x1/wait-53.png 30
|
||||
24 16 16 x1/wait-54.png 30
|
||||
24 16 16 x1/wait-55.png 30
|
||||
24 16 16 x1/wait-56.png 30
|
||||
24 16 16 x1/wait-57.png 30
|
||||
24 16 16 x1/wait-58.png 30
|
||||
24 16 16 x1/wait-59.png 30
|
||||
24 16 16 x1/wait-60.png 30
|
||||
24 16 16 x1/wait-61.png 30
|
||||
24 16 16 x1/wait-62.png 30
|
||||
24 16 16 x1/wait-63.png 30
|
||||
24 16 16 x1/wait-64.png 30
|
||||
24 16 16 x1/wait-65.png 30
|
||||
24 16 16 x1/wait-66.png 30
|
||||
24 16 16 x1/wait-67.png 30
|
||||
24 16 16 x1/wait-68.png 30
|
||||
24 16 16 x1/wait-69.png 30
|
||||
24 16 16 x1/wait-70.png 30
|
||||
24 16 16 x1/wait-71.png 30
|
||||
24 16 16 x1/wait-72.png 30
|
||||
24 16 16 x1/wait-73.png 30
|
||||
24 16 16 x1/wait-74.png 30
|
||||
24 16 16 x1/wait-75.png 30
|
||||
24 16 16 x1/wait-76.png 30
|
||||
30 20 20 x1_25/wait-1.png 30
|
||||
30 20 20 x1_25/wait-2.png 30
|
||||
30 20 20 x1_25/wait-3.png 30
|
||||
30 20 20 x1_25/wait-4.png 30
|
||||
30 20 20 x1_25/wait-5.png 30
|
||||
30 20 20 x1_25/wait-6.png 30
|
||||
30 20 20 x1_25/wait-7.png 30
|
||||
30 20 20 x1_25/wait-8.png 30
|
||||
30 20 20 x1_25/wait-9.png 30
|
||||
30 20 20 x1_25/wait-10.png 30
|
||||
30 20 20 x1_25/wait-11.png 30
|
||||
30 20 20 x1_25/wait-12.png 30
|
||||
30 20 20 x1_25/wait-13.png 30
|
||||
30 20 20 x1_25/wait-14.png 30
|
||||
30 20 20 x1_25/wait-15.png 30
|
||||
30 20 20 x1_25/wait-16.png 30
|
||||
30 20 20 x1_25/wait-17.png 30
|
||||
30 20 20 x1_25/wait-18.png 30
|
||||
30 20 20 x1_25/wait-19.png 30
|
||||
30 20 20 x1_25/wait-20.png 30
|
||||
30 20 20 x1_25/wait-21.png 30
|
||||
30 20 20 x1_25/wait-22.png 30
|
||||
30 20 20 x1_25/wait-23.png 30
|
||||
30 20 20 x1_25/wait-24.png 30
|
||||
30 20 20 x1_25/wait-25.png 30
|
||||
30 20 20 x1_25/wait-26.png 30
|
||||
30 20 20 x1_25/wait-27.png 30
|
||||
30 20 20 x1_25/wait-28.png 30
|
||||
30 20 20 x1_25/wait-29.png 30
|
||||
30 20 20 x1_25/wait-30.png 30
|
||||
30 20 20 x1_25/wait-31.png 30
|
||||
30 20 20 x1_25/wait-32.png 30
|
||||
30 20 20 x1_25/wait-33.png 30
|
||||
30 20 20 x1_25/wait-34.png 30
|
||||
30 20 20 x1_25/wait-35.png 30
|
||||
30 20 20 x1_25/wait-36.png 30
|
||||
30 20 20 x1_25/wait-37.png 30
|
||||
30 20 20 x1_25/wait-38.png 30
|
||||
30 20 20 x1_25/wait-39.png 30
|
||||
30 20 20 x1_25/wait-40.png 30
|
||||
30 20 20 x1_25/wait-41.png 30
|
||||
30 20 20 x1_25/wait-42.png 30
|
||||
30 20 20 x1_25/wait-43.png 30
|
||||
30 20 20 x1_25/wait-44.png 30
|
||||
30 20 20 x1_25/wait-45.png 30
|
||||
30 20 20 x1_25/wait-46.png 30
|
||||
30 20 20 x1_25/wait-47.png 30
|
||||
30 20 20 x1_25/wait-48.png 30
|
||||
30 20 20 x1_25/wait-49.png 30
|
||||
30 20 20 x1_25/wait-50.png 30
|
||||
30 20 20 x1_25/wait-51.png 30
|
||||
30 20 20 x1_25/wait-52.png 30
|
||||
30 20 20 x1_25/wait-53.png 30
|
||||
30 20 20 x1_25/wait-54.png 30
|
||||
30 20 20 x1_25/wait-55.png 30
|
||||
30 20 20 x1_25/wait-56.png 30
|
||||
30 20 20 x1_25/wait-57.png 30
|
||||
30 20 20 x1_25/wait-58.png 30
|
||||
30 20 20 x1_25/wait-59.png 30
|
||||
30 20 20 x1_25/wait-60.png 30
|
||||
30 20 20 x1_25/wait-61.png 30
|
||||
30 20 20 x1_25/wait-62.png 30
|
||||
30 20 20 x1_25/wait-63.png 30
|
||||
30 20 20 x1_25/wait-64.png 30
|
||||
30 20 20 x1_25/wait-65.png 30
|
||||
30 20 20 x1_25/wait-66.png 30
|
||||
30 20 20 x1_25/wait-67.png 30
|
||||
30 20 20 x1_25/wait-68.png 30
|
||||
30 20 20 x1_25/wait-69.png 30
|
||||
30 20 20 x1_25/wait-70.png 30
|
||||
30 20 20 x1_25/wait-71.png 30
|
||||
30 20 20 x1_25/wait-72.png 30
|
||||
30 20 20 x1_25/wait-73.png 30
|
||||
30 20 20 x1_25/wait-74.png 30
|
||||
30 20 20 x1_25/wait-75.png 30
|
||||
30 20 20 x1_25/wait-76.png 30
|
||||
36 24 24 x1_5/wait-1.png 30
|
||||
36 24 24 x1_5/wait-2.png 30
|
||||
36 24 24 x1_5/wait-3.png 30
|
||||
36 24 24 x1_5/wait-4.png 30
|
||||
36 24 24 x1_5/wait-5.png 30
|
||||
36 24 24 x1_5/wait-6.png 30
|
||||
36 24 24 x1_5/wait-7.png 30
|
||||
36 24 24 x1_5/wait-8.png 30
|
||||
36 24 24 x1_5/wait-9.png 30
|
||||
36 24 24 x1_5/wait-10.png 30
|
||||
36 24 24 x1_5/wait-11.png 30
|
||||
36 24 24 x1_5/wait-12.png 30
|
||||
36 24 24 x1_5/wait-13.png 30
|
||||
36 24 24 x1_5/wait-14.png 30
|
||||
36 24 24 x1_5/wait-15.png 30
|
||||
36 24 24 x1_5/wait-16.png 30
|
||||
36 24 24 x1_5/wait-17.png 30
|
||||
36 24 24 x1_5/wait-18.png 30
|
||||
36 24 24 x1_5/wait-19.png 30
|
||||
36 24 24 x1_5/wait-20.png 30
|
||||
36 24 24 x1_5/wait-21.png 30
|
||||
36 24 24 x1_5/wait-22.png 30
|
||||
36 24 24 x1_5/wait-23.png 30
|
||||
36 24 24 x1_5/wait-24.png 30
|
||||
36 24 24 x1_5/wait-25.png 30
|
||||
36 24 24 x1_5/wait-26.png 30
|
||||
36 24 24 x1_5/wait-27.png 30
|
||||
36 24 24 x1_5/wait-28.png 30
|
||||
36 24 24 x1_5/wait-29.png 30
|
||||
36 24 24 x1_5/wait-30.png 30
|
||||
36 24 24 x1_5/wait-31.png 30
|
||||
36 24 24 x1_5/wait-32.png 30
|
||||
36 24 24 x1_5/wait-33.png 30
|
||||
36 24 24 x1_5/wait-34.png 30
|
||||
36 24 24 x1_5/wait-35.png 30
|
||||
36 24 24 x1_5/wait-36.png 30
|
||||
36 24 24 x1_5/wait-37.png 30
|
||||
36 24 24 x1_5/wait-38.png 30
|
||||
36 24 24 x1_5/wait-39.png 30
|
||||
36 24 24 x1_5/wait-40.png 30
|
||||
36 24 24 x1_5/wait-41.png 30
|
||||
36 24 24 x1_5/wait-42.png 30
|
||||
36 24 24 x1_5/wait-43.png 30
|
||||
36 24 24 x1_5/wait-44.png 30
|
||||
36 24 24 x1_5/wait-45.png 30
|
||||
36 24 24 x1_5/wait-46.png 30
|
||||
36 24 24 x1_5/wait-47.png 30
|
||||
36 24 24 x1_5/wait-48.png 30
|
||||
36 24 24 x1_5/wait-49.png 30
|
||||
36 24 24 x1_5/wait-50.png 30
|
||||
36 24 24 x1_5/wait-51.png 30
|
||||
36 24 24 x1_5/wait-52.png 30
|
||||
36 24 24 x1_5/wait-53.png 30
|
||||
36 24 24 x1_5/wait-54.png 30
|
||||
36 24 24 x1_5/wait-55.png 30
|
||||
36 24 24 x1_5/wait-56.png 30
|
||||
36 24 24 x1_5/wait-57.png 30
|
||||
36 24 24 x1_5/wait-58.png 30
|
||||
36 24 24 x1_5/wait-59.png 30
|
||||
36 24 24 x1_5/wait-60.png 30
|
||||
36 24 24 x1_5/wait-61.png 30
|
||||
36 24 24 x1_5/wait-62.png 30
|
||||
36 24 24 x1_5/wait-63.png 30
|
||||
36 24 24 x1_5/wait-64.png 30
|
||||
36 24 24 x1_5/wait-65.png 30
|
||||
36 24 24 x1_5/wait-66.png 30
|
||||
36 24 24 x1_5/wait-67.png 30
|
||||
36 24 24 x1_5/wait-68.png 30
|
||||
36 24 24 x1_5/wait-69.png 30
|
||||
36 24 24 x1_5/wait-70.png 30
|
||||
36 24 24 x1_5/wait-71.png 30
|
||||
36 24 24 x1_5/wait-72.png 30
|
||||
36 24 24 x1_5/wait-73.png 30
|
||||
36 24 24 x1_5/wait-74.png 30
|
||||
36 24 24 x1_5/wait-75.png 30
|
||||
36 24 24 x1_5/wait-76.png 30
|
||||
48 32 32 x2/wait-1.png 30
|
||||
48 32 32 x2/wait-2.png 30
|
||||
48 32 32 x2/wait-3.png 30
|
||||
48 32 32 x2/wait-4.png 30
|
||||
48 32 32 x2/wait-5.png 30
|
||||
48 32 32 x2/wait-6.png 30
|
||||
48 32 32 x2/wait-7.png 30
|
||||
48 32 32 x2/wait-8.png 30
|
||||
48 32 32 x2/wait-9.png 30
|
||||
48 32 32 x2/wait-10.png 30
|
||||
48 32 32 x2/wait-11.png 30
|
||||
48 32 32 x2/wait-12.png 30
|
||||
48 32 32 x2/wait-13.png 30
|
||||
48 32 32 x2/wait-14.png 30
|
||||
48 32 32 x2/wait-15.png 30
|
||||
48 32 32 x2/wait-16.png 30
|
||||
48 32 32 x2/wait-17.png 30
|
||||
48 32 32 x2/wait-18.png 30
|
||||
48 32 32 x2/wait-19.png 30
|
||||
48 32 32 x2/wait-20.png 30
|
||||
48 32 32 x2/wait-21.png 30
|
||||
48 32 32 x2/wait-22.png 30
|
||||
48 32 32 x2/wait-23.png 30
|
||||
48 32 32 x2/wait-24.png 30
|
||||
48 32 32 x2/wait-25.png 30
|
||||
48 32 32 x2/wait-26.png 30
|
||||
48 32 32 x2/wait-27.png 30
|
||||
48 32 32 x2/wait-28.png 30
|
||||
48 32 32 x2/wait-29.png 30
|
||||
48 32 32 x2/wait-30.png 30
|
||||
48 32 32 x2/wait-31.png 30
|
||||
48 32 32 x2/wait-32.png 30
|
||||
48 32 32 x2/wait-33.png 30
|
||||
48 32 32 x2/wait-34.png 30
|
||||
48 32 32 x2/wait-35.png 30
|
||||
48 32 32 x2/wait-36.png 30
|
||||
48 32 32 x2/wait-37.png 30
|
||||
48 32 32 x2/wait-38.png 30
|
||||
48 32 32 x2/wait-39.png 30
|
||||
48 32 32 x2/wait-40.png 30
|
||||
48 32 32 x2/wait-41.png 30
|
||||
48 32 32 x2/wait-42.png 30
|
||||
48 32 32 x2/wait-43.png 30
|
||||
48 32 32 x2/wait-44.png 30
|
||||
48 32 32 x2/wait-45.png 30
|
||||
48 32 32 x2/wait-46.png 30
|
||||
48 32 32 x2/wait-47.png 30
|
||||
48 32 32 x2/wait-48.png 30
|
||||
48 32 32 x2/wait-49.png 30
|
||||
48 32 32 x2/wait-50.png 30
|
||||
48 32 32 x2/wait-51.png 30
|
||||
48 32 32 x2/wait-52.png 30
|
||||
48 32 32 x2/wait-53.png 30
|
||||
48 32 32 x2/wait-54.png 30
|
||||
48 32 32 x2/wait-55.png 30
|
||||
48 32 32 x2/wait-56.png 30
|
||||
48 32 32 x2/wait-57.png 30
|
||||
48 32 32 x2/wait-58.png 30
|
||||
48 32 32 x2/wait-59.png 30
|
||||
48 32 32 x2/wait-60.png 30
|
||||
48 32 32 x2/wait-61.png 30
|
||||
48 32 32 x2/wait-62.png 30
|
||||
48 32 32 x2/wait-63.png 30
|
||||
48 32 32 x2/wait-64.png 30
|
||||
48 32 32 x2/wait-65.png 30
|
||||
48 32 32 x2/wait-66.png 30
|
||||
48 32 32 x2/wait-67.png 30
|
||||
48 32 32 x2/wait-68.png 30
|
||||
48 32 32 x2/wait-69.png 30
|
||||
48 32 32 x2/wait-70.png 30
|
||||
48 32 32 x2/wait-71.png 30
|
||||
48 32 32 x2/wait-72.png 30
|
||||
48 32 32 x2/wait-73.png 30
|
||||
48 32 32 x2/wait-74.png 30
|
||||
48 32 32 x2/wait-75.png 30
|
||||
48 32 32 x2/wait-76.png 30
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user