feat: need a quick push

This commit is contained in:
Nick 2025-05-29 21:44:37 -05:00
parent a5bfa31ada
commit 0ddf9cd1ce
12 changed files with 96 additions and 7 deletions

View file

@ -72,6 +72,7 @@ in
finamp
lingot
keymapp
zen
;
};
};

View file

@ -0,0 +1,12 @@
{
flake,
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (flake.inputs.zen-browser.packages."${pkgs.system}")
default
;
};
}

View file

@ -76,6 +76,14 @@ in
trigger = ":emdash";
replace = "";
}
{
trigger = ":dag1";
replace = "";
}
{
trigger = ":dag2";
replace = "";
}
{
trigger = ":glp";
replace = "GLP-1RA";

View file

@ -59,9 +59,6 @@ let
"Home, exec, playerctl play-pause"
"Space, exec, fuzzel"
# Utility
"End, exec, shutdown now"
"Insert, exec, systemctl reboot"
"Home, exec, swaylock"
];
superShiftBinds = builtins.map (x: "SUPER SHIFT, " + x) [
@ -70,6 +67,9 @@ let
"period, exec, emote"
"T, fullscreen, 0"
# "Print, exec, grim -g \"$(slurp)\""
"End, exec, shutdown now"
"Insert, exec, systemctl reboot"
"Home, exec, swaylock"
];
superCtrlBinds = builtins.map (x: "SUPER CTRL, " + x) [
# Super+shift binds

View file

@ -10,6 +10,7 @@ let
weather = import (widgetsPath + /weather.nix);
reddit = import (widgetsPath + /reddit.nix);
videos = import (widgetsPath + /videos.nix);
repos = import (widgetsPath + /repos.nix);
};
in
[
@ -31,8 +32,8 @@ in
{
size = "small";
widgets = [
# widgets.jellyfin
widgets.steam
widgets.repos
];
}
{

View file

View file

@ -8,7 +8,7 @@ let
subredditEntries = builtins.map (sub: {
type = "reddit";
subreddit = sub;
collapse-after = 4;
collapse-after = 5;
show-thumbnails = true;
sort-by = "top";
top-period = "day";

View file

@ -0,0 +1,15 @@
{
type = "releases";
show-source-icon = true;
collapse-after = 7;
repositories = [
"jmshrv/finamp"
"futo-org/android-keyboard"
"hyprwm/Hyprland"
"mollyim/mollyim-android"
"jarnedemeulemeester/findroid"
"brandonp2412/Flexify"
"accrescent/accrescent"
"ImranR98/Obtainium"
];
}

View file

@ -6,7 +6,7 @@
<ul class="list-horizontal-text">
<li>{{ .Int "final_price" | toFloat | mul 0.01 | printf "$%.2f" }}</li>
{{ $discount := .Int "discount_percent" }}
<li{{ if ge $discount 40 }} class="color-positive"{{ end }}>{{ $discount }}% off</li>
<li{{ if ge $discount 1 }} class="color-positive"{{ end }}>{{ $discount }}% off</li>
</ul>
</li>
{{ end }}

View file