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
Show hidden characters
| { | |
| "$schema": "https://github.com/fastfetch-cli/fastfetch/raw/dev/doc/json_schema.json", | |
| "logo": { | |
| "padding": { | |
| "top": 2, | |
| "left": 1, | |
| "right": 1 | |
| } | |
| }, | |
| "display": { |
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
| /* Light mode */ | |
| :root { | |
| --text: #000000; | |
| --link: #1565C0; | |
| --link_visited: #1565C0; | |
| --accent1: #333333; | |
| --accent2: #666666; | |
| --background: #ffffff; | |
| --code: #e3e3e3; | |
| --button-text: #ffffff; |
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
| // Zed settings | |
| // | |
| // For information on how to configure Zed, see the Zed | |
| // documentation: https://zed.dev/docs/configuring-zed | |
| // | |
| // To see all of Zed's default settings without changing your | |
| // custom settings, run the `open default settings` command | |
| // from the command palette or from `Zed` application menu. | |
| { | |
| "base_keymap": "VSCode", |
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
| #!/usr/bin/env ruby -W1 | |
| # frozen_string_literal: true | |
| # Mac only | |
| # | |
| # Usage: grabicon.rb SEARCH TERMS [%[small|medium|large] [@[mac|ios|iphone|ipad]] | |
| # If the search terms match a local app, that app's icon will be extracted and converted to PNG | |
| # If the search terms don't match a local app, iTunes will be searched | |
| # If the search terms end with "@mac", "@iphone", "@ipad", or "@ios", iTunes will be searched for a match | |
| # If the search terms end with "%large", "%medium", "%small", or "%XXX" icon will be scaled to size |
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
| :root { | |
| --font-main: "Inter", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
| --font-lufga: "Inter", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; | |
| } | |
| .theme_dark, .theme_moon_dark, .theme_moon_dark_conditional { | |
| --app-bg: #181715; | |
| --page-text: #F2E6D7; | |
| --app-text: #F2E6D7; | |
| --primary: #F2E6D7; |
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
| #!/usr/bin/env ruby -W1 | |
| # frozen_string_literal: true | |
| # This script scans an RSS feed for the latest post, and if | |
| # it hasn't already been posted to Mastodon, creates a new | |
| # toot with a link to it. | |
| require 'json' | |
| require 'optparse' | |
| require 'rss' |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
| #!/usr/bin/env ruby | |
| # frozen_string_literal: true | |
| require 'optparse' | |
| # Have you ever been adding code to a Markdown post and | |
| # wondered what syntax label would give you the right | |
| # highlighting for your fenced code block? This script can | |
| # take either a file extension or a common name of a language | |
| # and let you know what lexers are supported for it, as well |
NewerOlder