Compare commits

...

5 Commits

Author SHA1 Message Date
e720d2ce38
Update README.md 2021-03-15 04:09:07 +03:00
97e6dfeb41 add example 2021-03-15 02:24:10 +03:00
9641838476 Update README.md 2021-03-15 02:05:32 +03:00
2bb10688d6 fix typo when create folder. 2021-03-15 00:43:07 +03:00
be54587f00 fixed typo when copying license file. 2021-03-15 00:36:49 +03:00
3 changed files with 62 additions and 3 deletions

View File

@ -1,2 +1,57 @@
# TG-Avatar-Alteration
Service that automatically changes your telegram avatar during the day.
# Description
The service is a small python3 script (and config for it) that changes the avatar and systemd timer that is configured to run this script every minute.
For the initial session setup, a bash wrapper for the python script is used.
# Requirements
**Any OS from the list:**
- RHEL7;
- RHEL8;
- CentOS7;
- CentOS8.
# Install
1. [Download the rpm package](https://github.com/GenZmeY/TG-Avatar-Alteration/releases) for your operating system or build it yourself;
2. Copy it to the target system;
3. Install the package:
`yum install <rpm_filename> # RHEL7/CentOS7`
or
`dnf install <rpm_filename> # RHEL8/CentOS8`
# Build (manual)
1. Install build dependencies:
`yum install git rpm-build # RHEL7/CentOS7`
or
`dnf install git rpm-build # RHEL8/CentOS8`
2. Download sources:
`git clone https://github.com/GenZmeY/TG-Avatar-Alteration ~/rpmbuild`
3. Build packages:
`rpmbuild ~/rpmbuild/SPECS/tg-avatar-alteration.spec`
4. The source package will be here:
`~/rpmbuild/SRPMS/`
The installation package will be here:
`~/rpmbuild/RPMS/noarch/`
# Setup & Usage
0. Open config `/etc/tg-avatar-alteration/config.py` and edit it:
1. Get **API_ID** and **API_HASH** [here](https://my.telegram.org/apps), add them to config.
2. Change **PHONE** to your phone number (you will receive a confirmation code to this number during the initial session setup).
3. Change **TIMEZONE** to your [timezone](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones).
4. Change **IMG_DIR** to the directory where your avatars will be located.
5. In the **IMG_EXT** parameter, specify the extension for your avatar files.
6. Put 1440 images (one picture for every minute) to the directory you previously specified in **IMG_DIR**. Images must have names in the range 0000 - 1339 (eg 0000.png, 0001.png, etc). 0000 corresponds to the first minute of the day, 0001 corresponds to the second minute of the day, and so on.
7. If you need to adjust the display time, you can use the **OFFSET** parameter in the config. It is added to the file index. For example, if you want the image 0060 to be displayed instead of 0000 in the first minute of the day, you need to set OFFSET="60".
8. Run the `tg-avatar-alteration` command to establish a session.
9. Start a timer that will change your avatar every minute:
`sudo systemctl start tg-avatar-alteration.timer`
10. If you need the timer to work after a reboot, enable it:
`sudo systemctl enable tg-avatar-alteration.timer`
# Now you can turn your avatar into something like this:
![](example.gif)
# License
[GNU GPLv3](LICENSE)

View File

@ -4,7 +4,7 @@
Name: tg-avatar-alteration
Version: 1.0.1
Release: 1%{dist}
Release: 2%{dist}
Summary: telegram avatar alteration
Group: Applications/Communications
License: GNU GPLv3
@ -41,7 +41,7 @@ install -d %{buildroot}/%{_unitdir}
install -d %{buildroot}/%{_datadir}/%{name}
install -d %{buildroot}/%{_sysconfdir}/%{name}
install -d %{buildroot}/%{_localstatedir}/cache/%{name}
install -d %{buildroot}/%{_datadir}/licenses/%{name}/*
install -d %{buildroot}/%{_datadir}/licenses/%{name}
install -m 644 %{SOURCE0} %{buildroot}/%{_bindir}
install -m 644 %{SOURCE1} %{buildroot}/%{_datadir}/%{name}
@ -49,7 +49,7 @@ install -m 644 %{SOURCE2} %{buildroot}/%{_unitdir}
install -m 644 %{SOURCE3} %{buildroot}/%{_unitdir}
install -m 644 %{SOURCE4} %{buildroot}/%{_sysconfdir}/%{name}
install -m 644 %{SOURCE5} %{buildroot}/%{_datadir}/%{name}
install -m 644 %{SOURCE5} %{buildroot}/%{_datadir}/licenses/%{name}/*
install -m 644 %{SOURCE6} %{buildroot}/%{_datadir}/licenses/%{name}
%clean
rm -rf $RPM_BUILD_ROOT
@ -99,8 +99,12 @@ if [[ "$1" -eq 0 ]]; then # Uninstall
fi
%changelog
* Mon Mar 15 2021 GenZmeY <genzmey@gmail.com> - 1.0.1-2
- Fixed typo when copying license file.
* Tue Mar 02 2021 GenZmeY <genzmey@gmail.com> - 1.0.1-1
- Removed the gap when changing the avatar.
* Mon Mar 01 2021 GenZmeY <genzmey@gmail.com> - 1.0.0-1
- first version.

BIN
example.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 MiB