Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mrjackwills/obliqoro

A cross-platform tauri gui where Oblique Strategies meets Pomodoro
https://github.com/mrjackwills/obliqoro

async gui oblique-strategies pomodoro rust tauri tokio typescript vue

Last synced: 3 days ago
JSON representation

A cross-platform tauri gui where Oblique Strategies meets Pomodoro

Awesome Lists containing this project

README

        



Obliqoro



Oblique Strategies
meets Pomodoro


Built in Rust,
Vue3,
and Typescript,
using Tauri,
Vuetify,
and SQLite


### Screenshots




 










### About

Obliqoro is an open source, cross platform, graphical application, that combines the creative approach of Oblique Strategies with the time management system of the Pomodoro Technique.

### Features

+ Customisable session and break times
+ Saving of data to SQLite database
+ System tray icon and menu
+ Cross-platform compatibility (Windows and Linux)
+ Overlay window on top of other windows
+ System tray menu inactive during breaks
+ Automated build with `.deb`, `.AppImage`, and `.msi` output, via GitHub Action
+ Launch on boot

### Download + Install

See the pre-built binaries

### Todo

+ [ ] Code sign the application
+ [ ] Pause on no/low cpu usage - user controllable setting
+ [ ] Notify user if new version available
+ [ ] Translations
+ [ ] Saving strategies into SQLite and enabling the addition of new custom strategies
+ [ ] Statistics for the number of sessions worked
+ [ ] Ability to display on multiple monitors
+ [ ] General code refactoring
+ [ ] Testing on Mac
+ [ ] Password for exiting a long break?
+ [ ] Setting to enable writing logs to file when on production version

### Development

Requires Node & Rust to be installed

```bash
git clone https://www.github.com/mrjackwills/obliqoro.git

npm install
cd src-tauri
cargo install
cargo install tauri-cli

```

Requirements for developing on linux:

```bash
sudo apt update
sudo apt install libwebkit2gtk-4.0-dev \
build-essential \
curl \
wget \
libssl-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
librsvg2-dev
```
### arm64 cross compilation

tauri.conf.json:
```json
"targets": ["deb", "msi", "app", "dmg", "updater"],
```

```shell
rustup target add aarch64-unknown-linux-gnu
sudo apt install gcc-aarch64-linux-gnu
```

nano ~/.cargo/config.toml
```toml
[target.aarch64-unknown-linux-gnu]
linker = "aarch64-linux-gnu-gcc"
```

```shell
sudo dpkg --add-architecture arm64

sudo apt-get update && sudo apt-get upgrade -y

sudo apt install libwebkit2gtk-4.0-dev:arm64

export PKG_CONFIG_SYSROOT_DIR=/usr/aarch64-linux-gnu/

cargo tauri build --target aarch64-unknown-linux-gnu
```