Skip to content

Instantly share code, notes, and snippets.

View biswajit-saha's full-sized avatar
🤟
Building Ghost theme

Biswajit Saha biswajit-saha

🤟
Building Ghost theme
View GitHub Profile
@biswajit-saha
biswajit-saha / Microsoft.PowerShell_profile.ps1
Last active September 3, 2022 08:19
My Windows Terminal with PowerShell profile setup. A minimal approach.
# Configuring my oh-my-posh promt theme
oh-my-posh init pwsh --config "C:\simple-green.omp.json" | Invoke-Expression
# Removing predifined aliases because I will use those alias differently.
# It also prevent conflict
Remove-Alias gc -Force -ErrorAction SilentlyContinue
Remove-Alias gp -Force -ErrorAction SilentlyContinue
# Setting aliases for git command
@biswajit-saha
biswajit-saha / run_ghost.bat
Created August 30, 2018 18:49
Ghost start , restart, stop batch script for lazy persons. I assume you have your ghost folder in C: driver. In case not. Change the second line C:\ghost with your ghost folder path.
@ECHO off
CD /D C:\ghost
CMD /C "ghost start"
start /wait http://localhost:2368/
ECHO.
ECHO Do you want to restart or stop Ghost?
:choice
ECHO.