Quick commit via qp.sh
|
|
@ -1,74 +0,0 @@
|
|||
#!/usr/bin/env bash
|
||||
# An example install script for people using `:h packages`
|
||||
export NEOTREE_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}/${NVIM_APPNAME:-nvim}"
|
||||
|
||||
###########
|
||||
# Options #
|
||||
###########
|
||||
|
||||
# You can modify the /neo-tree*/ names here, depending on how you like to organize your packages.
|
||||
export NEOTREE_DIR="${NEOTREE_DATA_HOME}/site/pack/neo-tree/start"
|
||||
export NEOTREE_DEPS_DIR="${NEOTREE_DATA_HOME}/site/pack/neo-tree-deps/start"
|
||||
export NEOTREE_OPTIONAL_DIR="${NEOTREE_DATA_HOME}/site/pack/neo-tree-optional/start"
|
||||
|
||||
# Modify the optional plugins you want below:
|
||||
declare -a OPTIONAL_PLUGINS=(
|
||||
"https://github.com/nvim-tree/nvim-web-devicons.git" # for file icons
|
||||
# "https://github.com/antosha417/nvim-lsp-file-operations.git" # for LSP-enhanced renames/etc.
|
||||
# "https://github.com/folke/snacks.nvim.git" # for image previews
|
||||
# "https://github.com/3rd/image.nvim.git" # for image previews
|
||||
# "https://github.com/s1n7ax/nvim-window-picker.git" # for _with_window_picker keymaps
|
||||
)
|
||||
|
||||
###########################
|
||||
# The rest of the script. #
|
||||
###########################
|
||||
|
||||
ORIGINAL_DIR="$(pwd)"
|
||||
|
||||
clone_sparse() {
|
||||
git clone --filter=blob:none "$@"
|
||||
}
|
||||
|
||||
mkdir -p "${NEOTREE_DIR}" "${NEOTREE_DEPS_DIR}"
|
||||
|
||||
echo "Installing neo-tree..."
|
||||
cd "${NEOTREE_DIR}"
|
||||
clone_sparse -b v3.x https://github.com/nvim-neo-tree/neo-tree.nvim.git
|
||||
|
||||
echo "Installing core dependencies..."
|
||||
cd "${NEOTREE_DEPS_DIR}"
|
||||
clone_sparse https://github.com/nvim-lua/plenary.nvim.git
|
||||
clone_sparse https://github.com/MunifTanjim/nui.nvim.git
|
||||
|
||||
if [ ${#OPTIONAL_PLUGINS[@]} -gt 0 ]; then
|
||||
echo "Installing optional plugins..."
|
||||
mkdir -p "${NEOTREE_OPTIONAL_DIR}"
|
||||
cd "${NEOTREE_OPTIONAL_DIR}"
|
||||
|
||||
for repo in "${OPTIONAL_PLUGINS[@]}"; do
|
||||
clone_sparse "$repo"
|
||||
done
|
||||
fi
|
||||
|
||||
echo "Regenerating help tags..."
|
||||
declare -a PLUGIN_BASE_DIRS=(
|
||||
"${NEOTREE_DIR}"
|
||||
"${NEOTREE_DEPS_DIR}"
|
||||
"${NEOTREE_OPTIONAL_DIR}"
|
||||
)
|
||||
|
||||
# Loop through each base directory and find all 'doc' subdirectories using glob
|
||||
shopt -s nullglob # Enable nullglob for safe globbing (empty array if no matches)
|
||||
for base_dir in "${PLUGIN_BASE_DIRS[@]}"; do
|
||||
# Check if the base directory exists
|
||||
if [ -d "$base_dir" ]; then
|
||||
for doc_path in "${base_dir}"/*/doc; do
|
||||
nvim -u NONE --headless -c "helptags ${doc_path}" -c "q"
|
||||
done
|
||||
fi
|
||||
done
|
||||
shopt -u nullglob # Disable nullglob
|
||||
|
||||
echo "Installation complete!"
|
||||
cd "${ORIGINAL_DIR}"
|
||||
|
|
@ -1,193 +0,0 @@
|
|||
{
|
||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
|
||||
"logo": {
|
||||
"type": "auto",
|
||||
"source": "NixOS",
|
||||
"color": {
|
||||
"1": "#c0bb6e",
|
||||
"2": "#359a57",
|
||||
"3": "",
|
||||
"4": "",
|
||||
"5": "",
|
||||
"6": "",
|
||||
"7": "",
|
||||
"8": "",
|
||||
"9": ""
|
||||
},
|
||||
"width": null,
|
||||
"height": null,
|
||||
"padding": {
|
||||
"top": 1,
|
||||
"left": 1,
|
||||
"right": 2
|
||||
},
|
||||
"printRemaining": true,
|
||||
"preserveAspectRatio": true,
|
||||
"recache": false,
|
||||
"position": "left",
|
||||
"chafa": {
|
||||
"fgOnly": false,
|
||||
"symbols": "block+border+space-wide-inverted"
|
||||
}
|
||||
},
|
||||
"display": {
|
||||
"stat": false,
|
||||
"key": {
|
||||
"width": 8
|
||||
},
|
||||
"pipe": false,
|
||||
"showErrors": false,
|
||||
"disableLinewrap": true,
|
||||
"hideCursor": true,
|
||||
"separator": "│ ",
|
||||
"constants": [
|
||||
"──────────────────────",
|
||||
"────────────",
|
||||
"\u001b[91`"
|
||||
],
|
||||
"color": {
|
||||
"keys": "#c0bb6e",
|
||||
"title": "#c0bb6e",
|
||||
"output": "#61bc7f",
|
||||
"separator": "#61bc7f"
|
||||
},
|
||||
"brightColor": false,
|
||||
"percent": {
|
||||
"type": [
|
||||
"num"
|
||||
],
|
||||
"ndigits": 0,
|
||||
"spaceBeforeUnit": "default",
|
||||
"width": 0
|
||||
},
|
||||
"fraction": {
|
||||
"ndigits": 2
|
||||
},
|
||||
"noBuffer": false,
|
||||
"key": {
|
||||
"width": 0,
|
||||
"type": "string",
|
||||
"paddingLeft": 0
|
||||
},
|
||||
},
|
||||
"general": {
|
||||
"thread": true,
|
||||
"processingTimeout": 5000,
|
||||
"detectVersion": true,
|
||||
"playerName": "",
|
||||
"dsForceDrm": false
|
||||
},
|
||||
"modules": [
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " ",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}{$1}┐",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "title",
|
||||
"key": " ",
|
||||
"format": "{##c0bb6e}{full-user-name} on {host-name}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "datetime",
|
||||
"key": " ",
|
||||
"format": "{##c0bb6e}{month-name} {day-pretty}, {year}, {hour-pretty}:{minute-pretty} ({timezone-name} / UTC{offset-from-utc}){##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{#bright_#61bc7f}Hardware{##61bc7f} ┌{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "host",
|
||||
"key": "Machine ",
|
||||
"format": "{vendor} {family}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "cpu",
|
||||
"key": "CPU ",
|
||||
"format": "{name~0,14} {name~18,22} {name~27,29}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "memory",
|
||||
"key": "Memory ",
|
||||
"format" : "{used} / {total}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "disk",
|
||||
"key": "Disk ",
|
||||
"format": "{size-used} / {size-available}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "battery",
|
||||
"key": "Battery ",
|
||||
"format": "{capacity}, {cycle-count} cycles lifetime{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{#bright_#61bc7f}Software{##61bc7f} ├{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "os",
|
||||
"key": "Distro ",
|
||||
"format": "{pretty-name}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "kernel",
|
||||
"key": "Kernel ",
|
||||
"format":"{sysname} {release} ({arch}){##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "packages",
|
||||
"key": "Packages ",
|
||||
"format":"{nix-system} (nix-system){##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "- - - - -├{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"key": "Shell ",
|
||||
"format": "{pretty-name} {version}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "editor",
|
||||
"key": "Editor ",
|
||||
"format": "{name} {version}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "terminal",
|
||||
"key": "Terminal ",
|
||||
"format": "{pretty-name} {version}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "wm",
|
||||
"key": "DE/WM ",
|
||||
"format": "{pretty-name} {version} ({protocol-name}){##61bc7f}{$3}│",
|
||||
"detectPlugin": false
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"key": "Rice Ver.",
|
||||
"format": "WIP built off linux-retroism, 0.2{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "─────────┴{$2}{$1}┘",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " ",
|
||||
"outputColor": "",
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,193 +0,0 @@
|
|||
{
|
||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
|
||||
"logo": {
|
||||
"type": "auto",
|
||||
"source": "NixOS",
|
||||
"color": {
|
||||
"1": "#c0bb6e",
|
||||
"2": "#359a57",
|
||||
"3": "",
|
||||
"4": "",
|
||||
"5": "",
|
||||
"6": "",
|
||||
"7": "",
|
||||
"8": "",
|
||||
"9": ""
|
||||
},
|
||||
"width": null,
|
||||
"height": null,
|
||||
"padding": {
|
||||
"top": 1,
|
||||
"left": 1,
|
||||
"right": 2
|
||||
},
|
||||
"printRemaining": true,
|
||||
"preserveAspectRatio": true,
|
||||
"recache": false,
|
||||
"position": "left",
|
||||
"chafa": {
|
||||
"fgOnly": false,
|
||||
"symbols": "block+border+space-wide-inverted"
|
||||
}
|
||||
},
|
||||
"display": {
|
||||
"stat": false,
|
||||
"key": {
|
||||
"width": 8
|
||||
},
|
||||
"pipe": false,
|
||||
"showErrors": false,
|
||||
"disableLinewrap": true,
|
||||
"hideCursor": true,
|
||||
"separator": "│ ",
|
||||
"constants": [
|
||||
"──────────────────────",
|
||||
"────────────",
|
||||
"\u001b[91`"
|
||||
],
|
||||
"color": {
|
||||
"keys": "#c0bb6e",
|
||||
"title": "#c0bb6e",
|
||||
"output": "#61bc7f",
|
||||
"separator": "#61bc7f"
|
||||
},
|
||||
"brightColor": false,
|
||||
"percent": {
|
||||
"type": [
|
||||
"num"
|
||||
],
|
||||
"ndigits": 0,
|
||||
"spaceBeforeUnit": "default",
|
||||
"width": 0
|
||||
},
|
||||
"fraction": {
|
||||
"ndigits": 2
|
||||
},
|
||||
"noBuffer": false,
|
||||
"key": {
|
||||
"width": 0,
|
||||
"type": "string",
|
||||
"paddingLeft": 0
|
||||
},
|
||||
},
|
||||
"general": {
|
||||
"thread": true,
|
||||
"processingTimeout": 5000,
|
||||
"detectVersion": true,
|
||||
"playerName": "",
|
||||
"dsForceDrm": false
|
||||
},
|
||||
"modules": [
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " ",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}{$1}┐",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "title",
|
||||
"key": " ",
|
||||
"format": "{##c0bb6e}{full-user-name} on {host-name}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "datetime",
|
||||
"key": " ",
|
||||
"format": "{##c0bb6e}{month-name} {day-pretty}, {year}, {hour-pretty}:{minute-pretty} ({timezone-name} / UTC{offset-from-utc}){##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{#bright_#61bc7f}Hardware{##61bc7f} ┌{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "host",
|
||||
"key": "Machine ",
|
||||
"format": "{vendor} {family}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "cpu",
|
||||
"key": "CPU ",
|
||||
"format": "{name~0,14} {name~18,22} {name~27,29}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "memory",
|
||||
"key": "Memory ",
|
||||
"format" : "{used} / {total}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "disk",
|
||||
"key": "Disk ",
|
||||
"format": "{size-used} / {size-available}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "battery",
|
||||
"key": "Battery ",
|
||||
"format": "{capacity}, {cycle-count} cycles lifetime{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{#bright_#61bc7f}Software{##61bc7f} ├{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "os",
|
||||
"key": "Distro ",
|
||||
"format": "{pretty-name}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "kernel",
|
||||
"key": "Kernel ",
|
||||
"format":"{sysname} {release} ({arch}){##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "packages",
|
||||
"key": "Packages ",
|
||||
"format":"{nix-system} (nix-system){##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "- - - - -├{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"key": "Shell ",
|
||||
"format": "{pretty-name} {version}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "editor",
|
||||
"key": "Editor ",
|
||||
"format": "{name} {version}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "terminal",
|
||||
"key": "Terminal ",
|
||||
"format": "{pretty-name} {version}{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "wm",
|
||||
"key": "DE/WM ",
|
||||
"format": "{pretty-name} {version} ({protocol-name}){##61bc7f}{$3}│",
|
||||
"detectPlugin": false
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"key": "Rice Ver.",
|
||||
"format": "WIP built off linux-retroism, 0.2{##61bc7f}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "─────────┴{$2}{$1}┘",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " ",
|
||||
"outputColor": "",
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,193 +0,0 @@
|
|||
{
|
||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
|
||||
"logo": {
|
||||
"type": "auto",
|
||||
"source": "NixOS",
|
||||
"color": {
|
||||
"1": "#EEE8AA",
|
||||
"2": "#7B68EE",
|
||||
"3": "",
|
||||
"4": "",
|
||||
"5": "",
|
||||
"6": "",
|
||||
"7": "",
|
||||
"8": "",
|
||||
"9": ""
|
||||
},
|
||||
"width": null,
|
||||
"height": null,
|
||||
"padding": {
|
||||
"top": 1,
|
||||
"left": 1,
|
||||
"right": 2
|
||||
},
|
||||
"printRemaining": true,
|
||||
"preserveAspectRatio": true,
|
||||
"recache": false,
|
||||
"position": "left",
|
||||
"chafa": {
|
||||
"fgOnly": false,
|
||||
"symbols": "block+border+space-wide-inverted"
|
||||
}
|
||||
},
|
||||
"display": {
|
||||
"stat": false,
|
||||
"key": {
|
||||
"width": 8
|
||||
},
|
||||
"pipe": false,
|
||||
"showErrors": false,
|
||||
"disableLinewrap": true,
|
||||
"hideCursor": true,
|
||||
"separator": "│ ",
|
||||
"constants": [
|
||||
"──────────────────────",
|
||||
"────────────",
|
||||
"\u001b[91`"
|
||||
],
|
||||
"color": {
|
||||
"keys": "#9a8bef",
|
||||
"title": "#9a8bef",
|
||||
"output": "#EEE8AA",
|
||||
"separator": "#EEE8AA"
|
||||
},
|
||||
"brightColor": false,
|
||||
"percent": {
|
||||
"type": [
|
||||
"num"
|
||||
],
|
||||
"ndigits": 0,
|
||||
"spaceBeforeUnit": "default",
|
||||
"width": 0
|
||||
},
|
||||
"fraction": {
|
||||
"ndigits": 2
|
||||
},
|
||||
"noBuffer": false,
|
||||
"key": {
|
||||
"width": 0,
|
||||
"type": "string",
|
||||
"paddingLeft": 0
|
||||
},
|
||||
},
|
||||
"general": {
|
||||
"thread": true,
|
||||
"processingTimeout": 5000,
|
||||
"detectVersion": true,
|
||||
"playerName": "",
|
||||
"dsForceDrm": false
|
||||
},
|
||||
"modules": [
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " ",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}{$1}┐",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "title",
|
||||
"key": " ",
|
||||
"format": "{##9a8bef}{full-user-name} on {host-name}{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "datetime",
|
||||
"key": " ",
|
||||
"format": "{##9a8bef}{month-name} {day-pretty}, {year}, {hour-pretty}:{minute-pretty} ({timezone-name} / UTC{offset-from-utc}){##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{#bright_#EEE8AA}Hardware{##EEE8AA} ┌{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "host",
|
||||
"key": "Machine ",
|
||||
"format": "{vendor} {family}{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "cpu",
|
||||
"key": "CPU ",
|
||||
"format": "{name~0,14} {name~18,22} {name~27,29}{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "memory",
|
||||
"key": "Memory ",
|
||||
"format" : "{used} / {total}{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "disk",
|
||||
"key": "Disk ",
|
||||
"format": "{size-used} / {size-available}{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "battery",
|
||||
"key": "Battery ",
|
||||
"format": "{capacity}, {cycle-count} cycles lifetime{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{#bright_#EEE8AA}Software{##EEE8AA} ├{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "os",
|
||||
"key": "Distro ",
|
||||
"format": "{pretty-name}{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "kernel",
|
||||
"key": "Kernel ",
|
||||
"format":"{sysname} {release} ({arch}){##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "packages",
|
||||
"key": "Packages ",
|
||||
"format":"{nix-system} (nix-system){##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "- - - - -├{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"key": "Shell ",
|
||||
"format": "{pretty-name} {version}{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "editor",
|
||||
"key": "Editor ",
|
||||
"format": "{name} {version}{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "terminal",
|
||||
"key": "Terminal ",
|
||||
"format": "{pretty-name} {version}{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "wm",
|
||||
"key": "DE/WM ",
|
||||
"format": "{pretty-name} {version} ({protocol-name}){##EEE8AA}{$3}│",
|
||||
"detectPlugin": false
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"key": "Rice Ver.",
|
||||
"format": "WIP built off linux-retroism, 0.2{##EEE8AA}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "─────────┴{$2}{$1}┘",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " ",
|
||||
"outputColor": "",
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1,193 +0,0 @@
|
|||
{
|
||||
"$schema": "https://github.com/fastfetch-cli/fastfetch/raw/master/doc/json_schema.json",
|
||||
"logo": {
|
||||
"type": "auto",
|
||||
"source": "NixOS",
|
||||
"color": {
|
||||
"1": "#AF6C68",
|
||||
"2": "#35609A",
|
||||
"3": "",
|
||||
"4": "",
|
||||
"5": "",
|
||||
"6": "",
|
||||
"7": "",
|
||||
"8": "",
|
||||
"9": ""
|
||||
},
|
||||
"width": null,
|
||||
"height": null,
|
||||
"padding": {
|
||||
"top": 1,
|
||||
"left": 1,
|
||||
"right": 2
|
||||
},
|
||||
"printRemaining": true,
|
||||
"preserveAspectRatio": true,
|
||||
"recache": false,
|
||||
"position": "left",
|
||||
"chafa": {
|
||||
"fgOnly": false,
|
||||
"symbols": "block+border+space-wide-inverted"
|
||||
}
|
||||
},
|
||||
"display": {
|
||||
"stat": false,
|
||||
"key": {
|
||||
"width": 8
|
||||
},
|
||||
"pipe": false,
|
||||
"showErrors": false,
|
||||
"disableLinewrap": true,
|
||||
"hideCursor": true,
|
||||
"separator": "│ ",
|
||||
"constants": [
|
||||
"──────────────────────",
|
||||
"────────────",
|
||||
"\u001b[91`"
|
||||
],
|
||||
"color": {
|
||||
"keys": "#AF6C68",
|
||||
"title": "#AF6C68",
|
||||
"output": "#6197BC",
|
||||
"separator": "#6197BC"
|
||||
},
|
||||
"brightColor": false,
|
||||
"percent": {
|
||||
"type": [
|
||||
"num"
|
||||
],
|
||||
"ndigits": 0,
|
||||
"spaceBeforeUnit": "default",
|
||||
"width": 0
|
||||
},
|
||||
"fraction": {
|
||||
"ndigits": 2
|
||||
},
|
||||
"noBuffer": false,
|
||||
"key": {
|
||||
"width": 0,
|
||||
"type": "string",
|
||||
"paddingLeft": 0
|
||||
},
|
||||
},
|
||||
"general": {
|
||||
"thread": true,
|
||||
"processingTimeout": 5000,
|
||||
"detectVersion": true,
|
||||
"playerName": "",
|
||||
"dsForceDrm": false
|
||||
},
|
||||
"modules": [
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " ",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{$1}{$1}┐",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "title",
|
||||
"key": " ",
|
||||
"format": "{##AF6C68}{full-user-name} on {host-name}{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "datetime",
|
||||
"key": " ",
|
||||
"format": "{##AF6C68}{month-name} {day-pretty}, {year}, {hour-pretty}:{minute-pretty} ({timezone-name} / UTC{offset-from-utc}){##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{#bright_#6197BC}Hardware{##6197BC} ┌{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "host",
|
||||
"key": "Machine ",
|
||||
"format": "{vendor} {family}{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "cpu",
|
||||
"key": "CPU ",
|
||||
"format": "{name~0,14} {name~18,22} {name~27,29}{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "memory",
|
||||
"key": "Memory ",
|
||||
"format" : "{used} / {total}{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "disk",
|
||||
"key": "Disk ",
|
||||
"format": "{size-used} / {size-available}{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "battery",
|
||||
"key": "Battery ",
|
||||
"format": "{capacity}, {cycle-count} cycles lifetime{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "{#bright_#6197BC}Software{##6197BC} ├{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "os",
|
||||
"key": "Distro ",
|
||||
"format": "{pretty-name}{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "kernel",
|
||||
"key": "Kernel ",
|
||||
"format":"{sysname} {release} ({arch}){##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "packages",
|
||||
"key": "Packages ",
|
||||
"format":"{nix-system} (nix-system){##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "- - - - -├{$2}{$1}┤",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "shell",
|
||||
"key": "Shell ",
|
||||
"format": "{pretty-name} {version}{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "editor",
|
||||
"key": "Editor ",
|
||||
"format": "{name} {version}{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "terminal",
|
||||
"key": "Terminal ",
|
||||
"format": "{pretty-name} {version}{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "wm",
|
||||
"key": "DE/WM ",
|
||||
"format": "{pretty-name} {version} ({protocol-name}){##6197BC}{$3}│",
|
||||
"detectPlugin": false
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"key": "Rice Ver.",
|
||||
"format": "WIP built off linux-retroism, 0.2{##6197BC}{$3}│"
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": "─────────┴{$2}{$1}┘",
|
||||
"outputColor": "",
|
||||
},
|
||||
{
|
||||
"type": "custom",
|
||||
"format": " ",
|
||||
"outputColor": "",
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
@ -1 +0,0 @@
|
|||
file:///home/mayday/Documents/Steam/steamapps/compatdata/2379780/pfx/drive_c/users/steamuser/AppData/Roaming/Balatro/Mods Mods
|
||||
|
|
@ -1,17 +0,0 @@
|
|||
[Settings]
|
||||
gtk-theme-name=ClassicPlatinumStreamlined
|
||||
gtk-icon-theme-name=RetroismIcons
|
||||
gtk-font-name=M PLUS 1 Light 10
|
||||
gtk-cursor-theme-name=Hackneyed
|
||||
gtk-cursor-theme-size=24
|
||||
gtk-toolbar-style=GTK_TOOLBAR_ICONS
|
||||
gtk-toolbar-icon-size=GTK_ICON_SIZE_LARGE_TOOLBAR
|
||||
gtk-button-images=1
|
||||
gtk-menu-images=1
|
||||
gtk-enable-event-sounds=0
|
||||
gtk-enable-input-feedback-sounds=0
|
||||
gtk-xft-antialias=1
|
||||
gtk-xft-hinting=1
|
||||
gtk-xft-hintstyle=hintslight
|
||||
gtk-xft-rgba=rgb
|
||||
gtk-application-prefer-dark-theme=true
|
||||
|
|
@ -1 +0,0 @@
|
|||
/home/mayday/.themes/ClassicPlatinumStreamlined/gtk-4.0/assets
|
||||
|
|
@ -1 +0,0 @@
|
|||
/home/mayday/.themes/ClassicPlatinumStreamlined/gtk-4.0/gtk.css
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
[Settings]
|
||||
gtk-theme-name=ClassicPlatinumStreamlined
|
||||
gtk-icon-theme-name=RetroismIcons
|
||||
gtk-font-name=M PLUS 1 Light 10
|
||||
gtk-cursor-theme-name=Hackneyed
|
||||
gtk-cursor-theme-size=24
|
||||
gtk-application-prefer-dark-theme=true
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_ClangFormatFullFile
|
||||
arguments=-i %{Document:FileName}
|
||||
category=Tools
|
||||
cmdname=clang-format-file
|
||||
executable=clang-format
|
||||
name=Clang Format Full File
|
||||
output=Ignore
|
||||
reload=true
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_ClangFormatSelectedText
|
||||
arguments=-assume-filename=%{Document:FileName}
|
||||
category=Tools
|
||||
cmdname=clang-format-selection
|
||||
executable=clang-format
|
||||
input=\s%{Document:Selection:Text}
|
||||
name=Clang Format Selected Text
|
||||
output=ReplaceSelectedText
|
||||
reload=false
|
||||
save=None
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_C++CompileRun
|
||||
arguments=-c 'g++ "%{Document:FilePath}" -o "%{Document:FileBaseName}" && "./%{Document:FileBaseName}"'
|
||||
category=Tools
|
||||
executable=sh
|
||||
icon=text-x-c++src
|
||||
name=Compile and Run cpp
|
||||
output=DisplayInPane
|
||||
reload=false
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_GoFmt
|
||||
arguments=%{Document:FileName}
|
||||
category=Go
|
||||
cmdname=gofmt-full-file
|
||||
executable=gofmt
|
||||
icon=text/x-go
|
||||
mimetypes=text/x-go
|
||||
name=Go Fmt Full File
|
||||
output=ReplaceCurrentDocument
|
||||
reload=false
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_GoImports
|
||||
arguments=%{Document:FileName}
|
||||
category=Go
|
||||
cmdname=goimports-full-file
|
||||
executable=goimports
|
||||
icon=text-x-go
|
||||
mimetypes=text/x-go
|
||||
name=GoImports Full File
|
||||
output=ReplaceCurrentDocument
|
||||
reload=false
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_GoogleSelectedText
|
||||
arguments="https://www.google.com/search?q=%{PercentEncoded:%{Document:Selection:Text}}"
|
||||
category=Tools
|
||||
cmdname=google
|
||||
executable=xdg-open
|
||||
icon=globe
|
||||
name=Google Selected Text
|
||||
output=Ignore
|
||||
reload=false
|
||||
save=None
|
||||
trigger=None
|
||||
|
|
@ -1,11 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_InsertUUID
|
||||
arguments=%{UUID}
|
||||
category=Tools
|
||||
cmdname=uuid
|
||||
executable=echo
|
||||
name=Insert UUID
|
||||
output=InsertAtCursor
|
||||
reload=false
|
||||
save=None
|
||||
trigger=None
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_JSONFormatFullFile
|
||||
arguments="."
|
||||
category=Tools
|
||||
cmdname=json-format-file
|
||||
executable=jq
|
||||
icon=application-json
|
||||
input=%{Document:Text}
|
||||
name=JSON Format Full File
|
||||
output=ReplaceCurrentDocument
|
||||
reload=false
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_Prettier
|
||||
arguments=%{Document:FileName}
|
||||
category=Tools
|
||||
cmdname=prettier-format-full-file
|
||||
executable=prettier
|
||||
name=Prettier Format Current File
|
||||
output=ReplaceCurrentDocument
|
||||
reload=false
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_QtQuick2Previewqmlscene
|
||||
arguments=%{Document:FileName}
|
||||
category=Qt
|
||||
cmdname=qml-preview
|
||||
executable=qmlscene
|
||||
mimetypes=text/x-qml
|
||||
name=Qt Quick 2 Preview (qmlscene)
|
||||
output=Ignore
|
||||
reload=false
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_RunShellScript
|
||||
arguments=-e sh -c "cd %{Document:Path} && pwd && chmod -vc a+x %{Document:FileName} && ./%{Document:FileName} ; echo Press enter to continue. && read null"
|
||||
category=Tools
|
||||
cmdname=run-script
|
||||
executable=konsole
|
||||
icon=system-run
|
||||
name=Run Shell Script
|
||||
output=Ignore
|
||||
reload=false
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_RustFmt
|
||||
arguments=%{Document:FileName}
|
||||
category=Tools
|
||||
cmdname=rustfmt-full-file
|
||||
executable=rustfmt
|
||||
icon=text-x-rust
|
||||
mimetypes=text/x-rust
|
||||
name=Rust Fmt Full File
|
||||
output=Ignore
|
||||
reload=true
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_KDEAPI
|
||||
arguments="https://api.kde.org/search.html?query=%{Document:Selection:Text}"
|
||||
category=Tools
|
||||
executable=xdg-open
|
||||
icon=kde
|
||||
name=Search KDE API
|
||||
output=Ignore
|
||||
reload=false
|
||||
save=None
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_QtAPI
|
||||
arguments="https://doc.qt.io/qt-5/search-results.html?q=%{Document:Selection:Text}"
|
||||
category=Tools
|
||||
executable=xdg-open
|
||||
icon=qtcreator
|
||||
name=Search Qt API
|
||||
output=Ignore
|
||||
reload=false
|
||||
save=None
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_XMLFormatFullFile
|
||||
arguments=--format "%{Document:FileName}"
|
||||
category=Tools
|
||||
cmdname=xml-format-file
|
||||
executable=xmllint
|
||||
icon=application-xml
|
||||
name=XML Format Full File
|
||||
output=ReplaceCurrentDocument
|
||||
reload=false
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_gitblame
|
||||
arguments=gui blame --line=%{Document:Cursor:Line} %{Document:FileName}
|
||||
category=Git
|
||||
cmdname=git-blame
|
||||
executable=git
|
||||
name=git blame
|
||||
output=Ignore
|
||||
reload=false
|
||||
save=CurrentDocument
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_gitcola
|
||||
arguments=-r %{Document:Path}
|
||||
category=Git
|
||||
cmdname=git-cola
|
||||
executable=git-cola
|
||||
icon=git-cola
|
||||
name=git-cola
|
||||
output=Ignore
|
||||
reload=false
|
||||
save=None
|
||||
trigger=None
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
[General]
|
||||
actionName=externaltool_gitk
|
||||
category=Git
|
||||
cmdname=gitk
|
||||
executable=gitk
|
||||
icon=git-gui
|
||||
name=gitk
|
||||
output=Ignore
|
||||
reload=false
|
||||
save=None
|
||||
trigger=None
|
||||
workingDir=%{Document:Path}
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
#### Note!
|
||||
This theme was originally authored by diinki. You can find the source at https://github.com/diinki/linux-retroism.
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
[](https://github.com/B00merang-Project/Azurra_framework)
|
||||
|
||||
# Mac OS 9
|
||||
The classic look of Mac OS 9, now for GTK 3 desktops
|
||||
|
||||
### Preview
|
||||
.png)
|
||||
|
||||
### Supported platforms
|
||||
- Any GTK-based desktop
|
||||
- Gnome
|
||||
|
||||
### Manual installation
|
||||
Go to releases, download the latest `.zip` file and extract it to the themes directory i.e. `/home/USERNAME/.themes`
|
||||
|
Before Width: | Height: | Size: 194 B |
|
Before Width: | Height: | Size: 300 B |
|
Before Width: | Height: | Size: 302 B |
|
Before Width: | Height: | Size: 300 B |
|
|
@ -1 +0,0 @@
|
|||
checkbox-checked-insensitive.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
checkbox-checked-insensitive@2.png
|
||||
|
Before Width: | Height: | Size: 486 B |
|
Before Width: | Height: | Size: 957 B |
|
|
@ -1 +0,0 @@
|
|||
checkbox-checked.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
checkbox-checked@2.png
|
||||
|
Before Width: | Height: | Size: 269 B |
|
Before Width: | Height: | Size: 918 B |
|
|
@ -1 +0,0 @@
|
|||
checkbox-mixed-insensitive.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
checkbox-mixed-insensitive@2.png
|
||||
|
Before Width: | Height: | Size: 300 B |
|
Before Width: | Height: | Size: 697 B |
|
|
@ -1 +0,0 @@
|
|||
checkbox-mixed.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
checkbox-mixed@2.png
|
||||
|
Before Width: | Height: | Size: 282 B |
|
Before Width: | Height: | Size: 769 B |
|
|
@ -1 +0,0 @@
|
|||
checkbox-unchecked-insensitive.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
checkbox-unchecked-insensitive@2.png
|
||||
|
Before Width: | Height: | Size: 288 B |
|
Before Width: | Height: | Size: 668 B |
|
|
@ -1 +0,0 @@
|
|||
checkbox-unchecked.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
checkbox-unchecked@2.png
|
||||
|
Before Width: | Height: | Size: 260 B |
|
Before Width: | Height: | Size: 659 B |
|
Before Width: | Height: | Size: 424 B |
|
Before Width: | Height: | Size: 203 B |
|
Before Width: | Height: | Size: 195 B |
|
Before Width: | Height: | Size: 390 B |
|
Before Width: | Height: | Size: 390 B |
|
Before Width: | Height: | Size: 256 B |
|
|
@ -1 +0,0 @@
|
|||
radio-checked-insensitive.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
radio-checked-insensitive@2.png
|
||||
|
Before Width: | Height: | Size: 350 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
|
@ -1 +0,0 @@
|
|||
radio-checked.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
radio-checked@2.png
|
||||
|
Before Width: | Height: | Size: 408 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
|
@ -1 +0,0 @@
|
|||
radio-mixed-insensitive.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
radio-mixed-insensitive@2.png
|
||||
|
Before Width: | Height: | Size: 370 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
|
@ -1 +0,0 @@
|
|||
radio-mixed.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
radio-mixed@2.png
|
||||
|
Before Width: | Height: | Size: 365 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
|
@ -1 +0,0 @@
|
|||
radio-unchecked-insensitive.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
radio-unchecked-insensitive@2.png
|
||||
|
Before Width: | Height: | Size: 478 B |
|
Before Width: | Height: | Size: 2.1 KiB |
|
|
@ -1 +0,0 @@
|
|||
radio-unchecked.png
|
||||
|
|
@ -1 +0,0 @@
|
|||
radio-unchecked@2.png
|
||||
|
Before Width: | Height: | Size: 359 B |
|
Before Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 345 B |
|
Before Width: | Height: | Size: 1 KiB |
|
Before Width: | Height: | Size: 329 B |
|
Before Width: | Height: | Size: 425 B |
|
Before Width: | Height: | Size: 426 B |
|
Before Width: | Height: | Size: 318 B |
|
Before Width: | Height: | Size: 322 B |
|
Before Width: | Height: | Size: 427 B |
|
Before Width: | Height: | Size: 427 B |
|
Before Width: | Height: | Size: 322 B |
|
Before Width: | Height: | Size: 5 KiB |