added everythig
This commit is contained in:
137
waybar/.config/waybar/config.jsonc
Normal file
137
waybar/.config/waybar/config.jsonc
Normal file
@@ -0,0 +1,137 @@
|
||||
// -*- mode: jsonc -*-
|
||||
{
|
||||
"layer": "top",
|
||||
"position": "top",
|
||||
"height": 30,
|
||||
"spacing": 0,
|
||||
"modules-left": [
|
||||
"custom/logo",
|
||||
"cpu",
|
||||
"memory",
|
||||
"bluetooth",
|
||||
"mpris"
|
||||
],
|
||||
"modules-center": [
|
||||
"hyprland/workspaces"
|
||||
],
|
||||
"modules-right": [
|
||||
"tray",
|
||||
"power-profiles-daemon",
|
||||
"hyprland/language",
|
||||
"pulseaudio",
|
||||
"network",
|
||||
"battery",
|
||||
"clock",
|
||||
"custom/power"
|
||||
],
|
||||
"mpris": {
|
||||
"format": "DEFAULT: {player_icon} {dynamic}",
|
||||
"format-paused": "DEFAULT: {status_icon} <i>{dynamic}</i>",
|
||||
"player-icons": {
|
||||
"default": "▶",
|
||||
"mpv": "🎵"
|
||||
},
|
||||
"status-icons": {
|
||||
"paused": "⏸"
|
||||
}
|
||||
// "ignored-players": ["firefox"]
|
||||
},
|
||||
"tray": {
|
||||
"icon-size": 14,
|
||||
"spacing": 10
|
||||
},
|
||||
"clock": {
|
||||
"format": "{:%I:%M:%S %p}",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"format-alt": "{:%Y-%m-%d}",
|
||||
"interval": 1
|
||||
},
|
||||
"cpu": {
|
||||
"format": "<span font='14' color='#33d17a'> </span> {usage}%",
|
||||
"tooltip": false,
|
||||
"interval": 1
|
||||
},
|
||||
"memory": {
|
||||
"format": "<span font='14' color='#c061cb'> </span> {}%",
|
||||
"interval": 1
|
||||
},
|
||||
"battery": {
|
||||
"interval": 1,
|
||||
"states": {
|
||||
// "good": 95,
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "<span font='14'>{icon}</span> {capacity}%",
|
||||
"format-full": "<span font='14'>{icon}</span> {capacity}%",
|
||||
"format-charging": "<span font='14'></span> {capacity}%",
|
||||
"format-plugged": "<span font='14'></span> {capacity}%",
|
||||
"format-icons": [
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
"",
|
||||
""
|
||||
]
|
||||
},
|
||||
"power-profiles-daemon": {
|
||||
"format": "{icon}",
|
||||
"tooltip-format": "Power profile: {profile}\nDriver: {driver}",
|
||||
"tooltip": true,
|
||||
"format-icons": {
|
||||
"default": "",
|
||||
"performance": "",
|
||||
"balanced": "",
|
||||
"power-saver": ""
|
||||
}
|
||||
},
|
||||
"network": {
|
||||
"format-wifi": "<span font='14' color='#3584e4'></span> ",
|
||||
"format-ethernet": "<span font='14'></span>",
|
||||
"format-disconnected": "<span font='14'></span>",
|
||||
"format-alt": "{bandwidthDownBytes}",
|
||||
"interval": 1
|
||||
},
|
||||
"pulseaudio": {
|
||||
"format": "<span font='14' color='#f5c211'>{icon}</span> {volume}%",
|
||||
"format-muted": "<span font='14'></span>",
|
||||
"format-source": "{volume}% ",
|
||||
"format-source-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": " ",
|
||||
"hands-free": "",
|
||||
"headset": "",
|
||||
"phone": "",
|
||||
"portable": "",
|
||||
"car": "",
|
||||
"default": [
|
||||
"",
|
||||
"",
|
||||
""
|
||||
]
|
||||
},
|
||||
"on-click": "pavucontrol"
|
||||
},
|
||||
"custom/power": {
|
||||
"format": "⏻",
|
||||
"tooltip": false,
|
||||
"on-click": "wlogout"
|
||||
},
|
||||
"custom/logo": {
|
||||
"format": "<span font='14'></span>",
|
||||
"on-click": "wofi --show drun"
|
||||
},
|
||||
"bluetooth": {
|
||||
"format": "<span font='14'></span>",
|
||||
"format-disabled": "<span font='14'></span>",
|
||||
"format-connected": "<span font='14'></span>",
|
||||
"on-click": "blueman-manager"
|
||||
},
|
||||
"custom/keyboard-layer": {
|
||||
"exec": "~/scripts/keyboard-layer.sh",
|
||||
"return-type": "json",
|
||||
"interval": "once",
|
||||
"format": "🎹 {}"
|
||||
}
|
||||
|
||||
}
|
||||
115
waybar/.config/waybar/config.jsonc.test
Normal file
115
waybar/.config/waybar/config.jsonc.test
Normal file
@@ -0,0 +1,115 @@
|
||||
{
|
||||
"layer": "bottom",
|
||||
"position": "top",
|
||||
"height": 40,
|
||||
"spacing": 2,
|
||||
"exclusive": true,
|
||||
"gtk-layer-shell": true,
|
||||
"passthrough": false,
|
||||
"fixed-center": true,
|
||||
"modules-left": ["hyprland/workspaces", "hyprland/window"],
|
||||
"modules-center": ["mpris"],
|
||||
"modules-right": [
|
||||
"cpu",
|
||||
"memory",
|
||||
"pulseaudio",
|
||||
"clock",
|
||||
"clock#simpleclock",
|
||||
"tray",
|
||||
"custom/notification",
|
||||
"custom/power",
|
||||
],
|
||||
"custom/spotify": {
|
||||
"format": " {}",
|
||||
"return-type": "json",
|
||||
"on-click": "playerctl -p spotify play-pause",
|
||||
"on-click-right": "spotifatius toggle-liked",
|
||||
"on-click-middle": "playerctl -p spotify next",
|
||||
"exec": "spotifatius monitor",
|
||||
},
|
||||
"mpris": {
|
||||
"player": "spotify",
|
||||
"dynamic-order": ["artist", "title"],
|
||||
"format": "{player_icon} {dynamic}",
|
||||
"format-paused": "{status_icon} <i>{dynamic}</i>",
|
||||
"status-icons": {
|
||||
"paused": "",
|
||||
},
|
||||
"player-icons": {
|
||||
"default": "",
|
||||
},
|
||||
},
|
||||
"hyprland/workspaces": {
|
||||
"on-click": "activate",
|
||||
"format": "{id}",
|
||||
"all-outputs": true,
|
||||
"disable-scroll": false,
|
||||
"active-only": false,
|
||||
},
|
||||
"hyprland/window": {
|
||||
"format": "{title}",
|
||||
},
|
||||
"tray": {
|
||||
"show-passive-items": true,
|
||||
"spacing": 10,
|
||||
},
|
||||
"clock#simpleclock": {
|
||||
"tooltip": false,
|
||||
"format": " {:%H:%M}",
|
||||
},
|
||||
"clock": {
|
||||
"format": " {:L%a %d %b}",
|
||||
"calendar": {
|
||||
"format": {
|
||||
"days": "<span weight='normal'>{}</span>",
|
||||
"months": "<span color='#cdd6f4'><b>{}</b></span>",
|
||||
"today": "<span color='#f38ba8' weight='700'><u>{}</u></span>",
|
||||
"weekdays": "<span color='#f9e2af'><b>{}</b></span>",
|
||||
"weeks": "<span color='#a6e3a1'><b>W{}</b></span>",
|
||||
},
|
||||
"mode": "month",
|
||||
"mode-mon-col": 1,
|
||||
"on-scroll": 1,
|
||||
},
|
||||
"tooltip-format": "<span color='#cdd6f4' font='Lexend 16'><tt><small>{calendar}</small></tt></span>",
|
||||
},
|
||||
"cpu": {
|
||||
"format": " {usage}%",
|
||||
"tooltip": true,
|
||||
"interval": 1,
|
||||
},
|
||||
"memory": {
|
||||
"format": " {used:0.1f}Gi",
|
||||
},
|
||||
"pulseaudio": {
|
||||
"format": "{icon} {volume}%",
|
||||
"format-muted": " muted",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"default": [" ", " ", " "],
|
||||
},
|
||||
"on-click": "pavucontrol",
|
||||
},
|
||||
"custom/sep": {
|
||||
"format": "|",
|
||||
"tooltip": false,
|
||||
},
|
||||
"custom/power": {
|
||||
"tooltip": false,
|
||||
"on-click": "wlogout -p layer-shell &",
|
||||
"format": "⏻",
|
||||
},
|
||||
"custom/notification": {
|
||||
"escape": true,
|
||||
"exec": "swaync-client -swb",
|
||||
"exec-if": "which swaync-client",
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"none": "",
|
||||
"notification": "",
|
||||
},
|
||||
"on-click": "sleep 0.1 && swaync-client -t -sw",
|
||||
"return-type": "json",
|
||||
"tooltip": false,
|
||||
},
|
||||
}
|
||||
40
waybar/.config/waybar/config_1.jsonc
Normal file
40
waybar/.config/waybar/config_1.jsonc
Normal file
@@ -0,0 +1,40 @@
|
||||
{
|
||||
"position": "top",
|
||||
"modules-left": ["hyprland/workspaces"],
|
||||
"modules-center": ["hyprland/window"],
|
||||
"modules-right": ["network", "pulseaudio", "battery", "clock"],
|
||||
"clock": {
|
||||
"format": "<span foreground='#f5c2e7'> </span>{:%a %d %H:%M}",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>"
|
||||
},
|
||||
"battery": {
|
||||
"states": {
|
||||
"warning": 30,
|
||||
"critical": 15
|
||||
},
|
||||
"format": "<span size='13000' foreground='#a6e3a1'>{icon} </span> {capacity}%",
|
||||
"format-warning": "<span size='13000' foreground='#B1E3AD'>{icon} </span> {capacity}%",
|
||||
"format-critical": "<span size='13000' foreground='#E38C8F'>{icon} </span> {capacity}%",
|
||||
"format-charging": "<span size='13000' foreground='#B1E3AD'> </span>{capacity}%",
|
||||
"format-plugged": "<span size='13000' foreground='#B1E3AD'> </span>{capacity}%",
|
||||
"format-alt": "<span size='13000' foreground='#B1E3AD'>{icon} </span> {time}",
|
||||
"format-full": "<span size='13000' foreground='#B1E3AD'> </span>{capacity}%",
|
||||
"format-icons": ["", "", "", "", ""],
|
||||
"tooltip-format": "{time}"
|
||||
},
|
||||
"network": {
|
||||
"format-wifi": "<span size='13000' foreground='#f5e0dc'> </span>{essid}",
|
||||
"format-ethernet": "<span size='13000' foreground='#f5e0dc'> </span> Disconnected",
|
||||
"format-linked": "{ifname} (No IP) ",
|
||||
"format-disconnected": "<span size='13000' foreground='#f5e0dc'> </span>Disconnected",
|
||||
"tooltip-format-wifi": "Signal Strenght: {signalStrength}%"
|
||||
},
|
||||
"pulseaudio": {
|
||||
"format": "{icon} {volume}%",
|
||||
"format-muted": "",
|
||||
"format-icons": {
|
||||
"default": ["", "", " "]
|
||||
},
|
||||
"on-click": "pavucontrol"
|
||||
}
|
||||
}
|
||||
26
waybar/.config/waybar/mocha.css
Normal file
26
waybar/.config/waybar/mocha.css
Normal file
@@ -0,0 +1,26 @@
|
||||
@define-color rosewater #f5e0dc;
|
||||
@define-color flamingo #f2cdcd;
|
||||
@define-color pink #f5c2e7;
|
||||
@define-color mauve #cba6f7;
|
||||
@define-color red #f38ba8;
|
||||
@define-color maroon #eba0ac;
|
||||
@define-color peach #fab387;
|
||||
@define-color yellow #f9e2af;
|
||||
@define-color green #a6e3a1;
|
||||
@define-color teal #94e2d5;
|
||||
@define-color sky #89dceb;
|
||||
@define-color sapphire #74c7ec;
|
||||
@define-color blue #89b4fa;
|
||||
@define-color lavender #b4befe;
|
||||
@define-color text #cdd6f4;
|
||||
@define-color subtext1 #bac2de;
|
||||
@define-color subtext0 #a6adc8;
|
||||
@define-color overlay2 #9399b2;
|
||||
@define-color overlay1 #7f849c;
|
||||
@define-color overlay0 #6c7086;
|
||||
@define-color surface2 #585b70;
|
||||
@define-color surface1 #45475a;
|
||||
@define-color surface0 #313244;
|
||||
@define-color base #1e1e2e;
|
||||
@define-color mantle #181825;
|
||||
@define-color crust #11111b;
|
||||
143
waybar/.config/waybar/style.css
Normal file
143
waybar/.config/waybar/style.css
Normal file
@@ -0,0 +1,143 @@
|
||||
* {
|
||||
font-family: "FiraCode Nerd Font";
|
||||
font-size: 13px;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
background-color: rgba(43, 48, 59, 0.5);
|
||||
background: radial-gradient(alpha(@theme_base_color, 0.4), @theme_base_color);
|
||||
color: @theme_fg_color;
|
||||
transition-property: background-color;
|
||||
transition-duration: .5s;
|
||||
}
|
||||
|
||||
window#waybar.hidden {
|
||||
opacity: 0.2;
|
||||
}
|
||||
|
||||
button {
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
}
|
||||
|
||||
button:hover {
|
||||
background: inherit;
|
||||
}
|
||||
|
||||
#workspaces {
|
||||
padding: 5px;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0 10px;
|
||||
background-color: transparent;
|
||||
color: @theme_fg_color;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#workspaces button:hover,
|
||||
#workspaces button.active {
|
||||
background: @theme_selected_bg_color;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
background-color: #eb4d4b;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#battery,
|
||||
#cpu,
|
||||
#memory,
|
||||
#disk,
|
||||
#temperature,
|
||||
#backlight,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#wireplumber,
|
||||
#custom-media,
|
||||
#tray,
|
||||
#mode,
|
||||
#idle_inhibitor,
|
||||
#scratchpad,
|
||||
#power-profiles-daemon,
|
||||
#mpd {
|
||||
padding: 0 10px;
|
||||
color: @theme_fg_color;
|
||||
}
|
||||
|
||||
#window,
|
||||
#workspaces {
|
||||
margin: 0 4px;
|
||||
}
|
||||
|
||||
/* If workspaces is the leftmost module, omit left margin */
|
||||
.modules-left>widget:first-child>#workspaces {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
/* If workspaces is the rightmost module, omit right margin */
|
||||
.modules-right>widget:last-child>#workspaces {
|
||||
margin-right: 0;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#battery,
|
||||
#cpu,
|
||||
#memory,
|
||||
#backlight,
|
||||
#network,
|
||||
#pulseaudio,
|
||||
#custom-media,
|
||||
#tray,
|
||||
#custom-power,
|
||||
#bluetooth,
|
||||
#power-profiles-daemon {
|
||||
padding: 5px 15px;
|
||||
color: @theme_text_color;
|
||||
background-color: alpha(@theme_unfocused_bg_color, 0.4);
|
||||
border-radius: 20px;
|
||||
margin: 0 4px;
|
||||
}
|
||||
|
||||
#custom-power {
|
||||
background-color: #ed333b;
|
||||
border-radius: 20px 0 0 20px;
|
||||
transition: all 250ms ease-in-out;
|
||||
}
|
||||
|
||||
#battery.charging {
|
||||
color: #00ff1c;
|
||||
}
|
||||
|
||||
#clock {
|
||||
border-radius: 20px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
color: orange;
|
||||
}
|
||||
|
||||
#network.disconnected {
|
||||
color: red;
|
||||
}
|
||||
|
||||
#tray {
|
||||
border-radius: 20px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
|
||||
#custom-logo {
|
||||
background-color: #1794d1;
|
||||
padding: 0 17px;
|
||||
border-radius: 0 20px 20px 0;
|
||||
}
|
||||
|
||||
#custom-power {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#bluetooth {
|
||||
border-radius: 20px;
|
||||
margin: 0 5px;
|
||||
}
|
||||
116
waybar/.config/waybar/style.css.test
Normal file
116
waybar/.config/waybar/style.css.test
Normal file
@@ -0,0 +1,116 @@
|
||||
* {
|
||||
min-height: 0;
|
||||
min-width: 0;
|
||||
font-family: Lexend, "JetBrainsMono NFP";
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
window#waybar {
|
||||
transition-property: background-color;
|
||||
transition-duration: 0.5s;
|
||||
/* background-color: #1e1e2e; */
|
||||
/* background-color: #181825; */
|
||||
background-color: #11111b;
|
||||
/* background-color: rgba(24, 24, 37, 0.6); */
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
padding: 0.3rem 0.6rem;
|
||||
margin: 0.4rem 0.25rem;
|
||||
border-radius: 6px;
|
||||
/* background-color: #181825; */
|
||||
background-color: #1e1e2e;
|
||||
color: #cdd6f4;
|
||||
}
|
||||
|
||||
#workspaces button:hover {
|
||||
color: #1e1e2e;
|
||||
background-color: #cdd6f4;
|
||||
}
|
||||
|
||||
#workspaces button.active {
|
||||
background-color: #1e1e2e;
|
||||
color: #89b4fa;
|
||||
}
|
||||
|
||||
#workspaces button.urgent {
|
||||
background-color: #1e1e2e;
|
||||
color: #f38ba8;
|
||||
}
|
||||
|
||||
#clock,
|
||||
#pulseaudio,
|
||||
#custom-logo,
|
||||
#custom-power,
|
||||
#custom-spotify,
|
||||
#custom-notification,
|
||||
#cpu,
|
||||
#tray,
|
||||
#memory,
|
||||
#window,
|
||||
#mpris {
|
||||
padding: 0.3rem 0.6rem;
|
||||
margin: 0.4rem 0.25rem;
|
||||
border-radius: 6px;
|
||||
/* background-color: #181825; */
|
||||
background-color: #1e1e2e;
|
||||
}
|
||||
|
||||
#mpris.playing {
|
||||
color: #a6e3a1;
|
||||
}
|
||||
|
||||
#mpris.paused {
|
||||
color: #9399b2;
|
||||
}
|
||||
|
||||
#custom-sep {
|
||||
padding: 0px;
|
||||
color: #585b70;
|
||||
}
|
||||
|
||||
window#waybar.empty #window {
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
#cpu {
|
||||
color: #94e2d5;
|
||||
}
|
||||
|
||||
#memory {
|
||||
color: #cba6f7;
|
||||
}
|
||||
|
||||
#clock {
|
||||
color: #74c7ec;
|
||||
}
|
||||
|
||||
#clock.simpleclock {
|
||||
color: #89b4fa;
|
||||
}
|
||||
|
||||
#window {
|
||||
color: #cdd6f4;
|
||||
}
|
||||
|
||||
#pulseaudio {
|
||||
color: #b4befe;
|
||||
}
|
||||
|
||||
#pulseaudio.muted {
|
||||
color: #a6adc8;
|
||||
}
|
||||
|
||||
#custom-logo {
|
||||
color: #89b4fa;
|
||||
}
|
||||
|
||||
#custom-power {
|
||||
color: #f38ba8;
|
||||
}
|
||||
|
||||
tooltip {
|
||||
background-color: #181825;
|
||||
border: 2px solid #89b4fa;
|
||||
}
|
||||
Reference in New Issue
Block a user