Universal Linux Settings Application
Find a file
2024-06-07 01:48:05 +02:00
.direnv startup: Add spinloop until daemon is ready 2024-06-04 23:37:15 +02:00
.github/workflows chore: rename ReSet.desktop 2024-06-07 01:48:05 +02:00
assets chore: Remove unused files 2023-12-18 16:15:43 +01:00
debian/DEBIAN chore: Bump version in packages 2024-06-07 01:33:10 +02:00
flatpak flatpak: add debug version 2024-05-31 18:38:44 +02:00
nix chore: change name to ReSet to avoid conflicts 2024-06-07 00:28:40 +02:00
src startup: Add spinloop until deamon is ready 2024-06-05 00:43:23 +02:00
test_plugin chore: bump versions of dependencies, small refactor on errors -> use macros 2024-05-06 20:47:26 +02:00
.envrc nix: use flake 2024-05-20 21:23:58 +02:00
.gitignore chore: Readd cargo.lock 2024-04-24 11:26:54 +02:00
build.rs Add CSS to button 2023-11-02 14:14:07 +01:00
Cargo.lock chore: Bump version 2024-06-07 01:32:37 +02:00
Cargo.toml chore: Bump version 2024-06-07 01:32:37 +02:00
flake.lock chore: rustup nightly breaks nixos with ldd -> rollback version of rust 2024-05-20 22:07:35 +02:00
flake.nix chore: change name to ReSet to avoid conflicts 2024-06-07 00:28:40 +02:00
LICENSE Initial commit 2023-09-15 10:53:16 +02:00
PKGBUILD pkgbuild: fixup names 2024-06-07 01:39:45 +02:00
README.md readme: update to new name 2024-06-07 00:32:58 +02:00
ReSet.desktop chore: rename ReSet.desktop 2024-06-07 01:48:05 +02:00

ReSet

Logo of ReSet

A window manager/compositor agnostic settings application for Linux written in rust and gtk4.

Features

  • Bluetooth via bluez
  • Audio via PulseAudio
  • Wi-Fi via NetworkManager

Screenshots

Audio

Audio Screenshot of ReSet

Wi-Fi

Wi-Fi Screenshot of ReSet

Bluetooth

Bluetooth Screenshot of ReSet

Plugins

ReSet features a plugin system by loading dynamic libraries for both the daemon and the ReSet graphical user interface. A list of official plugins and their documentation can be found at ReSet-Plugins.

Packaging

ReSet is available with the following packaging solutions:

Flatpak

We are currently not published on flatpak due to issues with permissions. This is being worked on...

Installation: Download the flatpak package from the release and install with the terminal.

flatpak install --user reset.flatpak

Arch Package

Manually: Download the package from the releases tab and install it with pacman.

sudo pacman -U /path/to/reset

Debian Package(Ubuntu 23.04 dependencies)

Download the package from the releases tab and install it with apt.

sudo apt install ./path/to/reset

NixOS/Home-manager

ReSet offers a flake with a home-manager module which you can use to declaratively install ReSet and plugins. Here is an example configuration:

#inputs
reset.url = "github:Xetibo/ReSet";
reset-plugins.url = "github:Xetibo/ReSet-Plugins";

#installation and configuration
  programs.ReSet.enable = true;
  programs.ReSet.config.plugins = [
    inputs.reset-plugins.packages."x86_64-linux".monitor
    inputs.reset-plugins.packages."x86_64-linux".keyboard
  ];
  programs.ReSet.config.plugin_config = {
    #custom toml config
    Keyboard = {
      path = "/home/user/.config/reset/keyboard.conf";
    };
  };

crates

cargo install reset

Compiled Binary

The compiled binary is provided in the releases.

Usage

Besides starting the application itself, a standalone daemon version (ReSet-Daemon) also exists, which is what provides the functionality for ReSet.
It is therefore possible to use a different application as well for interacting with the daemon.

By default, the daemon is integrated into ReSet and is started automatically if no other daemon is found.

Roadmap and Notes

  • Accessibility Features
  • Better Error handling
  • Customizable shortcuts
  • and more

notes

This application was developed as a semester project/bachelor thesis for the Eastern Switzerland University of Applied Sciences.