Basic rice set up. Still need to add a way to reiably update the package lists and i need a launcher.
This commit is contained in:
commit
3e89f350a6
107 changed files with 7553 additions and 0 deletions
104
private_dot_config/waybar/config
Normal file
104
private_dot_config/waybar/config
Normal file
|
|
@ -0,0 +1,104 @@
|
|||
{
|
||||
"layer": "bottom",
|
||||
"position": "bottom",
|
||||
"height": 26,
|
||||
"spacing": 5,
|
||||
|
||||
"modules-left": ["hyprland/workspaces", "custom/platform-profile", "temperature"],
|
||||
"modules-center": ["clock"],
|
||||
"modules-right": ["wireplumber", "battery", "idle_inhibitor", "network", "bluetooth", "tray"],
|
||||
|
||||
"hyprland/workspaces": {
|
||||
"format": "<span size='larger'>{icon}</span>",
|
||||
"on-click": "activate",
|
||||
"format-icons": {
|
||||
"active": "\uf444",
|
||||
"default": "\uf4c3"
|
||||
},
|
||||
"icon-size": 10,
|
||||
"sort-by-number": true,
|
||||
"persistent-workspaces": {
|
||||
"1": [],
|
||||
"2": [],
|
||||
"3": [],
|
||||
"4": [],
|
||||
"5": [],
|
||||
}
|
||||
},
|
||||
|
||||
"clock": {
|
||||
"format": "{:%d.%m.%Y | %H:%M}"
|
||||
},
|
||||
|
||||
"wireplumber": {
|
||||
"format": "\udb81\udd7e {volume}%",
|
||||
"max-volume": 100,
|
||||
"scroll-step": 5
|
||||
},
|
||||
|
||||
"battery": {
|
||||
"bat": "BAT1",
|
||||
"interval": 60,
|
||||
"format": "{icon} {capacity}%",
|
||||
"format-icons": ["\uf244", "\uf243", "\uf242", "\uf241", "\uf240"],
|
||||
},
|
||||
|
||||
"memory": {
|
||||
"interval": 30,
|
||||
"format": "\uf4bc {used:0.1f}G"
|
||||
},
|
||||
|
||||
"temperature": {
|
||||
"format": "{temperatureC}°C"
|
||||
},
|
||||
|
||||
"network": {
|
||||
"format": "",
|
||||
"format-ethernet": "\udb83\udc9d",
|
||||
"format-wifi": "{icon}",
|
||||
"format-disconnected": "\udb83\udc9c",
|
||||
"format-icons": ["\udb82\udd2f", "\udb82\udd1f", "\udb82\udd22", "\udb82\udd25", "\udb82\udd28"],
|
||||
"tooltip-format-wifi": "{essid} ({signalStrength}%)",
|
||||
"tooltip-format-ethernet": "{ifname}",
|
||||
"tooltip-format-disconnected": "Disconnected",
|
||||
},
|
||||
|
||||
"bluetooth": {
|
||||
"format": "\udb80\udcaf",
|
||||
"format-disabled": "\udb80\udcb2",
|
||||
"format-connected": "\udb80\udcb1",
|
||||
"tooltip-format": "{controller_alias}\t{controller_address}",
|
||||
"tooltip-format-connected": "{controller_alias}\t{controller_address}\n\n{device_enumerate}",
|
||||
"tooltip-format-enumerate-connected": "{device_alias}\t{device_address}"
|
||||
},
|
||||
|
||||
"hyprland/language": {
|
||||
"format": "{short}"
|
||||
},
|
||||
|
||||
"tray": {
|
||||
"icon-size": 16,
|
||||
"spacing": 16
|
||||
},
|
||||
|
||||
"custom/platform-profile": {
|
||||
"format": "{icon}",
|
||||
"exec": "~/.config/waybar/platform_profile.sh",
|
||||
"return-type": "json",
|
||||
"restart-interval": 1,
|
||||
"format-icons": {
|
||||
"low-power": " ",
|
||||
"balanced": " ",
|
||||
"performance": " ",
|
||||
"default": "?"
|
||||
},
|
||||
},
|
||||
|
||||
"idle_inhibitor": {
|
||||
"format": "{icon}",
|
||||
"format-icons": {
|
||||
"activated": "\udb80\udd76",
|
||||
"deactivated": "\udb83\udfaa"
|
||||
}
|
||||
}
|
||||
}
|
||||
2
private_dot_config/waybar/executable_platform_profile.sh
Normal file
2
private_dot_config/waybar/executable_platform_profile.sh
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
#!/bin/sh
|
||||
echo "{\"alt\": \"$(cat /sys/firmware/acpi/platform_profile)\"}"
|
||||
39
private_dot_config/waybar/style.css.tmpl
Normal file
39
private_dot_config/waybar/style.css.tmpl
Normal file
|
|
@ -0,0 +1,39 @@
|
|||
@define-color foreground #{{ .colors.base05 }};
|
||||
@define-color foreground-inactive #{{.colors.base04 }};
|
||||
@define-color background #{{.colors.base01 }};
|
||||
|
||||
* {
|
||||
font-family: JetBrainsMono Nerd Font;
|
||||
font-size: 14px;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
#waybar {
|
||||
color: @foreground;
|
||||
background-color: @background;
|
||||
}
|
||||
|
||||
#workspaces button {
|
||||
color: @foreground;
|
||||
padding-left: 0.7em;
|
||||
}
|
||||
|
||||
#workspaces button.empty {
|
||||
color: @foreground-inactive;
|
||||
}
|
||||
|
||||
#memory,
|
||||
#custom-platform-profile {
|
||||
padding-left: 1em
|
||||
}
|
||||
|
||||
#wireplumber,
|
||||
#battery,
|
||||
#idle_inhibitor,
|
||||
#language,
|
||||
#network,
|
||||
#bluetooth,
|
||||
#tray {
|
||||
padding-right: 1em
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue