i made a custom monospace font called PlexMonoMod

  • based on IBM Plex Mono font
  • updated the letter g and the number 0 character styles
  • updated the parenthesis () and bracket [] {} character styles
  • updated the slash and bar \ | / character styles
  • updated the numbersign # character style
  • updated the tilde ~ character style
  • updated the regular font weight from 400 to 450-equivalent
  • updated the bold font weight from 700 to 600-equivalent
  • additional font variants patched with Nerd Font icons

Git repo links: PlexMonoMod and PlexMonoMod Nerd Font

View Post

i made a new “panel” variation for my Rofi themes that spawns on the left side of the screen.. ..i also updated the file names to clarify which variation; dmenu-style, floating-window, and panel-style..

rofi/themes

View Post

i updated all my Rofi themes.. ..colors, padding, size, etc.. ..i will prob add more color variations for other Mint and Yaru themes, but this is a good start..

rofi/themes

View Post

the Code Syntax Block WordPress plugin hasn’t been updated in a while and isn’t fully compatible with WordPress 6.5 ..adding the function below to the end of the plugin’s index.php file seems to fix it..

// replace br tags with new line characters (to fix PrismJS styled code blocks)
function replace_new_line_character( $block_content ) {
    $block_content = str_replace( '<br>', "\n", $block_content );
    return $block_content;
}
add_filter( 'render_block_core/code', 'replace_new_line_character' );
View Post