Compare commits
10 Commits
db53ee6c3b
...
6a5e11bf18
Author | SHA1 | Date | |
---|---|---|---|
6a5e11bf18 | |||
0dbb3cee34 | |||
106181f022 | |||
36c8b4d2d7 | |||
49768a38a7 | |||
3ba25af848 | |||
24220d8e07 | |||
ffe26182cf | |||
8fbae80d04 | |||
26ba41d08f |
45
.gitignore
vendored
45
.gitignore
vendored
@ -1,39 +1,24 @@
|
||||
# Created by https://www.toptal.com/developers/gitignore/api/d,macos,linux,windows
|
||||
# Edit at https://www.toptal.com/developers/gitignore?templates=d,macos,linux,windows
|
||||
|
||||
### D ###
|
||||
# Compiled Object files
|
||||
*.o
|
||||
*.obj
|
||||
|
||||
# Compiled Dynamic libraries
|
||||
*.so
|
||||
*.dylib
|
||||
*.dll
|
||||
|
||||
# Compiled Static libraries
|
||||
*.a
|
||||
*.lib
|
||||
|
||||
# Executables
|
||||
*.exe
|
||||
|
||||
# DUB
|
||||
.dub
|
||||
docs.json
|
||||
__dummy.html
|
||||
docs/
|
||||
|
||||
# Code coverage
|
||||
/prim
|
||||
prim.so
|
||||
prim.dylib
|
||||
prim.dll
|
||||
prim.a
|
||||
prim.lib
|
||||
prim-test-*
|
||||
*.exe
|
||||
*.pdb
|
||||
*.o
|
||||
*.obj
|
||||
*.lst
|
||||
|
||||
### D Patch ###
|
||||
# Test Executables
|
||||
*-test-*
|
||||
|
||||
# Comment to allow dub lock file to be version controlled as well
|
||||
dub.selections.json
|
||||
|
||||
# Created by https://www.toptal.com/developers/gitignore/api/macos,windows,linux
|
||||
# Edit at https://www.toptal.com/developers/gitignore?templates=macos,windows,linux
|
||||
|
||||
### Linux ###
|
||||
*~
|
||||
|
||||
@ -107,5 +92,5 @@ $RECYCLE.BIN/
|
||||
# Windows shortcuts
|
||||
*.lnk
|
||||
|
||||
# End of https://www.toptal.com/developers/gitignore/api/d,macos,linux,windows
|
||||
# End of https://www.toptal.com/developers/gitignore/api/macos,windows,linux
|
||||
|
||||
|
2
dub.json
2
dub.json
@ -3,6 +3,8 @@
|
||||
"zerocool"
|
||||
],
|
||||
"copyright": "Copyright © 2023, zerocool",
|
||||
"dependencies": {
|
||||
},
|
||||
"description": "A minimal D application.",
|
||||
"license": "proprietary",
|
||||
"name": "prim"
|
||||
|
16
hook.zsh
16
hook.zsh
@ -1,13 +1,9 @@
|
||||
prompt_precmd() {
|
||||
export PS1=$'`prim --ps1 --col "$COLUMNS" --row "$LINES" --status "$?" --pchar "*"`'
|
||||
export RPS1=$'`prim --rps1 --col "$COLUMNS" --row "$LINES" --status "$?"`'
|
||||
}
|
||||
|
||||
autoload -Uz add-zsh-hook
|
||||
setopt promptsubst
|
||||
|
||||
prompt_precmd() {
|
||||
export PS1=`prim --ps1 --col $COLUMNS --row $LINES --status $?`
|
||||
export RPS1=`prim --rps1 --col $COLUMNS --row $LINES --status $?`
|
||||
}
|
||||
|
||||
prompt_preexec() {
|
||||
print -P `prim --preexec --col $COLUMNS --row $LINES --status $?`
|
||||
}
|
||||
|
||||
add-zsh-hook precmd prompt_precmd
|
||||
add-zsh-hook preexec prompt_preexec
|
||||
|
18
source/app.d
18
source/app.d
@ -14,13 +14,22 @@ Opts defaultOpts() {
|
||||
Opts opts;
|
||||
|
||||
opts.pathlen = 3;
|
||||
opts.pchar = "*";
|
||||
|
||||
return opts;
|
||||
}
|
||||
|
||||
void printHelp(GetoptResult args) {
|
||||
defaultGetoptPrinter("prim prompt:\n", args.options);
|
||||
writeln("\nEnvironment:\n",
|
||||
"\tNO_COLOR\tsee https://no-color.org");
|
||||
}
|
||||
|
||||
void main(string[] argv) {
|
||||
Opts opts = defaultOpts();
|
||||
|
||||
try {
|
||||
|
||||
GetoptResult args = getopt(
|
||||
argv,
|
||||
std.getopt.config.bundling,
|
||||
@ -38,10 +47,15 @@ void main(string[] argv) {
|
||||
"status", "previous command exit code", &opts.status,
|
||||
|
||||
"pathlen", "set length of displayed path", &opts.pathlen,
|
||||
"pchar", "override default prompt character", &opts.pchar,
|
||||
);
|
||||
|
||||
if (args.helpWanted) {
|
||||
defaultGetoptPrinter("prim", args.options);
|
||||
printHelp(args);
|
||||
}
|
||||
} catch (Exception e) {
|
||||
writeln(e.msg);
|
||||
writeln("try '--help' for more information");
|
||||
}
|
||||
|
||||
dorun(opts);
|
||||
@ -53,7 +67,7 @@ void dorun(Opts opts) {
|
||||
}
|
||||
|
||||
if (opts.preexec) {
|
||||
preexec(opts.col).write();
|
||||
preexec(opts).write();
|
||||
}
|
||||
|
||||
if (opts.rps1) {
|
||||
|
28
source/comp/git.d
Normal file
28
source/comp/git.d
Normal file
@ -0,0 +1,28 @@
|
||||
module comp.git;
|
||||
|
||||
import std.stdio;
|
||||
import std.file : dirEntries, SpanMode;
|
||||
import std.process;
|
||||
import std.string : strip;
|
||||
|
||||
string gitBranch() {
|
||||
auto result = execute(["git", "rev-parse", "--abbrev-ref", "HEAD"]);
|
||||
|
||||
if (result.status != 0)
|
||||
return null;
|
||||
|
||||
return result.output.strip();
|
||||
}
|
||||
|
||||
string gitStatus() {
|
||||
auto result = execute(["git", "status", "--porcelain"]);
|
||||
|
||||
if (result.status != 0)
|
||||
return null;
|
||||
|
||||
if (result.output.length >= 1) {
|
||||
return "*";
|
||||
}
|
||||
|
||||
return "";
|
||||
}
|
@ -4,7 +4,7 @@ string hr(int col) {
|
||||
string ps;
|
||||
|
||||
foreach (i; 0 .. col) {
|
||||
ps ~= '—';
|
||||
ps ~= '─';
|
||||
}
|
||||
|
||||
return ps;
|
||||
|
33
source/comp/path.d
Normal file
33
source/comp/path.d
Normal file
@ -0,0 +1,33 @@
|
||||
module comp.path;
|
||||
|
||||
import std.conv;
|
||||
import std.regex;
|
||||
import std.array;
|
||||
|
||||
import std.file : getcwd;
|
||||
import std.path : expandTilde;
|
||||
import std.algorithm : reverse;
|
||||
|
||||
string path(int pathlen) {
|
||||
string ps;
|
||||
|
||||
string home = expandTilde("~");
|
||||
string path = replaceFirst(getcwd(), regex(home), "~");
|
||||
|
||||
string[] splitPath = path.split("/").reverse();
|
||||
|
||||
string[] revSplitPath;
|
||||
for (int i = 0; i < pathlen; i++) {
|
||||
if (i >= splitPath.length)
|
||||
break;
|
||||
|
||||
revSplitPath ~= splitPath[i];
|
||||
}
|
||||
|
||||
splitPath = revSplitPath.reverse();
|
||||
|
||||
ps ~= splitPath.join("/");
|
||||
|
||||
return ps ~ "/";
|
||||
|
||||
}
|
22
source/comp/ssh.d
Normal file
22
source/comp/ssh.d
Normal file
@ -0,0 +1,22 @@
|
||||
module comp.ssh;
|
||||
|
||||
import std.process : environment;
|
||||
import std.socket : Socket;
|
||||
|
||||
string ssh() {
|
||||
string ssh = environment.get("SSH_TTY");
|
||||
string username = environment.get("USER");
|
||||
username = username ? username : "";
|
||||
|
||||
if (!ssh) {
|
||||
return "";
|
||||
}
|
||||
|
||||
auto s = new Socket();
|
||||
scope (exit)
|
||||
s.close();
|
||||
|
||||
string hostname = s.hostName;
|
||||
|
||||
return username ~ "@" ~ hostname;
|
||||
}
|
@ -6,6 +6,7 @@ struct Opts {
|
||||
bool preexec;
|
||||
|
||||
int pathlen;
|
||||
string pchar;
|
||||
|
||||
int col;
|
||||
int row;
|
||||
|
@ -1,10 +1,11 @@
|
||||
module prompt.preexec;
|
||||
|
||||
import prim.opt;
|
||||
import comp.hr;
|
||||
|
||||
import style;
|
||||
import style.color;
|
||||
|
||||
string preexec(int col) {
|
||||
return hr(col).set(Color.black);
|
||||
string preexec(Opts opt) {
|
||||
return "";
|
||||
}
|
||||
|
@ -3,7 +3,10 @@ module prompt.ps1;
|
||||
import std.conv;
|
||||
|
||||
import prim.opt;
|
||||
|
||||
import comp.hr;
|
||||
import comp.path;
|
||||
import comp.ssh;
|
||||
|
||||
import style;
|
||||
import style.color;
|
||||
@ -12,14 +15,14 @@ import style.font;
|
||||
string ps1(Opts opt) {
|
||||
string ps;
|
||||
|
||||
// divider
|
||||
ps ~= hr(opt.col).set(Color.black);
|
||||
string pathstr = path(opt.pathlen).set(Color.magenta).set(Font.italic).set(Font.bold);
|
||||
|
||||
// previous command status
|
||||
ps ~= ("(" ~ to!string(opt.status) ~ ") ").set(Color.black);
|
||||
|
||||
// prompt char
|
||||
ps ~= "|> ".set(Font.bold).set(opt.status == 0 ? Color.green : Color.red);
|
||||
ps ~= "\n";
|
||||
ps ~= (",-(" ~ pathstr ~ ")".set(Color.black)).set(Color.black);
|
||||
ps ~= " " ~ ssh().set(Color.cyan);
|
||||
ps ~= "\n";
|
||||
|
||||
ps ~= ("`-(" ~ to!string(opt.status).set(Color.yellow) ~ ") ".set(Color.black)).set(Color.black); // prompt char
|
||||
ps ~= (opt.pchar ~ " ").set(Font.bold).set(opt.status == 0 ? Color.green : Color.red);
|
||||
return ps;
|
||||
}
|
||||
|
@ -1,15 +1,10 @@
|
||||
module prompt.rps1;
|
||||
|
||||
import std.conv;
|
||||
import std.regex;
|
||||
import std.array;
|
||||
|
||||
import std.file : getcwd;
|
||||
import std.path : expandTilde;
|
||||
import std.algorithm : reverse;
|
||||
|
||||
import prim.opt;
|
||||
|
||||
import comp.path;
|
||||
import comp.git;
|
||||
|
||||
import style;
|
||||
import style.color;
|
||||
import style.font;
|
||||
@ -17,22 +12,8 @@ import style.font;
|
||||
string rps1(Opts opt) {
|
||||
string ps;
|
||||
|
||||
string home = expandTilde("~");
|
||||
string path = replaceFirst(getcwd(), regex(home), "~");
|
||||
ps ~= (gitBranch()).set(Font.bold).set(Color.cyan);
|
||||
ps ~= (gitStatus());
|
||||
|
||||
string[] splitPath = path.split("/").reverse();
|
||||
|
||||
string[] revSplitPath;
|
||||
for (int i = 0; i < opt.pathlen; i++) {
|
||||
if (i >= splitPath.length)
|
||||
break;
|
||||
|
||||
revSplitPath ~= splitPath[i];
|
||||
}
|
||||
|
||||
splitPath = revSplitPath.reverse();
|
||||
|
||||
ps ~= splitPath.join("/");
|
||||
|
||||
return ps.set(Font.italic).set(Color.yellow);
|
||||
return ps;
|
||||
}
|
||||
|
@ -38,3 +38,16 @@ enum Bg {
|
||||
def,
|
||||
reset = 0
|
||||
}
|
||||
|
||||
enum BrightBg {
|
||||
black = 100,
|
||||
red,
|
||||
green,
|
||||
yellow,
|
||||
blue,
|
||||
magenta,
|
||||
cyan,
|
||||
white,
|
||||
def,
|
||||
reset = 0
|
||||
}
|
||||
|
@ -1,9 +1,22 @@
|
||||
module style;
|
||||
|
||||
import std.conv;
|
||||
import core.stdc.stdlib : getenv;
|
||||
|
||||
import style.color;
|
||||
|
||||
string set(string s, int code) {
|
||||
return ("%{\x1b[" ~ to!string(code) ~ "m%}") ~ s ~ ("%{\x1b[" ~ to!string((Color.reset + 0)) ~ "m%}");
|
||||
if (getenv("NO_COLOR"))
|
||||
return s;
|
||||
|
||||
return ("%{\x1b[" ~ to!string(code) ~ "m%}") ~ s ~ (
|
||||
"%{\x1b[" ~ to!string((Color.reset + 0)) ~ "m%}");
|
||||
}
|
||||
|
||||
string set(string s, int code, bool close) {
|
||||
if (getenv("NO_COLOR"))
|
||||
return s;
|
||||
|
||||
return ("%{\x1b[" ~ to!string(code) ~ "m%}") ~ s ~ (close ? (
|
||||
"%{\x1b[" ~ to!string((Color.reset + 0)) ~ "m%}") : "");
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user