mirror of
https://github.com/bytequill/dotfiles.git
synced 2025-08-02 14:16:57 +02:00
Waybar config overhaul; Docs clarity
This commit is contained in:
parent
f6b4ff31ed
commit
cd5e951dfa
@ -977,7 +977,7 @@ require("lazy").setup({
|
||||
-- NOTE: Mnemonics and notes for keys I want to actively incorporate into my editing
|
||||
-- [[ Insert mode entering ]] note - I keep just using `i` and its frustrating.
|
||||
-- `i` Always enters on the *left* side of the char. `I` start of line - Think about it as [I]nsert mode [I]nside
|
||||
-- `a` Always enters on the *right* side of the char. `A` end of line - Think about it as insert mode [A]utside (phonetic)
|
||||
-- `a` Always enters on the *right* side of the char. `A` end of line - Think about it as insert mode [A]utside (phonetic) (the actual mnemonic is "append" fyi)
|
||||
-- For completeness sake tho I remember to use that one: `o` creates a new line below to edit. `O` above (and enters Insert)
|
||||
-- If you do not want to enter insert mode. Just create a new line use `]<space>` or `[<space>`
|
||||
-- [[ Deletion ]]
|
||||
@ -998,7 +998,7 @@ require("lazy").setup({
|
||||
-- <C-/> - Search from start of buffer
|
||||
-- Notable mention: Single character search
|
||||
-- In normal mode the command `f` followed by a character navigates to the next occurance of the character entered. Use `F` for previous. Using `t` and `T` works the same
|
||||
-- but places the cursor one loc earlier than the target
|
||||
-- but places the cursor one char earlier than the target
|
||||
|
||||
-- The line beneath this is called `modeline`. See `:help modeline`
|
||||
-- vim: ts=2 sts=2 sw=2 et
|
||||
|
@ -13,16 +13,18 @@
|
||||
"hyprland/workspaces",
|
||||
// "sway/mode",
|
||||
// "sway/scratchpad",
|
||||
"hyprland/window",
|
||||
"custom/spotify"
|
||||
// "custom/media"
|
||||
],
|
||||
"modules-center": [
|
||||
"hyprland/window"
|
||||
],
|
||||
// "modules-center": [
|
||||
// "hyprland/window"
|
||||
// ],
|
||||
"modules-right": [
|
||||
"mpd",
|
||||
"idle_inhibitor",
|
||||
"pulseaudio",
|
||||
"upower#ble1", // My universal BT headset
|
||||
"network",
|
||||
// "power-profiles-daemon",
|
||||
"cpu",
|
||||
@ -116,15 +118,16 @@
|
||||
},
|
||||
"clock": {
|
||||
// "timezone": "America/New_York",
|
||||
"format": "{:%Y-%m-%d %H:%M}",
|
||||
"tooltip-format": "<big>{:%Y %B}</big>\n<tt><small>{calendar}</small></tt>",
|
||||
"format-alt": "{:%Y-%m-%d}"
|
||||
},
|
||||
"cpu": {
|
||||
"format": "{usage}% ",
|
||||
"format": "{usage:02}% ({load:0.01f}) ",
|
||||
"tooltip": false
|
||||
},
|
||||
"memory": {
|
||||
"format": "{}% "
|
||||
"format": "{used:0.1f} - {avail:0.1f}G {percentage}% "
|
||||
},
|
||||
"temperature": {
|
||||
// "thermal-zone": 2,
|
||||
@ -171,6 +174,10 @@
|
||||
// "format-full": "",
|
||||
"format-icons": ["", "", "", "", ""]
|
||||
},
|
||||
"upower#ble1": {
|
||||
"native-path": "/org/bluez/hci0/dev_E8_EE_CC_F1_6C_DE",
|
||||
"format": " {percentage}",
|
||||
},
|
||||
"power-profiles-daemon": {
|
||||
"format": "{icon}",
|
||||
"tooltip-format": "Power profile: {profile}\nDriver: {driver}",
|
||||
@ -194,18 +201,18 @@
|
||||
"pulseaudio": {
|
||||
// "scroll-step": 1, // %, can be a float
|
||||
"format": "{volume}% {icon}",
|
||||
"format-bluetooth": "{volume}% {icon} {format_source}",
|
||||
"format-bluetooth-muted": "MUT: {icon} {format_source}",
|
||||
"format-muted": "MUT: {format_source}",
|
||||
"format-bluetooth": "{volume}% ", //{format_source}",
|
||||
"format-bluetooth-muted": "MUT: ", // {format_source}",
|
||||
"format-muted": "MUT: {volume}% {icon}",
|
||||
// "format-source": "{volume}% ",
|
||||
"format-source-muted": "",
|
||||
"format-icons": {
|
||||
"headphone": "",
|
||||
"hands-free": "hands-free:",
|
||||
"headset": "headset:", // prefer text in that one tbh
|
||||
"phone": "",
|
||||
"portable": "",
|
||||
"car": "",
|
||||
// "headphone": "",
|
||||
// "hands-free": "",
|
||||
// "headset": "",
|
||||
// "phone": "",
|
||||
// "portable": "",
|
||||
// "car": "",
|
||||
"default": ["", "", ""]
|
||||
},
|
||||
"on-click": "pavucontrol"
|
||||
|
Loading…
x
Reference in New Issue
Block a user