add kitti3
This commit is contained in:
parent
2134a2a161
commit
00a602d77a
@ -12,6 +12,7 @@ with config.deviceSpecific; {
|
|||||||
# git-filter-repo
|
# git-filter-repo
|
||||||
glib
|
glib
|
||||||
# gptfdisk
|
# gptfdisk
|
||||||
|
kitti3
|
||||||
libqalculate
|
libqalculate
|
||||||
lm_sensors
|
lm_sensors
|
||||||
lnav
|
lnav
|
||||||
|
@ -23,6 +23,7 @@ with lib; {
|
|||||||
ceserver = pkgs.callPackage ./packages/ceserver.nix { };
|
ceserver = pkgs.callPackage ./packages/ceserver.nix { };
|
||||||
gamescope = pkgs.callPackage ./packages/gamescope.nix { };
|
gamescope = pkgs.callPackage ./packages/gamescope.nix { };
|
||||||
ibm-plex-powerline = pkgs.callPackage ./packages/ibm-plex-powerline.nix { };
|
ibm-plex-powerline = pkgs.callPackage ./packages/ibm-plex-powerline.nix { };
|
||||||
|
kitti3 = pkgs.python3Packages.callPackage ./packages/kitti3.nix { };
|
||||||
mpris-ctl = pkgs.callPackage ./packages/mpris-ctl.nix { };
|
mpris-ctl = pkgs.callPackage ./packages/mpris-ctl.nix { };
|
||||||
multimc = pkgs.qt5.callPackage ./packages/multimc.nix { multimc-repo = inputs.multimc-cracked; };
|
multimc = pkgs.qt5.callPackage ./packages/multimc.nix { multimc-repo = inputs.multimc-cracked; };
|
||||||
reshade-shaders = pkgs.callPackage ./packages/reshade-shaders.nix { };
|
reshade-shaders = pkgs.callPackage ./packages/reshade-shaders.nix { };
|
||||||
|
26
profiles/packages/kitti3.nix
Normal file
26
profiles/packages/kitti3.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ lib, buildPythonPackage, fetchPypi, i3ipc }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "kitti3";
|
||||||
|
version = "0.4.1";
|
||||||
|
format = "wheel";
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version format;
|
||||||
|
# format = "wheel";
|
||||||
|
dist = "py3";
|
||||||
|
python = "py3";
|
||||||
|
sha256 = "0sf9h0cfs24hgln25z2j4jib530mq931h8xjgxkfr79qrqr3k6dm";
|
||||||
|
};
|
||||||
|
|
||||||
|
doCheck = false;
|
||||||
|
|
||||||
|
propagatedBuildInputs = [ i3ipc ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
homepage = "https://github.com/LandingEllipse/kitti3";
|
||||||
|
description = "Kitty drop-down service for sway & i3wm";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ ataraxiadev ];
|
||||||
|
};
|
||||||
|
}
|
@ -150,6 +150,7 @@ in {
|
|||||||
"move container to workspace temp; [workspace=__focused__] kill; workspace temp; move container to workspace temp; workspace temp";
|
"move container to workspace temp; [workspace=__focused__] kill; workspace temp; move container to workspace temp; workspace temp";
|
||||||
"${modifier}+w" = "exec ${apps.dmenu.cmd}";
|
"${modifier}+w" = "exec ${apps.dmenu.cmd}";
|
||||||
"${modifier}+Return" = "exec ${apps.term.cmd}";
|
"${modifier}+Return" = "exec ${apps.term.cmd}";
|
||||||
|
"${modifier}+Shift+Return" = "nop kitti3";
|
||||||
"${modifier}+e" = "exec ${apps.editor.cmd}";
|
"${modifier}+e" = "exec ${apps.editor.cmd}";
|
||||||
"${modifier}+o" = "layout toggle all";
|
"${modifier}+o" = "layout toggle all";
|
||||||
|
|
||||||
@ -288,6 +289,7 @@ in {
|
|||||||
hide_edge_borders --i3 smart
|
hide_edge_borders --i3 smart
|
||||||
exec pkill swaynag
|
exec pkill swaynag
|
||||||
exec dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP
|
exec dbus-update-activation-environment --systemd DISPLAY WAYLAND_DISPLAY SWAYSOCK XDG_CURRENT_DESKTOP
|
||||||
|
exec_always --no-startup-id kitti3 -p BC
|
||||||
'';
|
'';
|
||||||
extraSessionCommands = ''
|
extraSessionCommands = ''
|
||||||
# export SDL_VIDEODRIVER=wayland
|
# export SDL_VIDEODRIVER=wayland
|
||||||
|
Loading…
x
Reference in New Issue
Block a user