Compare commits
2 Commits
cd2e4cc650
...
838e99f3de
| Author | SHA1 | Date | |
|---|---|---|---|
|
838e99f3de
|
|||
|
a77c1289a4
|
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Reference in New Issue
Block a user