diff options
| author | 宋文武 <iyzsong@member.fsf.org> | 2025-02-18 11:18:59 +0800 |
|---|---|---|
| committer | 宋文武 <iyzsong@member.fsf.org> | 2025-02-20 10:23:37 +0800 |
| commit | 48237b158e10e586f04eba8a7ed2d66887199e49 (patch) | |
| tree | 5fd479a62d2cc1962c7ecb43898cf437638cec44 | |
| parent | 5c5e6be1d9b44096a3574a304226c5740d4410cb (diff) | |
gnu: xfce4-settings: Update to 4.20.1.
* gnu/packages/patches/xfce4-settings-defaults.patch: Adjust for 4.20.1.
* gnu/packages/xfce.scm (xfce4-settings): Update to 4.20.1.
Change-Id: I15f6ac8715e2d81fd2bac4763445db6da49880dc
| -rw-r--r-- | gnu/packages/patches/xfce4-settings-defaults.patch | 18 | ||||
| -rw-r--r-- | gnu/packages/xfce.scm | 4 |
2 files changed, 7 insertions, 15 deletions
diff --git a/gnu/packages/patches/xfce4-settings-defaults.patch b/gnu/packages/patches/xfce4-settings-defaults.patch index 63976f43344..94d54e32804 100644 --- a/gnu/packages/patches/xfce4-settings-defaults.patch +++ b/gnu/packages/patches/xfce4-settings-defaults.patch | |||
| @@ -1,28 +1,20 @@ | |||
| 1 | This patch make Xfce use "elementary-xfce-dark" as the default icon theme, "Greybird" as | 1 | This patch make Xfce use "elementary-xfce-dark" as the default icon theme, "Greybird" as |
| 2 | the default GTK theme and enable font antialias. | 2 | the default GTK theme and enable font antialias. |
| 3 | 3 | ||
| 4 | --- xfce4-settings-4.20.0/xfsettingsd/xsettings.xml.orig 2024-12-20 09:53:09.518493612 +0800 | 4 | --- xfce4-settings-4.20.1/xfsettingsd/xsettings.xml.orig 2024-12-20 09:53:09.518493612 +0800 |
| 5 | +++ xfce4-settings-4.20.0/xfsettingsd/xsettings.xml 2024-12-20 09:55:15.506496473 +0800 | 5 | +++ xfce4-settings-4.20.1/xfsettingsd/xsettings.xml 2024-12-20 09:55:15.506496473 +0800 |
| 6 | @@ -6,8 +6,8 @@ | 6 | @@ -8,4 +8,4 @@ |
| 7 | |||
| 8 | <channel name="xsettings" version="1.0"> | ||
| 9 | <property name="Net" type="empty"> | 7 | <property name="Net" type="empty"> |
| 10 | - <property name="ThemeName" type="string" value="Adwaita"/> | 8 | - <property name="ThemeName" type="string" value="Adwaita"/> |
| 11 | - <property name="IconThemeName" type="string" value="Adwaita"/> | 9 | - <property name="IconThemeName" type="string" value="Adwaita"/> |
| 12 | + <property name="ThemeName" type="string" value="Greybird"/> | 10 | + <property name="ThemeName" type="string" value="Greybird"/> |
| 13 | + <property name="IconThemeName" type="string" value="elementary-xfce-dark"/> | 11 | + <property name="IconThemeName" type="string" value="elementary-xfce-dark"/> |
| 14 | <property name="DoubleClickTime" type="int" value="400"/> | 12 | <property name="DoubleClickTime" type="int" value="400"/> |
| 15 | <property name="DoubleClickDistance" type="int" value="5"/> | 13 | @@ -21,5 +21,5 @@ |
| 16 | <property name="DndDragThreshold" type="int" value="8"/> | 14 | <property name="DPI" type="int" value="96"/> |
| 17 | @@ -19,9 +19,9 @@ | ||
| 18 | </property> | ||
| 19 | <property name="Xft" type="empty"> | ||
| 20 | <property name="DPI" type="int" value="-1"/> | ||
| 21 | - <property name="Antialias" type="int" value="-1"/> | 15 | - <property name="Antialias" type="int" value="-1"/> |
| 22 | + <property name="Antialias" type="int" value="1"/> | 16 | + <property name="Antialias" type="int" value="1"/> |
| 23 | <property name="Hinting" type="int" value="-1"/> | 17 | <property name="Hinting" type="int" value="-1"/> |
| 24 | - <property name="HintStyle" type="string" value="hintnone"/> | 18 | - <property name="HintStyle" type="string" value="hintnone"/> |
| 25 | + <property name="HintStyle" type="string" value="hintfull"/> | 19 | + <property name="HintStyle" type="string" value="hintfull"/> |
| 26 | <property name="RGBA" type="string" value="none"/> | 20 | <property name="RGBA" type="string" value="none"/> |
| 27 | </property> | ||
| 28 | <property name="Gtk" type="empty"> | ||
diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 40d934be539..65c8826f3e2 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm | |||
| @@ -795,7 +795,7 @@ allows you to shut down the computer from Xfce.") | |||
| 795 | (define-public xfce4-settings | 795 | (define-public xfce4-settings |
| 796 | (package | 796 | (package |
| 797 | (name "xfce4-settings") | 797 | (name "xfce4-settings") |
| 798 | (version "4.20.0") | 798 | (version "4.20.1") |
| 799 | (source | 799 | (source |
| 800 | (origin | 800 | (origin |
| 801 | (method git-fetch) | 801 | (method git-fetch) |
| @@ -804,7 +804,7 @@ allows you to shut down the computer from Xfce.") | |||
| 804 | (commit (string-append name "-" version)))) | 804 | (commit (string-append name "-" version)))) |
| 805 | (file-name (git-file-name name version)) | 805 | (file-name (git-file-name name version)) |
| 806 | (sha256 | 806 | (sha256 |
| 807 | (base32 "1xv8fcrrk54r6naxhwj9ff8f1q9g08fh0ailazvbmi1jww12xwyi")) | 807 | (base32 "1hk8jsiczpzvm7zs79g5jk6amg988rg1w1ir4z3x0yklqgalw4gl")) |
| 808 | (patches (search-patches "xfce4-settings-defaults.patch")))) | 808 | (patches (search-patches "xfce4-settings-defaults.patch")))) |
| 809 | (build-system gnu-build-system) | 809 | (build-system gnu-build-system) |
| 810 | (arguments | 810 | (arguments |
