diff options
| author | Paul Buetow <paul@buetow.org> | 2025-07-07 09:45:07 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2025-07-07 09:45:07 +0300 |
| commit | 9c29340e73fec8e396bd93a81f10dea2ae821f62 (patch) | |
| tree | 878de004187abd169742531d1e0477d95691a52d | |
| parent | 329a22205d94e3dee50d1f1de6157f33bdee365e (diff) | |
Update
| -rw-r--r-- | dotfiles/gitsyncer/config.json | 4 | ||||
| -rw-r--r-- | dotfiles/helix/config.toml | 2 | ||||
| -rw-r--r-- | dotfiles/scripts/taskwarriorfeeder.rb | 3 |
3 files changed, 8 insertions, 1 deletions
diff --git a/dotfiles/gitsyncer/config.json b/dotfiles/gitsyncer/config.json index 7103d92..2d3bfa9 100644 --- a/dotfiles/gitsyncer/config.json +++ b/dotfiles/gitsyncer/config.json @@ -7,6 +7,10 @@ { "host": "git@github.com", "name": "snonux" + }, + { + "host": "paul@t450:git", + "backupLocation": true } ], "repositories": [], diff --git a/dotfiles/helix/config.toml b/dotfiles/helix/config.toml index 7f8de78..a551b87 100644 --- a/dotfiles/helix/config.toml +++ b/dotfiles/helix/config.toml @@ -1,4 +1,4 @@ -theme = "default" +theme = "acme" [editor] bufferline = "always" diff --git a/dotfiles/scripts/taskwarriorfeeder.rb b/dotfiles/scripts/taskwarriorfeeder.rb index 4d534af..66db0c2 100644 --- a/dotfiles/scripts/taskwarriorfeeder.rb +++ b/dotfiles/scripts/taskwarriorfeeder.rb @@ -61,6 +61,9 @@ def run!(cmd, dry) puts `#{cmd}` raise "Command '#{cmd}' failed with #{$?.exitstatus}" if $?.exitstatus != 0 +rescue StandardError => e + puts "Error running command '#{cmd}': #{e.message}" + exit 1 end def skill_add!(skills_str, dry) |
