initial repo

This commit is contained in:
smarttommyau 2022-05-22 00:14:25 +08:00
commit da195e8e77
2 changed files with 70 additions and 0 deletions

28
README.md Normal file
View 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
View 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;
}