Compare commits

...

2 Commits

Author SHA1 Message Date
838e99f3de bluetooth scripts: Notify status 2023-12-24 20:51:42 +01:00
a77c1289a4 nvim: Show some whitespace 2023-12-24 20:50:46 +01:00
3 changed files with 15 additions and 2 deletions

View File

@ -29,6 +29,7 @@ opt.hlsearch = false -- bool: Highlight search matches
opt.shiftwidth = 4 -- num: Size of an indent
opt.softtabstop = 4 -- num: Number of spaces tabs count for in insert mode
opt.tabstop = 4 -- num: Number of spaces tabs count for
opt.list = true -- show some whitespace
-- [[ Splits ]]
opt.splitright = true -- bool: Place new window to right of current one

View File

@ -2,5 +2,11 @@
set -x
notify-send "Connecting to Högtalare"
bluetoothctl power on
bluetoothctl connect 04:FE:A1:71:4C:70
if bluetoothctl connect 04:FE:A1:71:4C:70; then
notify-send "Connected"
else
notify-send "Failed to connect to Högtalare"
fi

View File

@ -2,5 +2,11 @@
set -x
notify-send "Connecting to Lurar"
bluetoothctl power on
bluetoothctl connect 94:DB:56:41:C0:38
if bluetoothctl connect 94:DB:56:41:C0:38; then
notify-send "Connected"
else
notify-send "Failed to connect to Lurar"
fi