-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
124 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -44,3 +44,4 @@ bin | |
.Xresources.office | ||
.yaourtrc | ||
.zshrc | ||
.themes/op/xfce-notify-4.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
#XfceNotifyWindow { | ||
font-family: "Ubuntu Mono"; | ||
} | ||
|
||
#XfceNotifyWindow { | ||
background-color: shade(#686868, 0.3); | ||
color: #fcfcfc; | ||
border: 1px solid shade(#686868, 0.6); | ||
border-radius: 6px; | ||
} | ||
|
||
#XfceNotifyWindow button { | ||
background-image: none; | ||
background-color: shade(#686868, 0.3); | ||
color: #fcfcfc; | ||
border-color: shade(#fcfcfc, 0.35); | ||
border-radius: 3px; | ||
} | ||
|
||
#XfceNotifyWindow button:hover { | ||
background-color: shade(#686868, 0.4); | ||
border-color: shade(#fcfcfc, 0.45); | ||
} | ||
|
||
#XfceNotifyWindow label#summary { | ||
font-weight: bold; | ||
} | ||
|
||
#XfceNotifyWindow progressbar { | ||
min-height: 6px; | ||
border-radius: 3px; | ||
} | ||
|
||
#XfceNotifyWindow progressbar progress { | ||
background-image: none; | ||
background-color: #fcfcfc; | ||
border: none; | ||
box-shadow: none; | ||
} | ||
|
||
#XfceNotifyWindow progressbar trough { | ||
background-image: linear-gradient(to bottom, | ||
shade(#686868, 0.65), | ||
shade(#686868, 1.25) | ||
); | ||
border: 1px solid shade(#686868, 0.2); | ||
border-radius: 3px; | ||
padding: 1px 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
style "notify-window" | ||
{ | ||
XfceNotifyWindow::summary-bold = 1 | ||
XfceNotifyWindow::border-color = "#ffffff" | ||
XfceNotifyWindow::border-color-hover = "#ffffff" | ||
XfceNotifyWindow::border-radius = 10.0 | ||
XfceNotifyWindow::border-width = 0.1 | ||
XfceNotifyWindow::border-width-hover = 0.1 | ||
bg[NORMAL] = "#111" | ||
} | ||
|
||
style "notify-button" | ||
{ | ||
bg[NORMAL] = "#202020" | ||
bg[PRELIGHT] = "#303030" | ||
bg[ACTIVE] = "#222222" | ||
fg[NORMAL] = "#ffffff" | ||
fg[PRELIGHT] = "#ffffff" | ||
engine "murrine" { | ||
border_shades = { 2.9, 2.6 } | ||
shadow_shades = {2.4,2.4} | ||
roundness = 4 | ||
} | ||
} | ||
|
||
style "notify-text" | ||
{ | ||
fg[NORMAL] = "#ffffff" | ||
fg[PRELIGHT] = "#ffffff" | ||
GtkWidget::link-color = "#a7a7a7" | ||
} | ||
|
||
style "notify-summary" | ||
{ | ||
font_name = "Bold" | ||
} | ||
|
||
style "notify-progressbar" | ||
{ | ||
GtkProgressBar::min-horizontal-bar-height = 4 | ||
xthickness = 0 | ||
ythickness = 0 | ||
|
||
fg[PRELIGHT] = "#000000" | ||
bg[NORMAL] = "#fefefe" | ||
bg[SELECTED] = "#fefefe" | ||
bg[ACTIVE] = "#696969" | ||
|
||
engine "murrine" { | ||
gradient_shades = { 1.0, 1.0, 1.0, 1.0 } | ||
contrast = 0.5 | ||
border_shades = { 0.9, 0.9 } | ||
progressbarstyle = 0 | ||
} | ||
} | ||
|
||
class "XfceNotifyWindow" style "notify-window" | ||
widget "XfceNotifyWindow.*.summary" style "notify-summary" | ||
widget_class "XfceNotifyWindow.*<GtkButton>" style "notify-button" | ||
widget_class "XfceNotifyWindow.*.<GtkLabel>" style "notify-text" | ||
widget_class "XfceNotifyWindow.*.<GtkProgress>" style "notify-progressbar" | ||
widget_class "XfceNotifyWindow.*.<GtkProgressBar>" style "notify-progressbar" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,4 +9,4 @@ fi | |
dir=~/.config/chrome-${profile}/ | ||
mkdir -p $dir | ||
|
||
exec chromium --user-data-dir=$dir | ||
exec firefox --profile $dir |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters