Resume claude after running out of usage limit. For Macos, it uses the automation scripts to resume usage.
For instance if your usage resets at 3pm
./resume_claude.sh "15:00"
Resume claude after running out of usage limit. For Macos, it uses the automation scripts to resume usage.
For instance if your usage resets at 3pm
./resume_claude.sh "15:00"
| #!/bin/bash | |
| # Script that updates the iTerm Badge with the hostname of the server that you are | |
| # connecting to with ssh. | |
| # | |
| # Instructions: | |
| # - Put this script in ~/bin/ssh (this will override the default ssh binary) | |
| # - Run 'chmod +x ~/bin/ssh' to give execution permission to the script | |
| # - Open iTerm\Preferences\Profiles, select your profile and put '\(user.current_ssh_host)' in the Badge text box | |
| # - Enjoy! |
Mainly sourced from frontend charm
| # Default shell zsh | |
| set -g default-command "/bin/zsh | |
| # Set new panes to open in current directory | |
| bind c new-window -c "#{pane_current_path}" | |
| bind '"' split-window -c "#{pane_current_path}" | |
| bind % split-window -h -c "#{pane_current_path}" |
| { | |
| "shortcuts": [ | |
| { | |
| "command": "application:toggle-left-area", | |
| "keys": [ | |
| "Accel B" | |
| ], | |
| "selector": "body", | |
| "disabled": true |
| { | |
| "shortcuts": [ | |
| { | |
| "command": "application:toggle-left-area", | |
| "keys": [ | |
| "Accel B" | |
| ], | |
| "selector": "body", | |
| "disabled": true |
| ;; -*- mode: emacs-lisp -*- | |
| ;; This file is loaded by Spacemacs at startup. | |
| ;; It must be stored in your home directory. | |
| (defun dotspacemacs/layers () | |
| "Configuration Layers declaration. | |
| You should not put any user code in this function besides modifying the variable | |
| values." | |
| (setq-default | |
| ;; Base distribution to use. This is a layer contained in the directory |
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to log to the console when each text editor is saved. | |
| # | |
| # atom.workspace.observeTextEditors (editor) -> | |
| # editor.onDidSave -> |