mirror of
https://github.com/m-housh/dotfiles.git
synced 2026-02-15 14:42:37 +00:00
Added espanso install script
This commit is contained in:
@@ -5,3 +5,5 @@
|
|||||||
|
|
||||||
\.git
|
\.git
|
||||||
\.gitignore
|
\.gitignore
|
||||||
|
|
||||||
|
/scripts/install-espanso-packages
|
||||||
|
|||||||
5
Makefile
5
Makefile
@@ -34,7 +34,10 @@ bootstrap-app-store:
|
|||||||
--debug \
|
--debug \
|
||||||
--file "$(PWD)/macOS/.config/macOS/AppStore.Brewfile"
|
--file "$(PWD)/macOS/.config/macOS/AppStore.Brewfile"
|
||||||
|
|
||||||
bootstrap-non-brews: bootstrap-logitech bootstrap-amazon-workdocs
|
bootstrap-espanso:
|
||||||
|
@scripts/install-espanso-packages
|
||||||
|
|
||||||
|
bootstrap-non-brews: bootstrap-logitech bootstrap-amazon-workdocs bootstrap-espanso
|
||||||
|
|
||||||
stow:
|
stow:
|
||||||
@stow --stow --verbose --target ~ */
|
@stow --stow --verbose --target ~ */
|
||||||
|
|||||||
@@ -1,11 +1,13 @@
|
|||||||
tap "homebrew/cask"
|
tap "homebrew/cask"
|
||||||
tap "homebrew/cask-fonts"
|
tap "homebrew/cask-fonts"
|
||||||
|
tap "federico-terzi/espanso"
|
||||||
|
|
||||||
# TODO: Make the application directory a global variable ??
|
# TODO: Make the application directory a global variable ??
|
||||||
# set arguments for all 'brew install --cask' commands
|
# set arguments for all 'brew install --cask' commands
|
||||||
cask_args appdir: "~/Applications", require_sha: true
|
cask_args appdir: "~/Applications", require_sha: true
|
||||||
|
|
||||||
# formula
|
# formula
|
||||||
|
brew "espanso"
|
||||||
brew "fd" # required for some neovim plugins
|
brew "fd" # required for some neovim plugins
|
||||||
brew "git"
|
brew "git"
|
||||||
brew "mas"
|
brew "mas"
|
||||||
|
|||||||
13
scripts/install-espanso-packages
Executable file
13
scripts/install-espanso-packages
Executable file
@@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
function installEspansoPackages() {
|
||||||
|
echo "Installing packages..."
|
||||||
|
espanso install mac-symbols
|
||||||
|
espanso install all-emojis
|
||||||
|
echo "Restarting espanso"
|
||||||
|
espanso restart
|
||||||
|
}
|
||||||
|
|
||||||
|
installEspansoPackages
|
||||||
Reference in New Issue
Block a user