36
|
1 # bing4desktop
|
|
2
|
|
3 ## Start
|
|
4
|
|
5 To download the latest version, type in terminal:
|
38
|
6
|
36
|
7 ```
|
|
8 git clone https://gitlab.com/pietraszczyk/bing4desktop.git
|
38
|
9
|
|
10 # You still need to install dependencies to run:
|
|
11
|
|
12
|
|
13 # Fedora:
|
|
14
|
|
15 sudo dnf install python3-pillow-tk python3-requests python3-tkinter python3-pystray make
|
|
16
|
|
17
|
|
18 #OpenSUSE:
|
36
|
19
|
|
20
|
38
|
21 sudo zypper in python-Pillow python3-requests python3-tk make
|
|
22
|
|
23 # except that you will have to install the 'pystray' package via pip:
|
|
24
|
|
25 pip3 install pystray
|
|
26
|
|
27
|
|
28 # Ubuntu:
|
|
29
|
|
30 sudo apt install python3-requests python3-tk python3-pil.imagetk python3-pystray make
|
|
31
|
|
32
|
|
33 #Arch:
|
|
34
|
|
35 pacman -S python-pillow python-requests tk
|
36
|
36 ```
|
|
37
|
38
|
38 source archive 'pystarce' should be downloaded from the [AUR] repository (https://aur.archlinux.org/packages/python-pystray) along with PKGBUILD, and build the package with the command 'makepkg'.
|
36
|
39
|
|
40
|
|
41
|
|
42 Running on a trial basis
|
|
43
|
|
44 For a trial run before installation, you can run the application with the command:
|
38
|
45
|
36
|
46 ./bing4desktop.py
|
38
|
47
|
36
|
48
|
|
49
|
|
50 Installation on file system:
|
|
51
|
|
52 ```
|
38
|
53 # Arch, Fedora and OpenSUSE:
|
|
54
|
36
|
55 make install
|
38
|
56
|
36
|
57
|
38
|
58 # Debian/Ubuntu:
|
|
59
|
36
|
60 make -f Makefile.debian
|
|
61 ```
|
|
62
|
|
63
|
|
64 ## Finish
|
|
65
|
|
66 First startup - manual and after reloading the system - automatic
|
|
67
|
|
68 (Cinnamon) Menu->Preferences->Bing4Desktop
|
|
69
|
|
70
|
|
71 In addition to Ubuntu and Debian, you should allow applications to autostart in the
|
|
72
|
|
73 (Cinnamon) Menu→Preferences→System Settings→Startup Programs.
|
|
74
|
|
75
|
|
76 Have a nice slide !
|
|
77
|
|
78
|
|
79
|
|
80
|
|
81 De installation:
|
|
82 ```
|
38
|
83 #Fedora, Arch, OpenSUSE:
|
|
84
|
|
85 sudo make uninstall
|
|
86
|
|
87
|
|
88 #Ubuntu/Debian
|
|
89
|
|
90 sudo make -f Makefile.debian uninstall
|
36
|
91 ```
|
38
|
92
|