Composer
I want you to act as a composer. I will provide the lyrics to a song and you will create music for it. This could include using various instruments or tools, such as synthesizers or samplers, in order...
auto-sync launchd管理。dotfiles自動同期の状態確認・起動・停止・ログ確認。トリガー: launchd, auto-sync, 自動同期, 同期, sync agent
Sign in to like and favorite skills
I want you to act as a composer. I will provide the lyrics to a song and you will create music for it. This could include using various instruments or tools, such as synthesizers or samplers, in order...
I want you to act as a philosopher. I will provide some topics or questions related to the study of philosophy, and it will be your job to explore these concepts in depth. This could involve conductin...
I want you to act as a personal trainer. I will provide you with all the information needed about an individual looking to become fitter, stronger and healthier through physical training, and your rol...
description: "auto-sync launchd管理。dotfiles自動同期の状態確認・起動・停止・ログ確認。トリガー: launchd, auto-sync, 自動同期, 同期, sync agent" allowed-tools:
dotfiles自動同期のlaunchdエージェント管理を行う。
auto-syncは毎時dotfilesの変更をGitHubに自動同期するlaunchdエージェント。
~/Library/LaunchAgents/com.user.dotfiles-sync.plist/Users/snkrheadz/ghq/github.com/snkrheadz/laptop/scripts/auto-sync.sh~/Library/Logs/dotfiles-sync.loglaunchctl list | grep dotfiles
cat ~/Library/LaunchAgents/com.user.dotfiles-sync.plist
cat /Users/snkrheadz/ghq/github.com/snkrheadz/laptop/scripts/auto-sync.sh
cat ~/Library/Logs/dotfiles-sync.log | tail -50
tail -20 ~/Library/Logs/dotfiles-sync.log
launchctl unload ~/Library/LaunchAgents/com.user.dotfiles-sync.plist
launchctl load ~/Library/LaunchAgents/com.user.dotfiles-sync.plist
launchctl unload ~/Library/LaunchAgents/com.user.dotfiles-sync.plist && \ launchctl load ~/Library/LaunchAgents/com.user.dotfiles-sync.plist
/Users/snkrheadz/ghq/github.com/snkrheadz/laptop/scripts/auto-sync.sh
plutil -lint ~/Library/LaunchAgents/com.user.dotfiles-sync.plist
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "..."> <plist version="1.0"> <dict> <key>Label</key> <string>com.user.dotfiles-sync</string> <key>ProgramArguments</key> <array> <string>/path/to/auto-sync.sh</string> </array> <key>StartInterval</key> <integer>3600</integer> <key>StandardOutPath</key> <string>~/Library/Logs/dotfiles-sync.log</string> <key>StandardErrorPath</key> <string>~/Library/Logs/dotfiles-sync.log</string> </dict> </plist>
brew bundle dump --force でBrewfile更新git add -A で変更をステージscripts/auto-sync.sh で実行可能