WallPyPer/docs/russian.md

82 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2022-06-20 04:52:32 +00:00
# WallPyPer
WallPyPer - это маленькая утилита, которая работает
2022-06-20 04:52:32 +00:00
с помощью [foo-Wallpaper-Feh-Gif ](https://github.com/thomas10-10/foo-Wallpaper-Feh-Gif) и [feh](https://github.com/derf/feh).
WallPyPer умеет работать как с картинками так с гифками!
## Установка
Зависимости
* [feh](https://github.com/derf/feh)
* [foo-Wallpaper-Feh-Gif ](https://github.com/thomas10-10/foo-Wallpaper-Feh-Gif)
2022-08-06 11:23:02 +00:00
* [pytomlpp](https://github.com/bobfang1992/pytomlpp)
2022-06-26 18:39:53 +00:00
**feh** скорее всего уже есть в вашем списке репозиториев.
Debian/Ubuntu:
```
sudo apt install feh
```
Arch:
```
pacman -S feh
```
**foo-WallPaper-Feh-Gif** это всего лишь Bash скрипт его можно скачать [тут](https://github.com/thomas10-10/foo-Wallpaper-Feh-Gif/blob/master/back4.sh).
```
curl -L https://raw.githubusercontent.com/thomas10-10/foo-Wallpaper-Feh-Gif/master/install.sh | bash
```
2022-08-06 11:23:02 +00:00
---
Установите pytomlpp
```
pip install pytomlpp
```
2022-08-06 11:23:02 +00:00
---
2022-08-06 11:23:02 +00:00
После этого скачайте WallPyPer и установите его.
```
2022-08-06 11:23:02 +00:00
git clone https://github.com/KarimullinArthur/WallPyPer.git
2022-08-06 11:23:02 +00:00
cd WallPyPer
2022-08-06 11:23:02 +00:00
chmod +x install.sh
2022-08-06 11:23:02 +00:00
./install.sh
```
2022-07-03 12:04:20 +00:00
## Настройка
Создайте конфигурационный факл в ~/.config/wallpyper/config
2022-08-06 11:23:02 +00:00
Пример:
2022-07-03 12:04:20 +00:00
```
2022-08-06 11:23:02 +00:00
# WallPyPer
default_theme = "main"
2022-07-03 12:04:20 +00:00
2022-08-06 11:23:02 +00:00
[new]
type = "static"
random = true
path = "~/.bg/"
[main]
type = "static"
url = "~/.bg/1.jpg"
[dynamic]
type = "dynamic"
path = "~/.bg/"
delay = "10:00"
```
2022-07-03 12:04:20 +00:00
## Автозагрузка
Для **i3wm** добавте в свой ~/.config/i3/config строчку:
```
exec wallpyper
2022-08-06 11:23:02 +00:00
```