This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set-psreadlineoption -predictionsource history | |
$asciiSymbols = $false # If your terminal doesn't display unicode properly | |
$esc = [char]27 | |
$r = "$esc[0m" | |
$symbols = @{ | |
pathOpen = if (!$asciiSymbols) { "⌈" } else { "[" }; | |
pathClose = if (!$asciiSymbols) { "⌋" } else { "]" }; | |
timeOpen = if (!$asciiSymbols) { "⌊" } else { "[" }; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
title: The Ultimate Naming Script | |
description: "" | |
author: '' | |
license: '' | |
version: '' | |
last_updated: 2022-03-03 13:29:23 UTC | |
script_language_version: '1.1' | |
script: | | |
$if($gt(%totaltracks%,1),%albumartist% - %album%/,) | |
$if($gt(%totaltracks%,1),$if($gt(%totaldiscs%,1),%discnumber%-,)$num(%tracknumber%, 2),) %artist% - %title% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Move/swap windows | |
meh - w : yabai -m window --swap north | |
meh - a : yabai -m window --swap west | |
meh - r : yabai -m window --swap south | |
meh - s : yabai -m window --swap east | |
hyper - w : yabai -m window --warp north | |
hyper - a : yabai -m window --warp west | |
hyper - r : yabai -m window --warp south | |
hyper - s : yabai -m window --warp east |
OlderNewer