Skip to content

Commit 5e03a5b

Browse files
author
Lains
committed
Fix more oops
1 parent 3a5cb9c commit 5e03a5b

File tree

6 files changed

+27
-14
lines changed

6 files changed

+27
-14
lines changed

Helium-dark/gtk-3.0/install-dark-theme.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ project_name="$2"
77
install -m755 -d "${theme_dir}"
88
for ver in gtk-3.0; do
99
install -m755 -d "${theme_dir}/${ver}"
10-
#ln -sf "../../${project_name}/${ver}/gtk-dark.css" "${theme_dir}/${ver}/gtk.css"
11-
#ln -sf "../../${project_name}/${ver}/assets" "${theme_dir}/${ver}/assets"
10+
ln -sf "../../${project_name}/${ver}/gtk-dark.css" "${theme_dir}/${ver}/gtk.css"
11+
ln -sf "../../${project_name}/${ver}/assets" "${theme_dir}/${ver}/assets"
1212
cp -r "${project_name}/${ver}/gtk-dark.css" "${theme_dir}/${ver}/gtk.css"
1313
# For the new dark theme switcher in GNOME 42
1414
cp -r "${project_name}/${ver}/gtk-dark.css" "${theme_dir}/${ver}/gtk-dark.css"

Helium-dark/gtk-4.0/install-dark-theme.sh

+7-4
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,11 @@ theme_dir="${MESON_INSTALL_DESTDIR_PREFIX}/$1"
55
project_name="$2"
66

77
install -m755 -d "${theme_dir}"
8-
for ver in gtk-3.0; do
9-
install -m755 -d "${theme_dir}/gtk-4.0"
10-
ln -sf "../../${project_name}/gtk-4.0/gtk-dark.css" "${theme_dir}/gtk-4.0/gtk.css"
11-
ln -sf "../../${project_name}/gtk-4.0/assets" "${theme_dir}/gtk-4.0/assets"
8+
for ver in gtk-4.0; do
9+
install -m755 -d "${theme_dir}/${ver}"
10+
ln -sf "../../${project_name}/${ver}/gtk-dark.css" "${theme_dir}/${ver}/gtk.css"
11+
ln -sf "../../${project_name}/${ver}/assets" "${theme_dir}/${ver}/assets"
12+
cp -r "${project_name}/${ver}/gtk-dark.css" "${theme_dir}/${ver}/gtk.css"
13+
# For the new dark theme switcher in GNOME 42
14+
cp -r "${project_name}/${ver}/gtk-dark.css" "${theme_dir}/${ver}/gtk-dark.css"
1215
done

Helium/gtk-3.0/_common.scss

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
66
$asset_suffix: if($color-scheme=='dark', '-dark', '');
77
$backdrop_transition: 200ms ease-out;
88
$button_transition: all 200ms $ease-out-quad;
9-
$button_radius: 12px;
10-
$menu_radius: 12px;
9+
$button_radius: 6px;
10+
$menu_radius: 6px;
1111
$window_radius: 12px;
12-
$popover_radius: 12px;
12+
$popover_radius: 6px;
1313
$card_radius: 12px;
1414

1515
// Optional compact sizes for buttons, headerbar and headerbar widgets

Helium/gtk-4.0/_common.scss

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@ $ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
22
$backdrop_transition: 200ms ease-out;
33
$button_transition: all 200ms $ease-out-quad;
44
$focus_transition: outline-width 200ms $ease-out-quad, outline-offset 200ms $ease-out-quad;
5-
$button_radius: 12px;
5+
$button_radius: 6px;
66
$card_radius: 12px;
7-
$menu_radius: 4px;
8-
$menu_margin: 8px; //margin around menuitems & sidebar items
7+
$menu_radius: 6px;
8+
$menu_margin: 6px; //margin around menuitems & sidebar items
99
$menu_padding: 12px; //inner menuitem padding
1010
$window_radius: 12px;
11-
$popover_radius: 12px;
11+
$popover_radius: 6px;
1212

1313
.background {
1414
color: $window_fg_color;

index.theme.in

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
1+
[Desktop Entry]
2+
Type=X-GNOME-Metatheme
3+
Name=@VariantThemeName@
4+
Comment=@VariantThemeName@ theme
5+
Encoding=UTF-8
6+
17
[X-GNOME-Metatheme]
28
Name=@VariantThemeName@
39
Type=X-GNOME-Metatheme
410
Comment=@VariantThemeName@ theme
511
Encoding=UTF-8
612
GtkTheme=@VariantThemeName@
13+
IconTheme=Hydrogen

tau-helium.spec

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Summary: tauOS GTK/GNOME Shell Themes
22
Name: tau-helium
33
Version: 1.1
4-
Release: 15
4+
Release: 16
55
License: GPLv3
66
URL: https://tauos.co
77
Source0: %{name}-%{version}.tar.gz
@@ -36,6 +36,9 @@ install -pm 0644 %SOURCE0 README.md
3636
%{_datadir}/themes/Helium-dark/*
3737

3838
%changelog
39+
* Thu May 19 2022 Lains <[email protected]> - 1.1-16
40+
- Fix more oops.
41+
3942
* Thu May 19 2022 Lains <[email protected]> - 1.1-15
4043
- Fix some oops.
4144

0 commit comments

Comments
 (0)