Skip to content

Commit

Permalink
sketchybar: disable hotload trial
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Feb 25, 2024
1 parent ac6f6f0 commit 4e605ff
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

-- This is only needed once to install the sketchybar module
-- (or for an update of the module)
os.execute("[ ! -d $HOME/.local/share/sketchybar_lua/ ] && (git clone https://github.com/FelixKratz/SbarLua.git /tmp/SbarLua && cd /tmp/SbarLua/ && make install && rm -rf /tmp/SbarLua/)")
os.execute(
"[ ! -d $HOME/.local/share/sketchybar_lua/ ] && (git clone https://github.com/FelixKratz/SbarLua.git /tmp/SbarLua && cd /tmp/SbarLua/ && make install && rm -rf /tmp/SbarLua/)")

-- Add the sketchybar module to the package cpath (the module could be
-- installed into the default search path then this would not be needed)
Expand All @@ -16,7 +17,7 @@ sbar = require("sketchybar")
-- config calls to see the difference -- yeah..
sbar.begin_config()
require("init")
sbar.hotload(true)
-- sbar.hotload(true)
sbar.end_config()

-- Run the event loop of the sketchybar module (without this there will be no
Expand Down

0 comments on commit 4e605ff

Please sign in to comment.