diff --git a/Extras/99-ms-sans-serif.conf b/Extras/99-ms-sans-serif.conf index 15045ed..ae45678 100644 --- a/Extras/99-ms-sans-serif.conf +++ b/Extras/99-ms-sans-serif.conf @@ -9,7 +9,7 @@ false - false + true false diff --git a/INSTALL.md b/INSTALL.md index 3c7f4dd..cd7a46c 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -421,6 +421,7 @@ We now need to install the MS Sans Serif fonts, as well as their font configurat #### System-wide install: #### - Run `sudo mkdir -p /usr/share/fonts/truetype/ms_sans_serif` - Copy `micross.ttf` and `MSSansSerif.ttf` to `/usr/share/fonts/truetype/ms_sans_serif` +- Verify that file permissions are set to -rw-r--r-- `sudo chmod 644 /usr/share/fonts/truetype/ms_sans_serif/*` - Copy `Extras/99-ms-sans-serif.conf` and `Extras/99-ms-sans-serif-bold.conf` to `/etc/fonts/conf.d` - Update the font cache by running `sudo fc-cache -f -v` diff --git a/Theme/Chicago95/gtk-3.24/apps/whiskermenu.css b/Theme/Chicago95/gtk-3.24/apps/whiskermenu.css index 47f6f30..0885a85 100644 --- a/Theme/Chicago95/gtk-3.24/apps/whiskermenu.css +++ b/Theme/Chicago95/gtk-3.24/apps/whiskermenu.css @@ -53,6 +53,9 @@ the whisker menu without having to correct their pointer location. */ * Whisker Menu ** ****************/ + +#whiskermenu-window { + box-shadow: inset 22px 0 @bg_shade; } #whiskermenu-window treeview { padding-left: 5px; padding-right: 5px; @@ -71,28 +74,34 @@ the whisker menu without having to correct their pointer location. */ border: 1px solid @bg_shade; box-shadow: none; padding: 0px; } -#whiskermenu-window frame > stack > box > stack > box > scrolledwindow { - padding: 5px; - border-top: 1px solid transparent; - border-right: 1px solid transparent; - border-bottom: 1px solid transparent; - border-left: 1px solid @bg_shade; - box-shadow: inset 1px 0px @bg_bright; } - #whiskermenu-window frame > stack > box > stack > box > scrolledwindow button { - border: 1px solid transparent; - background-color: @selected_bg_color; - box-shadow: none; } - #whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:checked { - background-color: @bg_shade; } - #whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:hover, - #whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:active, - #whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:checked { - color: white; } -#whiskermenu-window > frame > stack > box > box:first-child { - padding: 2px; - margin: 0; - color: @text_color; - /*background-image: linear-gradient(to right, @selected_bg_color, @transparent);*/ /* Note: You can setup a gradient here if you want! */ } +#whiskermenu-window frame { + background-image: url("../assets/branding_w95.png"); + background-repeat: no-repeat; + background-position: 0% 100%; } +#whiskermenu-window frame > stack { +margin-left: 18px; } + #whiskermenu-window frame > stack > box > stack > box > scrolledwindow { + padding: 5px; + border-top: 1px solid transparent; + border-right: 1px solid transparent; + border-bottom: 1px solid transparent; + border-left: 1px solid @bg_shade; + box-shadow: inset 1px 0px @bg_bright; } + #whiskermenu-window frame > stack > box > stack > box > scrolledwindow button { + border: 1px solid transparent; + background-color: @selected_bg_color; + box-shadow: none; } + #whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:checked { + background-color: @bg_shade; } + #whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:hover, + #whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:active, + #whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:checked { + color: white; } + #whiskermenu-window > frame > stack > box > box:first-child { + padding: 2px; + margin: 0; + color: @text_color; + /*background-image: linear-gradient(to right, @selected_bg_color, @transparent);*/ /* Note: You can setup a gradient here if you want! */ } #whiskermenu-window frame > box > box > box button image { padding: 0px; } #whiskermenu-window entry { diff --git a/Theme/Chicago95/gtk-3.24/assets/branding_w95.png b/Theme/Chicago95/gtk-3.24/assets/branding_w95.png new file mode 100644 index 0000000..0eab42b Binary files /dev/null and b/Theme/Chicago95/gtk-3.24/assets/branding_w95.png differ