Initial Commit

This commit is contained in:
2024-11-29 07:56:21 +01:00
parent 554b648e64
commit 520091ac6d
224 changed files with 2895 additions and 0 deletions

135
.config/waybar/config.jsonc Normal file
View File

@@ -0,0 +1,135 @@
{
"layer" : "top",
"position" : "top",
"reload_style_on_change": true,
"modules-left": [
"hyprland/workspaces",
],
"modules-center": [
"clock"
],
"modules-right" : [
"tray",
"pulseaudio",
"backlight",
"power-profiles-daemon",
"battery"
],
"battery" : {
"interval": 1,
"states": {
"good": 100,
"warning": 30,
"critical": 15
},
"format-full": "{icon}",
"format-charging": "{capacity}%󰂄",
"format-discharging": "{capacity}%{icon}",
"format-icons": [
"󰁺",
"󰁻",
"󰁼",
"󰁽",
"󰁾",
"󰁿",
"󰂀",
"󰂁",
"󰂂",
"󰁹"
],
"tooltip": true,
"tooltip-format": "{timeTo}",
},
"hyprland/workspaces": {
"format": "{icon}",
"format-icons": {
"active": "",
"default": "",
"special": "󰣇"
},
"show-special": true,
"sort-by": "id",
"all-outputs": true
},
"hyprland/window": {
"format": "",
"icon": true
},
"power-profiles-daemon": {
"format": "{icon}",
"tooltip": true,
"tooltip-format": "{profile}",
"format-icons": {
"performance": "󰋑",
"balanced": "󰛞" ,
"power-saver": "󰋕"
}
},
"pulseaudio": {
"states": {
"loud": 100,
"normal": 60,
"quite": 30,
},
"format-loud": "󰕾",
"format-normal": "󰖀",
"format-quite": "󰕿",
"format-muted": "󰝟",
"tooltip-format": "{desc} ({volume}%)",
"reverse-scrolling": true,
"on-click": "amixer set Master toggle",
"on-click-right": "pavucontrol",
"on-scroll-up": "amixer set Master 1%+",
"on-scroll-down": "amixer set Master 1%-"
},
"tray": {
"reverse-direction": true,
"spacing": 15,
"show-passive-items": true
},
"clock": {
"format": "{:%H:%M}",
"tooltip-format": "{calendar}",
"calendar": {
"mode": "month",
"weeks-pos": "left",
"on-scroll": 1,
"format": {
"months": "<span color='#cdd6f4'><b>{}</b></span>",
"days": "<span color='#a6adc8'><b>{}</b></span>",
"weeks": "<span color='#89b4fa'><b>W{}</b></span>",
"weekdays": "<span color='#a6e3a1'><b>{}</b></span>",
"today": "<span color='#cba6f7'><b><u>{}</u></b></span>"
}
},
"actions": {
"on-click": "shift_up",
"on-click-right": "shift_down",
"on-click-middle": "shift_reset",
"on-scroll-up": "shift_up",
"on-scroll-down": "shift_down"
}
},
"backlight": {
"interval": 1,
"format": "{icon}",
"format-icons": [
"󰹐",
"󱩎",
"󱩏",
"󱩐",
"󱩑",
"󱩒",
"󱩓",
"󱩔",
"󱩕",
"󱩖",
"󰛨"
],
"tooltip-format": "{percent}%",
"on-scroll-up": "brightnessctl set 1%+",
"on-scroll-down": "brightnessctl set 1%-",
"reverse-scrolling": true
}
}

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

@@ -0,0 +1,159 @@
* {
font-family: FontAwesome, Roboto, Helvetica, Arial, sans-serif;
font-size: 15;
}
window#waybar {
background-color: #343547;
border: 3px solid #cdd6f4;
border-top: none;
color: #ffffff;
transition-property: background-color;
transition-duration: .5s;
border-radius: 0 0 50em 50em;
}
box {
padding: 0px;
}
box.modules-left,
box.modules-right {
margin: 0.2em 3em 0.5em 3em;
}
box.modules-left *,
box.modules-right * {
color: #cdd6f4;
margin-left: 0.3em
}
box.modules-center * {
color: #cdd6f4;
}
window#waybar.hidden {
opacity: 0.2;
}
window#waybar.empty {
background-color: transparent;
}
window#waybar.solo {
background-color: #FFFFFF;
}
#battery {
transition: linear 0.1s;
box-shadow: inset #89dceb 0 0 0.5em;
border: 0.2em solid #b4befe;
padding: 0.2em;
border-radius: 1em;
}
#battery:hover {
border-color: #74c7ec;
color: #74c7ec;
box-shadow: inset #74c7ec 0 0 0.5em;
}
#power-profiles-daemon {
transition: linear 0.1s;
box-shadow: inset #89dceb 0 0 0.5em;
border: 0.2em solid #b4befe;
padding: 0.5em;
padding-right: 0.8em;
border-radius: 1em;
}
#power-profiles-daemon:hover {
border-color: #74c7ec;
color: #74c7ec;
box-shadow: inset #74c7ec 0 0 0.5em;
}
#backlight {
transition: linear 0.1s;
box-shadow: inset #89dceb 0 0 0.5em;
border: 0.2em solid #b4befe;
padding: 0.5em;
padding-right: 0.8em;
border-radius: 1em;
}
#backlight:hover {
border-color: #74c7ec;
color: #74c7ec;
box-shadow: inset #74c7ec 0 0 0.5em;
}
#pulseaudio {
transition: linear 0.1s;
box-shadow: inset #89dceb 0 0 0.5em;
border: 0.2em solid #b4befe;
padding: 0.5em;
padding-right: 0;
padding-right: 0.8em;
border-radius: 1em;
}
#pulseaudio:hover {
border-color: #74c7ec;
color: #74c7ec;
box-shadow: inset #74c7ec 0 0 0.5em;
}
#tray {
transition: linear 0.1s;
box-shadow: inset #89dceb 0 0 0.5em;
border: 0.2em solid #b4befe;
padding: 0.5em;
padding-right: 0.8em;
border-radius: 1em;
}
#tray * {
color: black;
}
#workspaces {
transition: linear 0.1s;
box-shadow: inset #89dceb 0 0 0.5em;
border: 0.2em solid #b4befe;
padding: 0.2em;
padding-left: 0;
padding-right: 0.3em;
border-radius: 1em;
}
#workspaces * {
color: #6c7086;
}
#workspaces button {
transition: linear 0.1s;
background-color: #cba6f7;
border-radius: 1em;
padding: 0;
padding-right: 0.9em;
}
#workspaces button:hover {
padding: 0em 2em 0em 1em;
}
#clock {
transition: linear 0.1s;
font-weight: 900;
}
#clock:hover {
color: #74c7ec;
}
tooltip {
background-color: #45475a;
}