mirror of
https://github.com/smarttommyau/tmux-for-windows.git
synced 2025-04-04 14:53:27 +00:00
initial repo
This commit is contained in:
commit
da195e8e77
28
README.md
Normal file
28
README.md
Normal file
@ -0,0 +1,28 @@
|
||||
# Tmux for windows using wsl support
|
||||
|
||||
# Pre-request
|
||||
- WSL
|
||||
|
||||
# Setup WSL
|
||||
|
||||
Install a new distro, alpine is recommended.\
|
||||
Follow the basic instruction on installing it.\
|
||||
Then install tmux.\
|
||||
Alpine : apk update&&apk add tmux\
|
||||
Debian/ubuntu: apt install tmux
|
||||
|
||||
Add new file ~/.profile with this code to automatically run powershell in tmux sessions
|
||||
```
|
||||
if [ -n "$TMUX" ]; then
|
||||
pwsh.exe
|
||||
fi
|
||||
```
|
||||
# Install our program
|
||||
Add the path you download our program to environment path.
|
||||
|
||||
# Setup our program
|
||||
Add or edit file tmux.conf on the same folder of our program.
|
||||
```
|
||||
distro: alpine //your distro name
|
||||
```
|
||||
# Enjoy
|
42
tmux.cpp
Normal file
42
tmux.cpp
Normal file
@ -0,0 +1,42 @@
|
||||
#include <cstdlib>
|
||||
#include <fstream>
|
||||
#include <iostream>
|
||||
#include <libloaderapi.h>
|
||||
#include <filesystem>
|
||||
std::string get_exe_loaction(){
|
||||
wchar_t szPath[MAX_PATH];
|
||||
std::string path;
|
||||
GetModuleFileNameW( NULL, szPath, MAX_PATH );
|
||||
return std::filesystem::path{ szPath }.parent_path().u8string() + "\\" ;
|
||||
}
|
||||
int main(int argc,char *argv[]){
|
||||
std::ifstream config;
|
||||
config.open(get_exe_loaction() + "tmux.conf");
|
||||
if(!config.good()){
|
||||
std::cerr << "config file not found" << std::endl;
|
||||
return -1;
|
||||
}
|
||||
std::string distro;
|
||||
bool dis = false;
|
||||
while(!config.eof()){
|
||||
std::string input;
|
||||
config >> input;
|
||||
if(dis && distro.empty()){
|
||||
distro = input;
|
||||
}
|
||||
if(input == "distro:"){
|
||||
dis = true;
|
||||
}
|
||||
}
|
||||
if(!dis){
|
||||
std::cerr << "ERROR: distro name is not set" << std::endl;
|
||||
return -2;
|
||||
}
|
||||
std::string cmd = "wsl.exe -d " + distro + " tmux";
|
||||
for(int i = 1;i < argc;i++){
|
||||
cmd.append(" ");
|
||||
cmd.append(argv[i]);
|
||||
}
|
||||
system(cmd.c_str());
|
||||
return 0;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user