Add Obsidian as a waybar app launcher button alongside existing launchers. Comment out nvidia-specific environment variables in hypr/base.conf (LIBVA_DRIVER_NAME, GBM_BACKEND, etc.) so the config works on all systems by default. Also includes prior uncommitted changes: .gitignore updates, hyprpaper config, package list updates, and various hypr config refinements. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
139 lines
2.2 KiB
CSS
139 lines
2.2 KiB
CSS
|
|
* {
|
|
font-family: "URWGothic-Book", monospace;
|
|
font-size: 16px;
|
|
min-height: 0;
|
|
border: none;
|
|
border-radius: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
window#waybar {
|
|
background-color: @color_bg;
|
|
color: @color_primary;
|
|
}
|
|
|
|
/* Workspaces */
|
|
#workspaces button {
|
|
padding: 0 8px;
|
|
background-color: @color_alt_bg;
|
|
color: @color_white;
|
|
border-bottom: 2px solid transparent;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
background-color: @color_alt_bg;
|
|
border-bottom: 2px solid @color_primary;
|
|
box-shadow: none;
|
|
}
|
|
|
|
#workspaces button.focused,
|
|
#workspaces button.active {
|
|
background-color: @color_bg;
|
|
color: @color_white;
|
|
border-bottom: 2px solid @color_primary;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: @color_tertiary;
|
|
color: @color_white;
|
|
}
|
|
|
|
#mode {
|
|
background-color: @color_tertiary;
|
|
color: @color_text_dark;
|
|
padding: 0 8px;
|
|
font-style: italic;
|
|
}
|
|
|
|
/* Right-side modules */
|
|
#custom-greetings,
|
|
#custom-history,
|
|
#custom-claudebar,
|
|
#pulseaudio,
|
|
#cpu,
|
|
#memory,
|
|
#disk,
|
|
#network,
|
|
#battery,
|
|
#clock {
|
|
padding: 0 10px;
|
|
color: @color_primary;
|
|
}
|
|
|
|
/* Pink separators between modules (matching i3bar separator color) */
|
|
#custom-history,
|
|
#custom-claudebar,
|
|
#pulseaudio,
|
|
#cpu,
|
|
#memory,
|
|
#disk,
|
|
#network,
|
|
#battery,
|
|
#clock {
|
|
border-left: 1px solid @color_tertiary;
|
|
}
|
|
|
|
#battery.warning {
|
|
color: @color_secondary;
|
|
}
|
|
|
|
#battery.critical {
|
|
color: @color_tertiary;
|
|
}
|
|
|
|
#custom-greetings {
|
|
color: @color_secondary;
|
|
}
|
|
|
|
#clock {
|
|
color: @color_tertiary;
|
|
}
|
|
|
|
/* claudebar severity classes */
|
|
#custom-claudebar.low {
|
|
color: @color_primary;
|
|
}
|
|
|
|
#custom-claudebar.mid {
|
|
color: @color_secondary;
|
|
}
|
|
|
|
#custom-claudebar.high {
|
|
color: @color_tertiary;
|
|
}
|
|
|
|
#custom-claudebar.critical {
|
|
color: @color_tertiary;
|
|
}
|
|
|
|
/* App launcher buttons */
|
|
#custom-steam,
|
|
#custom-waterfox,
|
|
#custom-discord,
|
|
#custom-spotify,
|
|
#custom-obsidian {
|
|
padding: 0 10px;
|
|
color: @color_primary;
|
|
}
|
|
|
|
#custom-steam {
|
|
margin-left: 8px;
|
|
border-left: 1px solid @color_tertiary;
|
|
}
|
|
|
|
#tray {
|
|
padding: 0 8px;
|
|
border-left: 1px solid @color_tertiary;
|
|
}
|
|
|
|
#tray > .passive {
|
|
-gtk-icon-effect: dim;
|
|
}
|
|
|
|
#tray > .needs-attention {
|
|
-gtk-icon-effect: highlight;
|
|
background-color: @color_tertiary;
|
|
}
|