Update template and Firefox theme config
This commit is contained in:
parent
c5ed4f410c
commit
a1ae7970a1
13 changed files with 42 additions and 24 deletions
4
.github/ISSUE_TEMPLATE/glitch.md
vendored
4
.github/ISSUE_TEMPLATE/glitch.md
vendored
|
@ -7,4 +7,8 @@ assignees: 'vinceliuice'
|
|||
|
||||
---
|
||||
|
||||
<!------------------------------------------------------------------------------
|
||||
Please provide your system info (distro version, etc.) and of course, the screenshot
|
||||
------------------------------------------------------------------------------->
|
||||
|
||||
|
||||
|
|
4
.github/ISSUE_TEMPLATE/idea.md
vendored
4
.github/ISSUE_TEMPLATE/idea.md
vendored
|
@ -7,4 +7,8 @@ assignees: 'vinceliuice'
|
|||
|
||||
---
|
||||
|
||||
<!------------------------------------------------------------------------------
|
||||
What's your idea, or question?
|
||||
------------------------------------------------------------------------------->
|
||||
|
||||
|
||||
|
|
4
.github/ISSUE_TEMPLATE/installation.md
vendored
4
.github/ISSUE_TEMPLATE/installation.md
vendored
|
@ -7,4 +7,8 @@ assignees: 'rivanfebrian123'
|
|||
|
||||
---
|
||||
|
||||
<!------------------------------------------------------------------------------
|
||||
Please copy and paste your error info here
|
||||
------------------------------------------------------------------------------->
|
||||
|
||||
|
||||
|
|
6
.github/SECURITY.md
vendored
6
.github/SECURITY.md
vendored
|
@ -4,11 +4,11 @@
|
|||
|
||||
| Version | Supported |
|
||||
| ------------ | ------------------ |
|
||||
| 2021-06-23 | :white_check_mark: |
|
||||
| 2021-05-05 | :white_check_mark: |
|
||||
| 2021-04-20 | :white_check_mark: |
|
||||
| < 2021-04-08 | :x: |
|
||||
| < 2021-04-20 | :x: |
|
||||
|
||||
## Reporting a Vulnerability
|
||||
|
||||
Report a security vulnerability to https://github.com/vinceliuice/WhiteSur-gtk-theme/issues
|
||||
with a blank template
|
||||
with a blank template or contact one of the authors.
|
||||
|
|
|
@ -21,7 +21,7 @@ WHITESUR_SOURCE=("lib-core.sh")
|
|||
#--------------System--------------#
|
||||
|
||||
export WHITESUR_PID=$$
|
||||
MY_USERNAME="$(logname 2> /dev/null || echo ${SUDO_USER:-${USER}})"
|
||||
MY_USERNAME="${SUDO_USER:-$(logname 2> /dev/null || echo "${USER}")}"
|
||||
|
||||
if command -v gnome-shell &> /dev/null; then
|
||||
if (( $(gnome-shell --version | cut -d ' ' -f 3 | cut -d . -f 1) >= 4 )); then
|
||||
|
|
|
@ -5,16 +5,6 @@
|
|||
* - bookmark bar (toolbar#PersonalToolbar)
|
||||
* - add-ons can add their own toolbars (toolbar) */
|
||||
|
||||
/* buttons on left headerbar */
|
||||
@import "left_header_button_3.css";
|
||||
/*@import "left_header_button_4.css";*/
|
||||
/*@import "left_header_button_5.css";*/
|
||||
|
||||
/* buttons on right headerbar */
|
||||
@import "right_header_button_3.css";
|
||||
/*@import "right_header_button_4.css";*/
|
||||
/*@import "right_header_button_5.css";*/
|
||||
|
||||
@namespace xul "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
||||
|
||||
#nav-bar, #PersonalToolbar, #toolbar-menubar {
|
||||
|
|
|
@ -1,15 +1,35 @@
|
|||
/*------------------------USAGE----------------------------
|
||||
* Remove "/*" at the begining of "@import" line to ENABLE.
|
||||
* Add "/*" at the begining of "@import" line to DISABLE.
|
||||
*/
|
||||
|
||||
/* Import theme */
|
||||
|
||||
/*-------------------Choose your theme---------------------
|
||||
* Enable one of these themes and disable the other ones.
|
||||
*/
|
||||
|
||||
@import "WhiteSur/theme.css"; /**/
|
||||
/*@import "Monterey/theme.css"; /**/
|
||||
|
||||
/*
|
||||
* Here you can enable other theme features not included by default.
|
||||
* To enable a specific feature, uncomment its @import line by removing "/*" at
|
||||
* the beginning of the line. To disable it, put the "/*" back.
|
||||
|
||||
/*--------------Configure your Monterey theme--------------
|
||||
* ONLY for Monterey theme
|
||||
* Enable one of these options and disable the other ones.
|
||||
*/
|
||||
|
||||
/* How many buttons on left headerbar */
|
||||
@import "Monterey/left_header_button_3.css";
|
||||
/*@import "Monterey/left_header_button_4.css";*/
|
||||
/*@import "Monterey/left_header_button_5.css";*/
|
||||
|
||||
/* How many buttons on right headerbar */
|
||||
@import "Monterey/right_header_button_3.css";
|
||||
/*@import "Monterey/right_header_button_4.css";*/
|
||||
/*@import "Monterey/right_header_button_5.css";*/
|
||||
|
||||
|
||||
/*--------------Configure common theme features--------------*/
|
||||
|
||||
/* Hide the tab bar when only one tab is open (GNOMISH)
|
||||
* You should move the new tab button somewhere else for this to work, because by
|
||||
* default it is on the tab bar too. */
|
||||
|
@ -38,9 +58,5 @@
|
|||
/* Hide window buttons (close/min/max) in maximized windows */
|
||||
/*@import "WhiteSur/hide-window-buttons.css"; /**/
|
||||
|
||||
/* Import a custom stylesheet
|
||||
* Everything you add in your customChrome.css file (it doesn't exist by
|
||||
* default) will be included here and preserved between updates, so you can move
|
||||
* your configuration to that file if you don't like setting it up after every
|
||||
* update. You can also apply your own custom styles in that file. */
|
||||
/* Import your custom stylesheet */
|
||||
@import "customChrome.css"; /**/
|
||||
|
|
Loading…
Reference in a new issue