diff --git a/.config/nvim/init.lua b/.config/nvim/init.lua index e183a77..a4ee8c5 100644 --- a/.config/nvim/init.lua +++ b/.config/nvim/init.lua @@ -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 `]` or `[` -- [[ Deletion ]] @@ -998,7 +998,7 @@ require("lazy").setup({ -- - 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 diff --git a/.config/waybar/config.jsonc b/.config/waybar/config.jsonc index 08be1c8..00e0ca0 100644 --- a/.config/waybar/config.jsonc +++ b/.config/waybar/config.jsonc @@ -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": "{:%Y %B}\n{calendar}", "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" diff --git a/README.md b/README.md index c6f1539..8508ef7 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ This repo contains submodules. These are not pulled with the default clone comma ```sh git submodule update --init ``` -or clone with them: +or clone the repo with them: ```sh git clone --recurse-submodules https://git.codebased.xyz/bytequill/dotfiles.git ```