From e458b4cb19bbdb053a69a0b8b9bd1e361fc51d34 Mon Sep 17 00:00:00 2001 From: Jim Myhrberg Date: Mon, 4 May 2020 20:57:02 +0100 Subject: [PATCH] Remove host specific configuration for hostname UAC00013 --- Brewfile | 12 ------------ hammerspoon/hosts/UAC00013.lua | 15 --------------- 2 files changed, 27 deletions(-) delete mode 100644 hammerspoon/hosts/UAC00013.lua diff --git a/Brewfile b/Brewfile index 04f6cb1..292ad2b 100644 --- a/Brewfile +++ b/Brewfile @@ -294,15 +294,3 @@ if hostname == 'noct' mas 'WireGuard', id: 1_451_685_025 mas 'feedly', id: 865_500_966 end - -if hostname == 'UAC00013' - brew 'gnu-getopt' - brew 'mariadb@10.0' - brew 'packer' - brew 'skopeo' - brew 'sops' - - mas 'HiddenMe', id: 467_040_476 - mas 'Microsoft Remote Desktop 8', id: 715_768_417 - mas 'Microsoft Remote Desktop 10', id: 1_295_203_466 -end diff --git a/hammerspoon/hosts/UAC00013.lua b/hammerspoon/hosts/UAC00013.lua deleted file mode 100644 index 95b8406..0000000 --- a/hammerspoon/hosts/UAC00013.lua +++ /dev/null @@ -1,15 +0,0 @@ -local obj = {} - -function obj.init() - local apptoggle = require('app_toggle') - - apptoggle:bind({'cmd', 'alt', 'ctrl'}, 'A', 'Activity Monitor') - apptoggle:bind({'cmd', 'ctrl'}, '4', 'Skitch') - apptoggle:bind({'cmd', 'ctrl'}, 'B', 'Sequel Pro') - apptoggle:bind({'cmd', 'ctrl'}, 'D', 'Mail') - apptoggle:bind({'cmd', 'ctrl'}, 'E', 'Emacs', '/Applications/Emacs.app') - apptoggle:bind({'cmd', 'ctrl'}, 'C', 'Calendar') - apptoggle:bind({'cmd', 'ctrl'}, 'Z', 'Microsoft Teams') -end - -return obj