Initial ThinkPad Hyprland dotfiles

This commit is contained in:
Pascal
2026-04-28 03:59:07 +02:00
commit 6eb922c417
56 changed files with 6587 additions and 0 deletions

206
config/waybar/style.css Normal file
View File

@@ -0,0 +1,206 @@
* {
min-height: 0;
font-family: "JetBrainsMono Nerd Font", "JetBrains Mono", sans-serif;
font-size: 13px;
font-weight: 700;
border: none;
border-radius: 0;
}
window#waybar {
background: transparent;
color: #cdd6f4;
}
tooltip {
background: rgba(20, 20, 30, 0.95);
border: 1px solid #00ff9c;
border-radius: 10px;
}
tooltip label {
color: #cdd6f4;
padding: 6px 8px;
}
#workspaces {
margin: 0 0 0 2px;
padding: 4px;
background: rgba(24, 24, 37, 0.72);
border: 1px solid rgba(40, 40, 55, 0.8);
border-radius: 18px;
}
#workspaces button {
min-width: 26px;
margin: 0 2px;
padding: 0 7px;
color: #7f849c;
background: transparent;
border-radius: 14px;
transition: all 180ms ease;
}
#workspaces button.active {
min-width: 34px;
color: #000000;
background: linear-gradient(135deg, #00ff9c, #00cc88);
box-shadow: 0 0 14px rgba(40, 40, 55, 0.8);
}
#workspaces button.urgent {
color: #000000;
background: #f38ba8;
}
#workspaces button:hover {
color: #cdd6f4;
background: rgba(40, 40, 55, 0.8);
}
#dynamic-island {
margin: 0;
padding: 0;
background: rgba(5, 5, 9, 0.88);
border-top: 1px solid rgba(40, 40, 55, 0.8);
border-bottom: 1px solid #00ff9c;
border-radius: 21px;
box-shadow: 0 10px 28px rgba(0, 0, 0, 0.36);
}
#custom-dynamic-island,
#custom-media-prev,
#custom-media-toggle,
#custom-media-next,
#window,
#clock {
margin: 0;
padding: 0 11px;
background: transparent;
color: #cdd6f4;
}
#custom-dynamic-island {
min-width: 142px;
padding-left: 16px;
padding-right: 14px;
color: #cdd6f4;
border-radius: 21px;
}
#custom-dynamic-island.playing {
color: #a6e3a1;
}
#custom-dynamic-island.paused {
color: #f9e2af;
}
#custom-dynamic-island.idle {
color: #7f849c;
}
#custom-media-prev,
#custom-media-toggle,
#custom-media-next {
min-width: 20px;
padding: 0 9px;
color: #cdd6f4;
border-radius: 14px;
}
#custom-media-prev:hover,
#custom-media-toggle:hover,
#custom-media-next:hover {
color: #000000;
background: #00ff9c;
}
#window {
min-width: 90px;
color: #cccccc;
}
window#waybar.empty #window {
min-width: 0;
padding: 0;
color: transparent;
}
#clock {
padding-right: 16px;
color: #a6e3a1;
}
.island-drawer {
color: #7f849c;
}
#cpu,
#memory,
#temperature,
#pulseaudio,
#network,
#battery,
#custom-notifications,
#tray {
margin: 0 2px;
padding: 0 10px;
background: rgba(24, 24, 37, 0.72);
border: 1px solid rgba(40, 40, 55, 0.8);
border-radius: 16px;
}
#cpu {
color: #89b4fa;
}
#memory {
color: #f9e2af;
}
#temperature {
color: #a6e3a1;
}
#temperature.critical {
color: #f38ba8;
background: rgba(40, 40, 55, 0.8);
}
#pulseaudio {
color: #fab387;
}
#pulseaudio.muted {
color: #7f849c;
}
#network {
color: #89dceb;
}
#network.disconnected {
color: #f38ba8;
}
#battery {
color: #a6e3a1;
}
#battery.warning {
color: #f9e2af;
}
#battery.critical {
color: #f38ba8;
background: rgba(40, 40, 55, 0.8);
}
#custom-notifications {
color: #cba6f7;
}
#tray {
padding-right: 12px;
}