mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-07 22:13:52 +00:00
43 lines
925 B
Nix
43 lines
925 B
Nix
{ pkgs, ... }:
|
|
{
|
|
module.shells.alias.alias = with pkgs; {
|
|
# HELPFIL
|
|
e = "$EDITOR";
|
|
c = "clear";
|
|
x = "exit";
|
|
|
|
# FAST CP & RM
|
|
cp = "${fuc}/bin/cpz";
|
|
rmf = "${fuc}/bin/rmz";
|
|
rm = "trash put";
|
|
|
|
# USEFUL
|
|
ca = "cava";
|
|
cat = "bat";
|
|
pmx = "pulsemixer";
|
|
blt = "bluetuith";
|
|
icat = "kitten icat";
|
|
|
|
# TOPS
|
|
btop = "btop";
|
|
ntop = "nvtop -i";
|
|
|
|
# CLOCK
|
|
ter = "${tenki}/bin/tenki --mode rain --wind disable --timer-color cyan -f 80";
|
|
tes = "${tenki}/bin/tenki --mode snow --wind disable --timer-color yellow -f 80";
|
|
tem = "${tenki}/bin/tenki --mode meteor --wind disable --timer-color red -f 80";
|
|
|
|
# VPN
|
|
vpn = "openvpn";
|
|
|
|
# IMAGES
|
|
imagemagick = "imagemagick";
|
|
jpgop = "jpegoptim";
|
|
pngop = "optipng";
|
|
|
|
# LUTGEN
|
|
lut = "${lutgen}/bin/lutgen apply -p paradise";
|
|
lutall = "${lutgen}/bin/lutgen apply -p paradise ./*";
|
|
};
|
|
}
|