feat: lock my drawing tablet to my main monitor
This commit is contained in:
parent
cac7955f65
commit
f6e7daf682
|
@ -83,7 +83,6 @@ monitor = DP-3, 2560x1440@165, 0x0, 1
|
||||||
|
|
||||||
# Execute your favorite apps at launch
|
# Execute your favorite apps at launch
|
||||||
exec-once = ~/.local/share/scripts/hyprland/start_services.sh
|
exec-once = ~/.local/share/scripts/hyprland/start_services.sh
|
||||||
exec-once = xrandr --output DP-3 --primary
|
|
||||||
|
|
||||||
# Source a file (multi-file configs)
|
# Source a file (multi-file configs)
|
||||||
# source = ~/.config/hypr/myColors.conf
|
# source = ~/.config/hypr/myColors.conf
|
||||||
|
@ -109,6 +108,10 @@ input {
|
||||||
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
sensitivity = 0 # -1.0 - 1.0, 0 means no modification.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
device:wacom-bamboo-one-m-pen {
|
||||||
|
output = DP-3
|
||||||
|
}
|
||||||
|
|
||||||
general {
|
general {
|
||||||
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
# See https://wiki.hyprland.org/Configuring/Variables/ for more
|
||||||
|
|
||||||
|
|
154
programs/openrct2.nix
Normal file
154
programs/openrct2.nix
Normal file
|
@ -0,0 +1,154 @@
|
||||||
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchFromGitHub
|
||||||
|
|
||||||
|
, SDL2
|
||||||
|
, cmake
|
||||||
|
, curl
|
||||||
|
, discord-rpc
|
||||||
|
, duktape
|
||||||
|
, flac
|
||||||
|
, fontconfig
|
||||||
|
, freetype
|
||||||
|
, gbenchmark
|
||||||
|
, icu
|
||||||
|
, jansson
|
||||||
|
, libGLU
|
||||||
|
, libiconv
|
||||||
|
, libogg
|
||||||
|
, libpng
|
||||||
|
, libpthreadstubs
|
||||||
|
, libvorbis
|
||||||
|
, libzip
|
||||||
|
, nlohmann_json
|
||||||
|
, openssl
|
||||||
|
, pkg-config
|
||||||
|
, speexdsp
|
||||||
|
, zlib
|
||||||
|
}:
|
||||||
|
|
||||||
|
let
|
||||||
|
openrct2-version = "0.4.6";
|
||||||
|
|
||||||
|
# Those versions MUST match the pinned versions within the CMakeLists.txt
|
||||||
|
# file. The REPLAYS repository from the CMakeLists.txt is not necessary.
|
||||||
|
objects-version = "1.3.11";
|
||||||
|
openmsx-version = "1.3.1";
|
||||||
|
opensfx-version = "1.0.3";
|
||||||
|
title-sequences-version = "0.4.6";
|
||||||
|
|
||||||
|
openrct2-src = fetchFromGitHub {
|
||||||
|
owner = "OpenRCT2";
|
||||||
|
repo = "OpenRCT2";
|
||||||
|
rev = "v${openrct2-version}";
|
||||||
|
sha256 = "sha256-HQrYdCSYqIRhqeaJwyWwPQ9mWDiudTGK6IWxRmcuf44=";
|
||||||
|
};
|
||||||
|
|
||||||
|
objects-src = fetchFromGitHub {
|
||||||
|
owner = "OpenRCT2";
|
||||||
|
repo = "objects";
|
||||||
|
rev = "v${objects-version}";
|
||||||
|
sha256 = "sha256-fA2Kz4GALu6IP7ulbwpAFt3dz6NCPgyB0CWy5uOLBQY=";
|
||||||
|
};
|
||||||
|
|
||||||
|
openmsx-src = fetchFromGitHub {
|
||||||
|
owner = "OpenRCT2";
|
||||||
|
repo = "OpenMusic";
|
||||||
|
rev = "v${openmsx-version}";
|
||||||
|
sha256 = "sha256-bsm95Z/Xsesqs7SQjG4JyMUJauy/ooGBSoO5J+A8KOg=";
|
||||||
|
};
|
||||||
|
|
||||||
|
opensfx-src = fetchFromGitHub {
|
||||||
|
owner = "OpenRCT2";
|
||||||
|
repo = "OpenSoundEffects";
|
||||||
|
rev = "v${opensfx-version}";
|
||||||
|
sha256 = "sha256-AMuCpq1Hszi2Vikto/cX9g81LwBDskaRMTLxNzU0/Gk=";
|
||||||
|
};
|
||||||
|
|
||||||
|
title-sequences-src = fetchFromGitHub {
|
||||||
|
owner = "OpenRCT2";
|
||||||
|
repo = "title-sequences";
|
||||||
|
rev = "v${title-sequences-version}";
|
||||||
|
sha256 = "sha256-HWp2ecClNM/7O3oaydVipOnEsYNP/bZnZFS+SDidPi0=";
|
||||||
|
};
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
pname = "openrct2";
|
||||||
|
version = openrct2-version;
|
||||||
|
|
||||||
|
src = openrct2-src;
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
SDL2
|
||||||
|
curl
|
||||||
|
discord-rpc
|
||||||
|
duktape
|
||||||
|
flac
|
||||||
|
fontconfig
|
||||||
|
freetype
|
||||||
|
gbenchmark
|
||||||
|
icu
|
||||||
|
jansson
|
||||||
|
libGLU
|
||||||
|
libiconv
|
||||||
|
libogg
|
||||||
|
libpng
|
||||||
|
libpthreadstubs
|
||||||
|
libvorbis
|
||||||
|
libzip
|
||||||
|
nlohmann_json
|
||||||
|
openssl
|
||||||
|
speexdsp
|
||||||
|
zlib
|
||||||
|
];
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DDOWNLOAD_OBJECTS=OFF"
|
||||||
|
"-DDOWNLOAD_OPENMSX=OFF"
|
||||||
|
"-DDOWNLOAD_OPENSFX=OFF"
|
||||||
|
"-DDOWNLOAD_TITLE_SEQUENCES=OFF"
|
||||||
|
];
|
||||||
|
|
||||||
|
env.NIX_CFLAGS_COMPILE = toString [
|
||||||
|
# Needed with GCC 12
|
||||||
|
"-Wno-error=maybe-uninitialized"
|
||||||
|
];
|
||||||
|
|
||||||
|
postUnpack = ''
|
||||||
|
mkdir -p $sourceRoot/data/assetpack
|
||||||
|
|
||||||
|
cp -r ${objects-src} $sourceRoot/data/object
|
||||||
|
cp -r ${openmsx-src} $sourceRoot/data/assetpack/openrct2.music.alternative.parkap
|
||||||
|
cp -r ${opensfx-src} $sourceRoot/data/assetpack/openrct2.sound.parkap
|
||||||
|
cp -r ${title-sequences-src} $sourceRoot/data/sequence
|
||||||
|
'';
|
||||||
|
|
||||||
|
preConfigure =
|
||||||
|
# Verify that the correct version of each third party repository is used.
|
||||||
|
(let
|
||||||
|
versionCheck = cmakeKey: version: ''
|
||||||
|
grep -q '^set(${cmakeKey}_VERSION "${version}")$' CMakeLists.txt \
|
||||||
|
|| (echo "${cmakeKey} differs from expected version!"; exit 1)
|
||||||
|
'';
|
||||||
|
in
|
||||||
|
(versionCheck "OBJECTS" objects-version) +
|
||||||
|
(versionCheck "OPENMSX" openmsx-version) +
|
||||||
|
(versionCheck "OPENSFX" opensfx-version) +
|
||||||
|
(versionCheck "TITLE_SEQUENCE" title-sequences-version));
|
||||||
|
|
||||||
|
preFixup = "ln -s $out/share/openrct2 $out/bin/data";
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Open source re-implementation of RollerCoaster Tycoon 2 (original game required)";
|
||||||
|
homepage = "https://openrct2.io/";
|
||||||
|
downloadPage = "https://github.com/OpenRCT2/OpenRCT2/releases";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
maintainers = with maintainers; [ oxzi ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue