Compare commits
2 commits
78dceb8aab
...
7631eee402
Author | SHA1 | Date | |
---|---|---|---|
7631eee402 | |||
0af2140e03 |
4 changed files with 61 additions and 7 deletions
|
@ -10,14 +10,14 @@
|
|||
"control-center-margin-right": 8,
|
||||
"control-center-margin-left": 8,
|
||||
"control-center-width": 500,
|
||||
"control-center-height": 900,
|
||||
"control-center-height": 1000,
|
||||
"fit-to-screen": false,
|
||||
|
||||
"layer": "top",
|
||||
"control-center-layer": "top",
|
||||
"cssPriority": "user",
|
||||
"notification-icon-size": 64,
|
||||
"notification-body-image-height": 100,
|
||||
"notification-body-image-height": 300,
|
||||
"notification-body-image-width": 200,
|
||||
"notification-inline-replies": true,
|
||||
"timeout": 10,
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
|
||||
/* Dracula Theme */
|
||||
/* https://gist.github.com/MrRoy/3a4a0b1462921e78bf667e1b36697268 */
|
||||
@define-color foreground rgb(248, 248, 242);
|
||||
|
@ -12,8 +11,6 @@
|
|||
transition: all 200ms ease;
|
||||
outline: none;
|
||||
margin-bottom: 4px;
|
||||
margin-right: 13px;
|
||||
margin-top: 8px;
|
||||
border-radius: 30px;
|
||||
}
|
||||
|
||||
|
@ -95,11 +92,12 @@
|
|||
.notification-default-action,
|
||||
.notification-action {
|
||||
padding: 4px;
|
||||
margin: 0;
|
||||
margin: 0px;
|
||||
box-shadow: none;
|
||||
background: @current-line;
|
||||
border: 2px solid @accent;
|
||||
color: @foreground;
|
||||
min-height: 40px;
|
||||
}
|
||||
|
||||
.notification-default-action:hover,
|
||||
|
|
|
@ -72,10 +72,12 @@
|
|||
exec env SUDO_ASKPASS=${pkgs.plasma5Packages.ksshaskpass}/bin/${pkgs.plasma5Packages.ksshaskpass.pname} sudo -k -EA "${gparted}/bin/${gparted.pname}" "$@"
|
||||
'')
|
||||
|
||||
(with import <nixpkgs> {}; callPackage ../overlays/tutanota.nix {})
|
||||
swayosd
|
||||
blueberry
|
||||
libayatana-appindicator
|
||||
papirus-icon-theme
|
||||
steam-run
|
||||
qt5.qtwayland
|
||||
qt6.qtwayland
|
||||
httrack
|
||||
|
@ -113,7 +115,6 @@
|
|||
rofi-wayland
|
||||
networkmanagerapplet
|
||||
nextcloud-client
|
||||
tutanota-desktop
|
||||
galaxy-buds-client
|
||||
swaynotificationcenter
|
||||
swayidle
|
||||
|
|
55
nixos/overlays/tutanota.nix
Normal file
55
nixos/overlays/tutanota.nix
Normal file
|
@ -0,0 +1,55 @@
|
|||
{ lib
|
||||
, pkgs
|
||||
, stdenv
|
||||
, appimageTools
|
||||
, makeWrapper
|
||||
, fetchurl
|
||||
, libGL
|
||||
, libsecret
|
||||
, xorg
|
||||
, ffmpeg
|
||||
, curl
|
||||
, alsa-lib
|
||||
, udev
|
||||
}:
|
||||
|
||||
let
|
||||
pname = "tutanota-desktop";
|
||||
version = "3.114.1";
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/tutao/tutanota/releases/download/tutanota-desktop-release-${version}/tutanota-desktop-linux.AppImage";
|
||||
hash = "sha256-cWK95F3/zRyKt2fN/uN/dfDNnSiXgJq6mlGjtD3W7VY=";
|
||||
};
|
||||
|
||||
extracted = appimageTools.extractType2 {
|
||||
inherit pname version src;
|
||||
};
|
||||
|
||||
in appimageTools.wrapType2 {
|
||||
inherit name src;
|
||||
|
||||
profile = ''
|
||||
export LD_LIBRARY_PATH=${libGL}:${libsecret}:${ffmpeg}:${curl}:${alsa-lib}:${udev}:$LD_LIBRARY_PATH
|
||||
'';
|
||||
|
||||
targetPkgs = pkgs: [ libGL libsecret ffmpeg curl alsa-lib udev ];
|
||||
|
||||
extraInstallCommands = ''
|
||||
mkdir -p $out/bin
|
||||
|
||||
cp -r ${extracted}/* $out/
|
||||
|
||||
ln -s $out/tutanota-desktop $out/bin/tutanota-desktop
|
||||
|
||||
substituteInPlace $out/tutanota-desktop.desktop \
|
||||
--replace AppRun ${pname}
|
||||
|
||||
source "${makeWrapper}/nix-support/setup-hook"
|
||||
wrapProgram $out/bin/${pname} \
|
||||
--prefix LD_LIBRARY_PATH : ${lib.makeLibraryPath [ libsecret stdenv.cc.cc.lib ]}
|
||||
|
||||
sed -i 's#exec -a "$0"#exec -a "$0" "${pkgs.steam-run}/bin/steam-run"#' "$out/bin/${pname}"
|
||||
'';
|
||||
}
|
Loading…
Reference in a new issue