diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-25 17:39:29 +0200 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-09-25 17:39:29 +0200 |
commit | 98056aae8e2a96a87ed853f02ce3e4d722da2b8c (patch) | |
tree | 7d10db5030ea9abe471a54b8d9e125f6924ccf2b | |
parent | 10b5caed980eea277603c5a8aab26963445eb9a6 (diff) |
small changes
-rw-r--r-- | .config/bat/config | 1 | ||||
-rw-r--r-- | .config/polybar/config.ini##template | 2 | ||||
-rwxr-xr-x | .local/share/bin/mk | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/.config/bat/config b/.config/bat/config index 2d658ea..dd5778b 100644 --- a/.config/bat/config +++ b/.config/bat/config @@ -1,3 +1,4 @@ --style=plain --paging=never --theme=base16 +--tabs=2 diff --git a/.config/polybar/config.ini##template b/.config/polybar/config.ini##template index f3d4139..3913b5d 100644 --- a/.config/polybar/config.ini##template +++ b/.config/polybar/config.ini##template @@ -103,7 +103,7 @@ label-muted = "muted" [module/date] type = internal/date interval = 1.0 -time = %m月%d日 %A +time = %m月%d日 (%a) format = <label> label = %time% diff --git a/.local/share/bin/mk b/.local/share/bin/mk index 2a046d6..c9c2e5b 100755 --- a/.local/share/bin/mk +++ b/.local/share/bin/mk @@ -18,7 +18,7 @@ mode_cmake() { cmake --log-level WARNING -B "$builddir" -G Ninja fi - exec ninja -C "$builddir" "$@" + cd "$builddir" && exec ninja "$@" } [ -e "CMakeLists.txt" ] && mode_cmake "$@" |