Update some formatting and move aliases into app specific nix files
This commit is contained in:
parent
fb06bdf1f0
commit
c50925b74b
9 changed files with 16 additions and 52 deletions
|
@ -10,7 +10,7 @@
|
|||
};
|
||||
colors = {
|
||||
alpha = "0.85";
|
||||
background = "${config.look.colors.dark}";
|
||||
background = config.look.colors.dark;
|
||||
regular0 = "3f3f3f";
|
||||
regular1 = "cc0000";
|
||||
regular2 = "4e9a06";
|
||||
|
|
|
@ -42,7 +42,7 @@
|
|||
sponsorblock
|
||||
ublock-origin
|
||||
vimium
|
||||
violentmonkey
|
||||
violentmonkey
|
||||
];
|
||||
commonSearch = {
|
||||
force = true;
|
||||
|
|
|
@ -8,4 +8,6 @@
|
|||
pulsemixer
|
||||
spotdl
|
||||
];
|
||||
|
||||
home.shellAliases.spotopus = "spotdl --m3u --format opus";
|
||||
}
|
||||
|
|
|
@ -1,16 +1,15 @@
|
|||
{ config, lib, ... }:
|
||||
{ config, ... }:
|
||||
{
|
||||
config = lib.mkIf config.home.desktop.enable {
|
||||
programs.yt-dlp = {
|
||||
enable = true;
|
||||
settings = {
|
||||
add-metadata = true;
|
||||
embed-thumbnail = true;
|
||||
convert-thumbnails = "jpg";
|
||||
audio-format = "opus";
|
||||
output = ''"%(artist)s - %(title)s.%(ext)s"'';
|
||||
};
|
||||
programs.yt-dlp = {
|
||||
enable = config.home.desktop.enable;
|
||||
settings = {
|
||||
add-metadata = true;
|
||||
embed-thumbnail = true;
|
||||
convert-thumbnails = "jpg";
|
||||
audio-format = "opus";
|
||||
output = ''"%(artist)s - %(title)s.%(ext)s"'';
|
||||
};
|
||||
home.shellAliases.opusdl = "yt-dlp -f ba -x --audio-quality 0";
|
||||
};
|
||||
|
||||
home.shellAliases.opusdl = "yt-dlp -f ba -x --audio-quality 0";
|
||||
}
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
|
||||
# Shortcuts
|
||||
ff = "clear && fastfetch";
|
||||
spotdl = "spotdl --m3u --format opus";
|
||||
copycat = "wl-copy <";
|
||||
myip = "curl ifconfig.co";
|
||||
seneca = "ssh jhampton1@matrix.senecapolytechnic.ca";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue