SyMo (RU)
SyMo is a lightweight GTK Linux tray app for monitoring system metrics, controlling power actions, and sending notifications to Telegram/Discord.
- Tray monitor for Linux desktop (CPU/RAM/Swap/Disk/Network/Uptime).
- Quick power actions: shutdown, reboot, lock, timer.
- Notifications from Discord, Telegram.
- Live system monitoring:
- CPU load and temperature;
- RAM and swap usage;
- disk usage;
- network speed (download/upload);
- uptime;
- keyboard and mouse activity counters.
- Configurable tray menu:
- show/hide menu items;
- reorder menu items by drag-and-drop in Settings.
- Per-metric graph windows (CPU, RAM, Swap, Disk, Network, Keyboard, Mouse).
- Interactive controls in graph windows:
- mouse wheel: horizontal zoom;
- left mouse button drag: horizontal pan;
- mouse hover: tooltip near cursor with timestamp and metric values for the nearest point.
- Interactive controls in graph windows:
- Power controls:
- shutdown;
- reboot;
- lock screen;
- delayed execution with scheduler/timer.
- Notifications:
- Telegram bot integration;
- Discord webhook integration.
- Telegram bot commands:
/status— current system status;/screenshot— take a desktop screenshot and send it to Telegram.
- Multi-language interface.
- 🇷🇺 Russian (
ru) - 🇬🇧 English (
en) - 🇨🇳 Chinese (
cn) - 🇩🇪 German (
de) - 🇮🇹 Italian (
it) - 🇪🇸 Spanish (
es) - 🇹🇷 Turkish (
tr) - 🇫🇷 French (
fr)
SyMo/
├─ app.py # thin launcher
├─ app_core/ # core application logic
│ ├─ app.py # runtime, tray, menu, graphs, updates
│ ├─ dialogs.py # settings dialog
│ ├─ power_control.py # power commands and timers
│ ├─ system_usage.py # system metrics collection
│ ├─ click_tracker.py # keyboard/mouse counters
│ ├─ localization.py # i18n helpers
│ ├─ language.py # translation dictionaries
│ ├─ constants.py # constants and config/log paths
│ └─ logging_utils.py # log rotation helpers
├─ notifications/
│ ├─ telegram.py # Telegram notifier + command polling
│ └─ discord.py # Discord webhook notifier
├─ tests/ # pytest suites
├─ build.sh # Nuitka build (standalone + onefile)
├─ uninstall-symo.sh # removes artifacts/desktop files/binaries
├─ requirements.txt
├─ logo.png
├─ img.png
└─ README.md
- Linux desktop environment with GTK3 + AppIndicator (or Ayatana AppIndicator).
- Python 3.10+ (recommended).
pip install -r requirements.txtpython3 app.pysudo apt update
sudo apt install -y \
python3-gi python3-gi-cairo gir1.2-gtk-3.0 gir1.2-appindicator3-0.1 \
gnome-shell-extension-appindicator \
build-essential libgirepository1.0-dev gir1.2-glib-2.0 \
gobject-introspection pkg-config libcairo2-dev \
gnome-screenshot scrot grim imagemagick
pip install -r requirements.txtRun:
chmod +x build.sh
./build.shCheck output:
ls -la SyMo-bundlechmod +x uninstall-symo.sh
./uninstall-symo.shpytest -q- Author: OlegEgoism
- Repository: https://github.com/OlegEgoism/SyMo
- Telegram: @OlegEgoism
- Email: olegpustovalov220@gmail.com

