Skip to content

Commit

Permalink
ffmpeg bluray support
Browse files Browse the repository at this point in the history
  • Loading branch information
anna328p committed Oct 31, 2024
1 parent 9b2b02e commit a7ba6d4
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 5 deletions.
2 changes: 2 additions & 0 deletions common/workstation/apps-extra.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ in {
in if isMinimal then [
# Media players
p.mpv p.vlc
p.ffmpeg
] else [
# Media players with Blu-Ray support
p.mpv_bd p.vlc_bd p.keydb
p.ffmpeg_bd

# Media creation
p.audacity
Expand Down
1 change: 0 additions & 1 deletion common/workstation/apps.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@
p.gimp

# Media
p.ffmpeg
p.tremotesf

## Programming / Software development
Expand Down
2 changes: 1 addition & 1 deletion flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 8 additions & 3 deletions home/workstation/theming/adwaita.nix
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,16 @@ let
view_bg_color = c.base01;
view_fg_color = c.base05;

headerbar_bg_color = c.base01;
headerbar_fg_color = c.base05;
headerbar_border_color = c.base04;
headerbar_bg_color = c.base01;
headerbar_fg_color = c.base05;
headerbar_border_color = c.base02;
headerbar_backdrop_color = c.base00;

sidebar_bg_color = headerbar_bg_color;
sidebar_fg_color = headerbar_fg_color;
sidebar_border_color = headerbar_border_color;
sidebar_backdrop_color = headerbar_backdrop_color;

card_bg_color = c.base01;
card_fg_color = c.base05;

Expand Down
2 changes: 2 additions & 0 deletions pkgs/overlays/bluray/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ final: prev: {
};

vlc_bd = prev.vlc.override { libbluray = final.libbluray_bd; };

ffmpeg_bd = prev.ffmpeg-full.override { libbluray = final.libbluray_bd; };
}

0 comments on commit a7ba6d4

Please sign in to comment.