mirror of https://github.com/xrehpicx/pee.git
Compare commits
No commits in common. "main" and "v0.0.4-screen" have entirely different histories.
main
...
v0.0.4-scr
|
@ -11,7 +11,7 @@ Creating tmux sessions with preconfigured panes layouts and commands. inspired f
|
||||||
|
|
||||||
#### Installation
|
#### Installation
|
||||||
```bash
|
```bash
|
||||||
go install github.com/xrehpicx/pee.git@latest
|
go install github.com/xrehpicx/pee@latest
|
||||||
```
|
```
|
||||||
|
|
||||||
#### Initialize a project
|
#### Initialize a project
|
||||||
|
|
|
@ -30,7 +30,6 @@ type Configuration struct {
|
||||||
LastOpened time.Time
|
LastOpened time.Time
|
||||||
Attach bool `yaml:"attach"`
|
Attach bool `yaml:"attach"`
|
||||||
StartupWindow string `yaml:"startup_window"`
|
StartupWindow string `yaml:"startup_window"`
|
||||||
StartupPane int `yaml:"startup_pane"`
|
|
||||||
}
|
}
|
||||||
|
|
||||||
var configDir string
|
var configDir string
|
||||||
|
|
|
@ -26,8 +26,7 @@ func CreateTmuxSession(config *projectconfig.Configuration) error {
|
||||||
log.Debug("Ran command", "command", switchSessionCmd.String())
|
log.Debug("Ran command", "command", switchSessionCmd.String())
|
||||||
} else {
|
} else {
|
||||||
// If it doesn't exist, create the session
|
// If it doesn't exist, create the session
|
||||||
createSessionCmd := exec.Command("tmux", "new-session", "-d", "-s", sessionName, "-c", config.WorkingDir)
|
createSessionCmd := exec.Command("tmux", "new-session", "-d", "-s", sessionName)
|
||||||
// createSessionCmd := exec.Command("tmux", "new-session", "-d", "-s", sessionName)
|
|
||||||
if err := createSessionCmd.Run(); err != nil {
|
if err := createSessionCmd.Run(); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
@ -77,13 +76,6 @@ func CreateTmuxSession(config *projectconfig.Configuration) error {
|
||||||
}
|
}
|
||||||
log.Debug("Ran command", "command", selectPaneCmd.String())
|
log.Debug("Ran command", "command", selectPaneCmd.String())
|
||||||
|
|
||||||
// Change the working directory
|
|
||||||
changeDirCmd := exec.Command("tmux", "send-keys", "-t", paneName, "cd "+config.WorkingDir, "Enter")
|
|
||||||
if err := changeDirCmd.Run(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
log.Debug("Ran command", "command", changeDirCmd.String())
|
|
||||||
|
|
||||||
// Send commands to the pane
|
// Send commands to the pane
|
||||||
sendCommandsCmd := exec.Command("tmux", "send-keys", "-t", paneName, strings.Join(pane.ShellCommand, " && "), "Enter")
|
sendCommandsCmd := exec.Command("tmux", "send-keys", "-t", paneName, strings.Join(pane.ShellCommand, " && "), "Enter")
|
||||||
if err := sendCommandsCmd.Run(); err != nil {
|
if err := sendCommandsCmd.Run(); err != nil {
|
||||||
|
@ -117,16 +109,6 @@ func CreateTmuxSession(config *projectconfig.Configuration) error {
|
||||||
}
|
}
|
||||||
log.Debug("Ran command", "command", selectWindowCmd.String())
|
log.Debug("Ran command", "command", selectWindowCmd.String())
|
||||||
|
|
||||||
// Select initial pane
|
|
||||||
if config.StartupPane > 0 {
|
|
||||||
defaultPane := fmt.Sprintf("%s:%d.%d", sessionName, config.StartupPane, 1)
|
|
||||||
selectPaneCmd := exec.Command("tmux", "select-pane", "-t", defaultPane)
|
|
||||||
if err := selectPaneCmd.Run(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
log.Debug("Ran command", "command", selectPaneCmd.String())
|
|
||||||
}
|
|
||||||
|
|
||||||
if config.Attach {
|
if config.Attach {
|
||||||
switchSessionCmd := exec.Command("tmux", "switch-client", "-t", sessionName)
|
switchSessionCmd := exec.Command("tmux", "switch-client", "-t", sessionName)
|
||||||
if err := switchSessionCmd.Run(); err != nil {
|
if err := switchSessionCmd.Run(); err != nil {
|
||||||
|
@ -192,13 +174,6 @@ func createWindow(config *projectconfig.Configuration, sessionName string, index
|
||||||
}
|
}
|
||||||
log.Debug("Ran command", "command", selectPaneCmd.String())
|
log.Debug("Ran command", "command", selectPaneCmd.String())
|
||||||
|
|
||||||
// Change the working directory for the pane
|
|
||||||
changeDirCmd := exec.Command("tmux", "send-keys", "-t", paneName, "cd "+config.WorkingDir, "Enter")
|
|
||||||
if err := changeDirCmd.Run(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
log.Debug("Ran command", "command", changeDirCmd.String())
|
|
||||||
|
|
||||||
// Send commands to the pane
|
// Send commands to the pane
|
||||||
sendCommandsCmd := exec.Command("tmux", "send-keys", "-t", paneName, strings.Join(pane.ShellCommand, " && "), "Enter")
|
sendCommandsCmd := exec.Command("tmux", "send-keys", "-t", paneName, strings.Join(pane.ShellCommand, " && "), "Enter")
|
||||||
if err := sendCommandsCmd.Run(); err != nil {
|
if err := sendCommandsCmd.Run(); err != nil {
|
||||||
|
@ -218,12 +193,3 @@ func createWindow(config *projectconfig.Configuration, sessionName string, index
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func KillTmuxSession(sessionName string) error {
|
|
||||||
killSessionCmd := exec.Command("tmux", "kill-session", "-t", sessionName)
|
|
||||||
if err := killSessionCmd.Run(); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
log.Debug("Ran command", "command", killSessionCmd.String())
|
|
||||||
return nil
|
|
||||||
}
|
|
||||||
|
|
|
@ -16,24 +16,6 @@ var RootCmd = &cobra.Command{
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
var KillTmuxSessionCmd = &cobra.Command{
|
|
||||||
Use: "kill",
|
|
||||||
Args: cobra.ExactArgs(1),
|
|
||||||
Run: func(cmd *cobra.Command, args []string) {
|
|
||||||
sessionName := args[0]
|
|
||||||
err := controller.KillTmuxSession(sessionName)
|
|
||||||
if err != nil {
|
|
||||||
log.Error(err)
|
|
||||||
return
|
|
||||||
}
|
|
||||||
log.Debug("Killed tmux session", "name", sessionName)
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
func init() {
|
|
||||||
RootCmd.AddCommand(KillTmuxSessionCmd)
|
|
||||||
}
|
|
||||||
|
|
||||||
func ExecuteProjectEnv(projectName string) {
|
func ExecuteProjectEnv(projectName string) {
|
||||||
config, err := projectconfig.GetProjectConfig(projectName)
|
config, err := projectconfig.GetProjectConfig(projectName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
|
@ -92,19 +92,15 @@ func Table(columns []table.Column, rows []table.Row) (table.Row, string) {
|
||||||
)
|
)
|
||||||
|
|
||||||
s := table.DefaultStyles()
|
s := table.DefaultStyles()
|
||||||
|
|
||||||
// rounded borders
|
|
||||||
s.Header = s.Header.
|
s.Header = s.Header.
|
||||||
BorderStyle(lipgloss.NormalBorder()).
|
BorderStyle(lipgloss.NormalBorder()).
|
||||||
BorderForeground(lipgloss.Color("240")).
|
BorderForeground(lipgloss.Color("240")).
|
||||||
BorderBottom(true).
|
BorderBottom(true).
|
||||||
Bold(false)
|
Bold(false)
|
||||||
|
|
||||||
s.Selected = s.Selected.
|
s.Selected = s.Selected.
|
||||||
Foreground(lipgloss.Color("229")).
|
Foreground(lipgloss.Color("229")).
|
||||||
Background(lipgloss.Color("240")).
|
Background(lipgloss.Color("57")).
|
||||||
Bold(false)
|
Bold(false)
|
||||||
|
|
||||||
t.SetStyles(s)
|
t.SetStyles(s)
|
||||||
|
|
||||||
m := model{t, "", help.New(), keys}
|
m := model{t, "", help.New(), keys}
|
||||||
|
|
Loading…
Reference in New Issue