Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: af0be16375f3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7d69f112937a
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Nov 28, 2017

  1. compton: adding missing xr_glx_hybrid backend

    Compton can run with xr_glx_hybrid backend too.
    Adding this missing option.
    yellowgh0st authored Nov 28, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    andir Andreas Rammhold
    Copy the full SHA
    57475d1 View commit details
  2. Merge pull request #32141 from yellowgh0st/compton

    compton: adding missing xr_glx_hybrid backend
    orivej authored Nov 28, 2017

    Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    andir Andreas Rammhold
    Copy the full SHA
    7d69f11 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 nixos/modules/services/x11/compton.nix
4 changes: 2 additions & 2 deletions nixos/modules/services/x11/compton.nix
Original file line number Diff line number Diff line change
@@ -181,10 +181,10 @@ in {
};

backend = mkOption {
type = types.enum [ "glx" "xrender" ];
type = types.enum [ "glx" "xrender" "xr_glx_hybrid" ];
default = "xrender";
description = ''
Backend to use: <literal>glx</literal> or <literal>xrender</literal>.
Backend to use: <literal>glx</literal>, <literal>xrender</literal> or <literal>xr_glx_hybrid</literal>.
'';
};