• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

data/H19-Dec-2021-590511

src/H03-May-2022-22,54917,755

AUTHORSH A D26-Mar-201926 32

COPYINGH A D04-May-201931.7 KiB623513

ChangeLogH A D18-Dec-202126.4 KiB710683

ChangesH A D08-Jan-20193.1 KiB5957

INSTALLH A D19-Dec-202115.4 KiB369287

Makefile.amH A D19-Dec-20211.1 KiB317

Makefile.inH A D19-Dec-202125.5 KiB816699

READMEH A D29-Nov-202114 21

README.mdH A D17-Dec-20211.4 KiB5833

aclocal.m4H A D19-Dec-202151.3 KiB1,4271,291

addcopyright.shH A D19-Dec-20212.2 KiB6435

bootstrapH A D19-Dec-20211.5 KiB4719

compileH A D19-Dec-20217.2 KiB349259

config.h.inH A D19-Dec-20213.2 KiB12181

configureH A D19-Dec-2021211.8 KiB7,4736,126

configure.acH A D19-Dec-20212.8 KiB8971

depcompH A D19-Dec-202123 KiB792502

dependenciesH A D24-Nov-2021101 1310

getversionH A D28-Nov-2021150 64

install-shH A D19-Dec-202115 KiB542352

missingH A D19-Dec-20216.7 KiB216143

prevent-remakesH A D16-May-2019571 186

simplemake.shH A D19-Dec-20215.1 KiB12952

test-driverH A D19-Dec-20214.8 KiB15489

README

1see README.md
2

README.md

1# Xsnow: let it snow on your desktop
2## General
3
4Xsnow is derived from Rick Jansen's [xsnow-1.42](https://janswaal.home.xs4all.nl/Xsnow/).
5It now runs in many desktop environments: Gnome, KDE, FVWM, etc.
6
7Find [here](https://ratrabbit.nl/ratrabbit/xsnow/index.html) more information
8about this release.
9
10## Compilation and installation
11
12The file `dependencies` lists the dependencies. These should be
13installed before compiling xsnow.
14
15     tar xf xsnow-<version>.tar.gz
16     cd xsnow-<version>
17     ./configure
18     make
19     sudo make install
20
21Xsnow will be installed in /usr/local/games as `xsnow`.
22
23For users of debian distro's: you can download the appropriate
24.deb file and install with:
25
26     sudo apt install ./xsnow_<version>_<arch>.deb
27
28Raspberry pi - Raspian users: choose the .deb with arch=armhf (32 bit) or arch=arm64 (64 bit).
29
30If the above recipes do not work, you can try and run the
31script 'simplemake.sh':
32
33     ./simplemake.sh
34
35If problems persist, you can adapt simplemake.sh.
36
37## Self replication
38
39When not disabled in `./configure`, xsnow will be build as a self-replicating
40program, self-replicating activated by the flag `-selfrep`.
41
42To create a tar ball:
43
44     xsnow -selfrep > xsnow.tar.gz
45
46To create the source ball directly:
47
48     xsnow -selfrep | tar zxf -
49
50If you changed something, run `./configure` or `make dist` to refresh the tar ball,
51otherwise `xsnow -selfrep` will create the old version of the source.
52
53
54Have fun!
55
56
57
58