mirror of
https://github.com/grassmunk/Chicago95.git
synced 2025-07-25 14:44:44 +02:00
Update for testing Whisker menu
Testing branding themes in the Whisker Menu to replicate Windows95 branding seen in the Start Menu Updating the MS Sans serif font config file to enable font hinting. As well as update install instructions
This commit is contained in:
parent
bfe7aec02c
commit
b01c650046
@ -9,7 +9,7 @@
|
|||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
</edit>
|
</edit>
|
||||||
<edit name="hinting" mode="assign">
|
<edit name="hinting" mode="assign">
|
||||||
<bool>false</bool>
|
<bool>true</bool>
|
||||||
</edit>
|
</edit>
|
||||||
<edit name="embolden" mode="assign">
|
<edit name="embolden" mode="assign">
|
||||||
<bool>false</bool>
|
<bool>false</bool>
|
||||||
|
@ -421,6 +421,7 @@ We now need to install the MS Sans Serif fonts, as well as their font configurat
|
|||||||
#### System-wide install: ####
|
#### System-wide install: ####
|
||||||
- Run `sudo mkdir -p /usr/share/fonts/truetype/ms_sans_serif`
|
- 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`
|
- 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`
|
- 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`
|
- Update the font cache by running `sudo fc-cache -f -v`
|
||||||
|
|
||||||
|
@ -53,6 +53,9 @@ the whisker menu without having to correct their pointer location. */
|
|||||||
* Whisker Menu **
|
* Whisker Menu **
|
||||||
****************/
|
****************/
|
||||||
|
|
||||||
|
|
||||||
|
#whiskermenu-window {
|
||||||
|
box-shadow: inset 22px 0 @bg_shade; }
|
||||||
#whiskermenu-window treeview {
|
#whiskermenu-window treeview {
|
||||||
padding-left: 5px;
|
padding-left: 5px;
|
||||||
padding-right: 5px;
|
padding-right: 5px;
|
||||||
@ -71,28 +74,34 @@ the whisker menu without having to correct their pointer location. */
|
|||||||
border: 1px solid @bg_shade;
|
border: 1px solid @bg_shade;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
padding: 0px; }
|
padding: 0px; }
|
||||||
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow {
|
#whiskermenu-window frame {
|
||||||
padding: 5px;
|
background-image: url("../assets/branding_w95.png");
|
||||||
border-top: 1px solid transparent;
|
background-repeat: no-repeat;
|
||||||
border-right: 1px solid transparent;
|
background-position: 0% 100%; }
|
||||||
border-bottom: 1px solid transparent;
|
#whiskermenu-window frame > stack {
|
||||||
border-left: 1px solid @bg_shade;
|
margin-left: 18px; }
|
||||||
box-shadow: inset 1px 0px @bg_bright; }
|
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow {
|
||||||
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow button {
|
padding: 5px;
|
||||||
border: 1px solid transparent;
|
border-top: 1px solid transparent;
|
||||||
background-color: @selected_bg_color;
|
border-right: 1px solid transparent;
|
||||||
box-shadow: none; }
|
border-bottom: 1px solid transparent;
|
||||||
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:checked {
|
border-left: 1px solid @bg_shade;
|
||||||
background-color: @bg_shade; }
|
box-shadow: inset 1px 0px @bg_bright; }
|
||||||
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:hover,
|
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow button {
|
||||||
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:active,
|
border: 1px solid transparent;
|
||||||
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:checked {
|
background-color: @selected_bg_color;
|
||||||
color: white; }
|
box-shadow: none; }
|
||||||
#whiskermenu-window > frame > stack > box > box:first-child {
|
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:checked {
|
||||||
padding: 2px;
|
background-color: @bg_shade; }
|
||||||
margin: 0;
|
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:hover,
|
||||||
color: @text_color;
|
#whiskermenu-window frame > stack > box > stack > box > scrolledwindow button:active,
|
||||||
/*background-image: linear-gradient(to right, @selected_bg_color, @transparent);*/ /* Note: You can setup a gradient here if you want! */ }
|
#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 {
|
#whiskermenu-window frame > box > box > box button image {
|
||||||
padding: 0px; }
|
padding: 0px; }
|
||||||
#whiskermenu-window entry {
|
#whiskermenu-window entry {
|
||||||
|
BIN
Theme/Chicago95/gtk-3.24/assets/branding_w95.png
Normal file
BIN
Theme/Chicago95/gtk-3.24/assets/branding_w95.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 660 B |
Loading…
x
Reference in New Issue
Block a user