Installation - Student
Installation - Student
Binaries
You can download the Franklyn Sentinel binaries directly from the Releases.
Ubuntu (24.05+) / Debian (12+)
Add the Franklyn APT repository to install Franklyn Sentinel.
curl -fsSL https://franklyn.htl-leonding.ac.at/repo/gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/franklyn.gpg
echo "deb [signed-by=/etc/apt/keyrings/franklyn.gpg] https://franklyn.htl-leonding.ac.at/repo stable main" | sudo tee /etc/apt/sources.list.d/franklyn.list
sudo apt updateThen you can install franklyn-sentinel.
sudo apt install franklyn-sentinelDevelopment version
To install the development version instead:
curl -fsSL https://franklyn.htl-leonding.ac.at/repo/gpg.key | sudo gpg --dearmor -o /etc/apt/keyrings/franklyn.gpg
echo "deb [signed-by=/etc/apt/keyrings/franklyn.gpg] https://franklyn.htl-leonding.ac.at/repo dev main" | sudo tee /etc/apt/sources.list.d/franklyn.list
sudo apt update
sudo apt install franklyn-sentinelnix
put this into your flake.nix:
{
inputs = {
franklyn = {
url = "github:hyprwm/hyprland-plugins";
inputs.nixpkgs.follows = "nixpkgs";
};
# ...
}
}
# anwenden in nixos
environment.systemPackages = [
inputs.franklyn.packages.${system}.franklyn-sentinel
]Windows
Download the newest available windows portable from our Releases. Then unzip the directory and navigate to it in a terminal.
cd Downloads/franklyn-sentinel-[VERSION]-x86_64-windows-portableYou can now execute franklyn.exe in the terminal.
franklyn.exeTo ensure sentinel works, DO NOT double-click franklyn.exe, instead open a terminal and execute franklyn.exe
Last updated on • J.H.F.