Packaging/Icons: Difference between revisions
Phanirithvij (talk | contribs) fix scribus 1.4 link before it got deleted, add a link to obsidian icon handling |
Haruki7049 (talk | contribs) Add translate tags |
||
| Line 1: | Line 1: | ||
<translate> | |||
== Application icons == | == Application icons == | ||
| Line 4: | Line 5: | ||
Example code for the now outdated [https://github.com/nixos/nixpkgs/blob/c8e5c5c2228ddd58f01b7229e0bb4a92a9585990/pkgs/applications/office/scribus/1_4.nix scribus v1.4] app: | Example code for the now outdated [https://github.com/nixos/nixpkgs/blob/c8e5c5c2228ddd58f01b7229e0bb4a92a9585990/pkgs/applications/office/scribus/1_4.nix scribus v1.4] app: | ||
</translate> | |||
<syntaxHighlight lang=nix> | <syntaxHighlight lang=nix> | ||
| Line 38: | Line 40: | ||
</syntaxHighlight> | </syntaxHighlight> | ||
<translate> | |||
<code>-background none</code> will create transparent icons. | <code>-background none</code> will create transparent icons. | ||
Alternative: <code>-background white</code>. | Alternative: <code>-background white</code>. | ||
| Line 44: | Line 47: | ||
Another example handling icons [https://github.com/NixOS/nixpkgs/blob/6d8e9b4f6197f7ce5106069f13debfc8e9b1fa8b/pkgs/applications/misc/obsidian/default.nix#L62 obsidian]. | Another example handling icons [https://github.com/NixOS/nixpkgs/blob/6d8e9b4f6197f7ce5106069f13debfc8e9b1fa8b/pkgs/applications/misc/obsidian/default.nix#L62 obsidian]. | ||
</translate> | |||