From ee4485647d81378c87ea3b226457cceedd2bdecd Mon Sep 17 00:00:00 2001 From: Horst3180 Date: Tue, 26 Jul 2016 12:51:53 +0200 Subject: [PATCH 1/7] xfce: fix desktop icon shadows (#607) --- common/gtk-2.0/main.rc | 21 ++++++++++----------- 1 file changed, 10 insertions(+), 11 deletions(-) diff --git a/common/gtk-2.0/main.rc b/common/gtk-2.0/main.rc index 24b5ca7..5effd1f 100644 --- a/common/gtk-2.0/main.rc +++ b/common/gtk-2.0/main.rc @@ -2194,20 +2194,19 @@ style "eclipse-tooltips" { style "xfdesktop-icon-view" { XfdesktopIconView::label-alpha = 0 XfdesktopIconView::selected-label-alpha = 100 - XfdesktopIconVIew::ellipsize-icon-labels = 1 - - base[NORMAL] = @selected_bg_color - base[SELECTED] = @selected_bg_color - base[ACTIVE] = @selected_bg_color + XfdesktopIconView::shadow-x-offset = 0 + XfdesktopIconView::shadow-y-offset = 1 + XfdesktopIconView::selected-shadow-x-offset = 0 + XfdesktopIconView::selected-shadow-y-offset = 1 + XfdesktopIconView::shadow-color = "#000000" + XfdesktopIconView::selected-shadow-color = "#000000" + XfdesktopIconView::shadow-blur-radius = 2 + XfdesktopIconView::cell-spacing = 2 + XfdesktopIconView::cell-padding = 6 + XfdesktopIconView::cell-text-width-proportion = 1.9 fg[NORMAL] = @selected_fg_color - fg[SELECTED] = @selected_fg_color fg[ACTIVE] = @selected_fg_color - - engine "murrine" { - textstyle = 5 - text_shade = 0.05 - } } style "xfwm-tabwin" { From 9478b8de1c7c11a163c43ad6b8eff5b4f23f4ced Mon Sep 17 00:00:00 2001 From: Horst3180 Date: Sat, 30 Jul 2016 14:31:07 +0200 Subject: [PATCH 2/7] Update README.md --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 51e6dbd..ade097a 100644 --- a/README.md +++ b/README.md @@ -157,6 +157,9 @@ If you get artifacts like black or invisible backgrounds under Unity, disable ov ### Bug reporting If you find a bug, please report it at https://github.com/horst3180/arc-theme/issues +### License +Arc is available under the terms the GPL-3.0. See `COPYING` for details. + ### Full Preview ![A full screenshot of the Arc theme](http://i.imgur.com/tD1OBQ3.png) Screenshot Details: Icons: [Arc](https://github.com/horst3180/arc-icon-theme) | Launcher Icons based on [White Pixel Icons](http://darkdawg.deviantart.com/art/White-Pixel-Icons-252310560) | [Wallpaper](https://pixabay.com/photo-869593/) | Font: Futura Bk bt From 40b7bd1bcef64e0c186d3a277dc2962269241fbc Mon Sep 17 00:00:00 2001 From: feskyde Date: Fri, 5 Aug 2016 00:36:35 -0300 Subject: [PATCH 3/7] Avoid people from ignoring the template and add details - Remove some markup stuff to make it more readable/visible, and add double check to items that people loves ignoring - Also add a check for items that peoples REALLY love ignoring (the GTK version mess) - Add a check for the re-login stuff (WM decorations failing) - Add specific instructions of how to mark a check (yes, it's needed) - Add installation method to details section - Remove README items form the issues list, supposedly the user read this --- .github/ISSUE_TEMPLATE.md | 36 ++++++++++++++++++++---------------- 1 file changed, 20 insertions(+), 16 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 90d59df..48169dc 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,33 +1,37 @@ -### Please read this before posting: +# READ *CAREFULLY* BEFORE POSTING -**This list was created for avoiding duplicated issues, if yours isn't listed, delete and continue.** +**This list was created for avoiding duplicated issues, if your issue isn't listed, you should remove the list and continue.** - The theme doesn't work in [distro] that have a GTK+ 3 version lower than 3.14 (i.e. Linux Mint 17.x). - - Arc *only supports versions higher or equal than* 3.14. -- The theme is broken after a major GTK+ 3 update (i.e. 3.18 :point_right: 3.20). + - Arc only supports versions *higher or equal than 3.14*. +- The theme is broken after a major GTK+ 3 update (i.e. 3.18 to 3.20). - Update the package or install from sources. -- The theme is broken after installing from a repository. - - Check if the repository that you're using is *specifically* for the distribution (and distribution/GTK version) that you're using. - The theme is broken after installing from sources. - Possibly a bug on GTK+ 3 version checking, use `--with-gnome=` flag with `./autogen.sh`. -- Theme isn't transparent on GNOME applications without CSD (i.e. Ubuntu's patched Nautilus). +- Theme isn't transparent on GNOME applications without CSD (i.e. Ubuntu's patched GNOME applications). - Transparency on GTK+ 3 themes *isn't supported* for non-CSD applications. - Theme doesn't build from AUR in Arch/Manjaro and others. - Ensure you have the `base-devel` group installed. -- Some GTK+ 3 applications have a transparent background in Ubuntu. - - Run this in terminal: `gsettings set com.canonical.desktop.interface scrollbar-mode normal`. -- GTK+ 2 theme looks like Windows 95 and LibreOffice/others looks ugly. - - Check if you have the Murrine GTK engine and `gnome-themes-standard` installed. ----- +### Checks -- [ ] I read the list above. +- [ ] I ***really*** read the list above. + - [ ] I checked if my issue isn't duplicated. - [ ] I read the README. -- [ ] I checked if my issue isn't duplicated. + - [ ] There is nothing about my issue. +- [ ] I installed/built the package *specifically* for the GTK **AND** distribution version that I'm using. +- [ ] I re-login to my user session. -**Details:** +*Put a "x" in the space between braces.* + +### Details - Distribution: - Desktop environment: - GTK+ 3 version: -- Arc version (commit): +- Arc version/commit: +- Installation method: + - [ ] Package. + - [ ] Source. + +*Don't put "latest" in "version" items.* From d6155b4347bd0d67abf6beb2679af85c9dc49103 Mon Sep 17 00:00:00 2001 From: feskyde Date: Fri, 5 Aug 2016 00:42:15 -0300 Subject: [PATCH 4/7] Add the version of desktop environment, Murrine, "gts" and distribution in details And an "other" for installation method --- .github/ISSUE_TEMPLATE.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 48169dc..42d7fb7 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -26,12 +26,15 @@ ### Details -- Distribution: -- Desktop environment: -- GTK+ 3 version: +- Distribution (with version): +- Desktop environment (with version): - Arc version/commit: +- GTK+ 3 version: + - Murrine engine version: + - `gnome-themes-standard` version: - Installation method: - [ ] Package. - [ ] Source. + - Other: *Don't put "latest" in "version" items.* From 9439f10920932f18da770c69f7d4f712202fe565 Mon Sep 17 00:00:00 2001 From: feskyde Date: Fri, 5 Aug 2016 00:46:54 -0300 Subject: [PATCH 5/7] Add base distribution to details --- .github/ISSUE_TEMPLATE.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 42d7fb7..af8c5d5 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -27,6 +27,7 @@ ### Details - Distribution (with version): + - Base distribution (with version)**\*1**: - Desktop environment (with version): - Arc version/commit: - GTK+ 3 version: @@ -38,3 +39,5 @@ - Other: *Don't put "latest" in "version" items.* + +**\*1**: If not, just put "independent". From 85b55411e8626efa90755a72d8bd55430341340d Mon Sep 17 00:00:00 2001 From: feskyde Date: Fri, 5 Aug 2016 00:48:46 -0300 Subject: [PATCH 6/7] Put instructions at the top of sections --- .github/ISSUE_TEMPLATE.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index af8c5d5..72b4267 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -15,6 +15,8 @@ ### Checks +*Put a "x" in the space between braces.* + - [ ] I ***really*** read the list above. - [ ] I checked if my issue isn't duplicated. - [ ] I read the README. @@ -22,10 +24,10 @@ - [ ] I installed/built the package *specifically* for the GTK **AND** distribution version that I'm using. - [ ] I re-login to my user session. -*Put a "x" in the space between braces.* - ### Details +*Don't put "latest" in "version" items.* + - Distribution (with version): - Base distribution (with version)**\*1**: - Desktop environment (with version): @@ -38,6 +40,4 @@ - [ ] Source. - Other: -*Don't put "latest" in "version" items.* - **\*1**: If not, just put "independent". From 2668df1a3db7eb33145e4e589706866ee4712a22 Mon Sep 17 00:00:00 2001 From: Dela Anthonio Date: Wed, 3 Aug 2016 21:21:44 -0400 Subject: [PATCH 7/7] Fix slider for gnome-shell The handle radius was preventing the slider from reaching either extreme. This commit fixes issue #399. --- common/gnome-shell/3.14/gnome-shell-dark.css | 2 +- common/gnome-shell/3.14/gnome-shell.css | 2 +- common/gnome-shell/3.14/sass/_common.scss | 2 +- common/gnome-shell/3.16/gnome-shell-dark.css | 2 +- common/gnome-shell/3.16/gnome-shell.css | 2 +- common/gnome-shell/3.16/sass/_common.scss | 2 +- common/gnome-shell/3.18/gnome-shell-dark.css | 2 +- common/gnome-shell/3.18/gnome-shell.css | 2 +- common/gnome-shell/3.18/sass/_common.scss | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/common/gnome-shell/3.14/gnome-shell-dark.css b/common/gnome-shell/3.14/gnome-shell-dark.css index b7ca459..04a0992 100644 --- a/common/gnome-shell/3.14/gnome-shell-dark.css +++ b/common/gnome-shell/3.14/gnome-shell-dark.css @@ -189,7 +189,7 @@ StScrollBar { -slider-active-background-color: #5294E2; -slider-active-border-color: transparent; -slider-border-width: 0; - -slider-handle-radius: 4px; + -slider-handle-radius: 0px; -slider-handle-border-color: transparent; -slider-handle-border-width: 0; height: 18px; diff --git a/common/gnome-shell/3.14/gnome-shell.css b/common/gnome-shell/3.14/gnome-shell.css index 9a04257..3619002 100644 --- a/common/gnome-shell/3.14/gnome-shell.css +++ b/common/gnome-shell/3.14/gnome-shell.css @@ -189,7 +189,7 @@ StScrollBar { -slider-active-background-color: #5294E2; -slider-active-border-color: transparent; -slider-border-width: 0; - -slider-handle-radius: 4px; + -slider-handle-radius: 0px; -slider-handle-border-color: transparent; -slider-handle-border-width: 0; height: 18px; diff --git a/common/gnome-shell/3.14/sass/_common.scss b/common/gnome-shell/3.14/sass/_common.scss index 671c993..002938f 100644 --- a/common/gnome-shell/3.14/sass/_common.scss +++ b/common/gnome-shell/3.14/sass/_common.scss @@ -169,7 +169,7 @@ StScrollBar { -slider-active-background-color: $selected_bg_color; //active trough fill -slider-active-border-color: transparentize(black, 1); //active trough border -slider-border-width: 0; - -slider-handle-radius: 4px; + -slider-handle-radius: 0px; -slider-handle-border-color: transparent; -slider-handle-border-width: 0; height: 18px; diff --git a/common/gnome-shell/3.16/gnome-shell-dark.css b/common/gnome-shell/3.16/gnome-shell-dark.css index 2ef2e78..56bf7ac 100644 --- a/common/gnome-shell/3.16/gnome-shell-dark.css +++ b/common/gnome-shell/3.16/gnome-shell-dark.css @@ -150,7 +150,7 @@ StScrollBar { -slider-active-background-color: #5294E2; -slider-active-border-color: transparent; -slider-border-width: 0; - -slider-handle-radius: 4px; + -slider-handle-radius: 0px; height: 18px; border: 0 solid transparent; border-right-width: 1px; diff --git a/common/gnome-shell/3.16/gnome-shell.css b/common/gnome-shell/3.16/gnome-shell.css index 3850dd4..f2765b5 100644 --- a/common/gnome-shell/3.16/gnome-shell.css +++ b/common/gnome-shell/3.16/gnome-shell.css @@ -150,7 +150,7 @@ StScrollBar { -slider-active-background-color: #5294E2; -slider-active-border-color: transparent; -slider-border-width: 0; - -slider-handle-radius: 4px; + -slider-handle-radius: 0px; height: 18px; border: 0 solid transparent; border-right-width: 1px; diff --git a/common/gnome-shell/3.16/sass/_common.scss b/common/gnome-shell/3.16/sass/_common.scss index 35720b7..688bbb5 100644 --- a/common/gnome-shell/3.16/sass/_common.scss +++ b/common/gnome-shell/3.16/sass/_common.scss @@ -142,7 +142,7 @@ StScrollBar { -slider-active-background-color: $selected_bg_color; //active trough fill -slider-active-border-color: transparentize(black, 1); //active trough border -slider-border-width: 0; - -slider-handle-radius: 4px; + -slider-handle-radius: 0px; height: 18px; border: 0 solid transparent; border-right-width: 1px; diff --git a/common/gnome-shell/3.18/gnome-shell-dark.css b/common/gnome-shell/3.18/gnome-shell-dark.css index ac310dd..9258d06 100644 --- a/common/gnome-shell/3.18/gnome-shell-dark.css +++ b/common/gnome-shell/3.18/gnome-shell-dark.css @@ -124,7 +124,7 @@ StScrollBar { -slider-active-background-color: #5294E2; -slider-active-border-color: transparent; -slider-border-width: 0; - -slider-handle-radius: 4px; + -slider-handle-radius: 0px; height: 18px; border: 0 solid transparent; border-right-width: 1px; diff --git a/common/gnome-shell/3.18/gnome-shell.css b/common/gnome-shell/3.18/gnome-shell.css index b83026b..0d14820 100644 --- a/common/gnome-shell/3.18/gnome-shell.css +++ b/common/gnome-shell/3.18/gnome-shell.css @@ -124,7 +124,7 @@ StScrollBar { -slider-active-background-color: #5294E2; -slider-active-border-color: transparent; -slider-border-width: 0; - -slider-handle-radius: 4px; + -slider-handle-radius: 0px; height: 18px; border: 0 solid transparent; border-right-width: 1px; diff --git a/common/gnome-shell/3.18/sass/_common.scss b/common/gnome-shell/3.18/sass/_common.scss index 3033f52..59480ce 100644 --- a/common/gnome-shell/3.18/sass/_common.scss +++ b/common/gnome-shell/3.18/sass/_common.scss @@ -143,7 +143,7 @@ StScrollBar { -slider-active-background-color: $selected_bg_color; //active trough fill -slider-active-border-color: transparentize(black, 1); //active trough border -slider-border-width: 0; - -slider-handle-radius: 4px; + -slider-handle-radius: 0px; height: 18px; border: 0 solid transparent; border-right-width: 1px;