[taffybar] Update looks

This commit is contained in:
Ivan Malison 2017-10-27 13:42:21 -07:00
parent 60f0be0609
commit 653e9bc8dc
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8
3 changed files with 56 additions and 51 deletions

@ -1 +1 @@
Subproject commit 103897e89fb76147b04d7c8d9bce321ea8882d79 Subproject commit eedefa10c8bf35a1f31602b49f3cb6456035693c

View File

@ -1,68 +1,73 @@
@define-color taffybar_bg_color #000000; @define-color bg-color #000000;
@define-color taffybar_bg_tone #212121; @define-color bg-tone #1E1E20;
@define-color taffybar_active_window_color rgba(255, 255, 255, .5); @define-color active-window-color #374140;
@define-color urgent-window-color #D9CB9E;
.IconContainer { @define-color font-color #D9CB9E;
border-radius: 5px;
}
.IconImage {
padding: 2px;
}
.IconContainer {
transition: background-color .5s, opacity.5s;
opacity: 1;
background-color: @taffybar-bg-tone;
}
.IconContainer.Urgent {
transition: background-color .5s;
background-color: #ff0000;
}
.IconContainer.Active {
transition: background-color .5s;
background-color: @taffybar_active_window_color;
}
.IconContainer.Minimized .IconImage {
transition: opacity .5s;
opacity: .3;
}
.Contents { .Contents {
border-radius: 5px; border-radius: 5px;
padding: 3px; padding: 3px;
} }
.Contents.Cpu {
}
.Active .Contents, .Visible .Contents { .Active .Contents, .Visible .Contents {
background-color: @taffybar_bg_tone; background-color: @bg-tone;
} }
.InnerPad { .InnerPad {
padding: 4px; padding: 4px;
} }
.Taffybar {
background-color: @taffybar_bg_color;
border-radius: 5px;
}
.Taffybar * {
font-family: "Fira Sans", sans-serif;
font-size: 10pt;
}
.WorkspaceLabel { .WorkspaceLabel {
padding-right: 3px; padding-right: 3px;
padding-left: 2px; padding-left: 2px;
font-size: 12pt; font-size: 12pt;
} }
#WindowSwitcher { .IconContainer {
background-color: @taffybar_bg_color; transition: background-color .5s;
border-radius: 5px;
}
@keyframes spin {
to { -gtk-icon-transform: rotate(1turn); }
}
.IconContainer.Active {
transition: background-color .5s;
background-color: @active-window-color;
}
.IconContainer.Urgent {
transition: background-color .5s;
background-color: @urgent-window-color;
animation-name: spin;
animation-duration: 1s;
animation-timing-function: linear;
animation-iteration-count: infinite;
}
.IconContainer.Minimized .IconImage {
transition: opacity .5s;
opacity: .3;
}
.IconImage {
transition: opacity .5s;
padding: 2px;
opacity: 1;
}
#WindowSwitcher, #Taffybar_WindowSwitcher {
background-color: @bg-color;
}
.Taffybar {
background-color: @bg-color;
border-radius: 5px;
}
.Taffybar * {
font-family: "Fira Sans", sans-serif;
font-size: 10pt;
color: @font-color;
} }

View File

@ -211,7 +211,7 @@ main = do
, showWorkspaceFn = hideEmpty , showWorkspaceFn = hideEmpty
, updateRateLimitMicroseconds = 100000 , updateRateLimitMicroseconds = 100000
, updateOnWMIconChange = True , updateOnWMIconChange = True
, debugMode = False , debugMode = True
, labelSetter = workspaceNamesLabelSetter , labelSetter = workspaceNamesLabelSetter
} }
netMonitor = netMonitorMultiNew 1.5 interfaceNames netMonitor = netMonitorMultiNew 1.5 interfaceNames
@ -230,7 +230,7 @@ main = do
, endWidgets = , endWidgets =
[ batteryBarNew defaultBatteryConfig 1.0 [ batteryBarNew defaultBatteryConfig 1.0
, makeContents clock "Cpu" , makeContents clock "Cpu"
-- , systrayNew , makeContents systrayNew "Cpu"
, makeContents cpu "Cpu" , makeContents cpu "Cpu"
, makeContents mem "Cpu" , makeContents mem "Cpu"
, makeContents netMonitor "Cpu" , makeContents netMonitor "Cpu"