Skip to content
This repository was archived by the owner on Sep 15, 2018. It is now read-only.

Commit 61751ce

Browse files
committed
Renamed launchd plist to com.codeography.captured
1 parent 5949cbe commit 61751ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bin/captured

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ OptionParser.new do |opts|
5050

5151
opts.on('--remove', "Remove captured from launchd") do
5252
puts "Uninstalling captured"
53-
File.delete "#{ENV['HOME']}/Library/LaunchAgents/com.github.csexton.captured"
54-
system "launchctl remove com.github.csexton.captured"
53+
File.delete "#{ENV['HOME']}/Library/LaunchAgents/com.codeography.captured"
54+
system "launchctl remove com.codeography.captured"
5555
exit
5656
end
5757

@@ -88,7 +88,7 @@ if options[:install] == true
8888
plist_path = "#{ENV['HOME']}/Library/LaunchAgents/"
8989
template = ERB.new(File.open("#{File.dirname(__FILE__)}/../etc/launchd.plist.erb", 'r').read)
9090
FileUtils.mkdir_p plist_path
91-
File.open("#{plist_path}/com.github.csexton.captured", 'w') do |f|
91+
File.open("#{plist_path}/com.codeography.captured", 'w') do |f|
9292
f.write(template.result(binding))
9393
end
9494
system "launchctl load ~/Library/LaunchAgents"

etc/launchd.plist.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<plist version="1.0">
44
<dict>
55
<key>Label</key>
6-
<string>com.github.csexton.captured</string>
6+
<string>com.codeography.captured</string>
77
<key>LowPriorityIO</key>
88
<true/>
99
<key>Program</key>

0 commit comments

Comments
 (0)