This is a small tool designed to emulate the Sublime style Command Palette as follows.
It requires the use of a specific extension to load the js file from this gist.
I'm using the APC extension, and the usage is as follows.
# alacritty.toml | |
# commented lines are the defaults | |
# man 5 alacritty (>0.13) for full config manual | |
#import = [ | |
#"~/.config/alacritty/catpuccin-mocha.toml", | |
#"~/.config/alacritty/keybindings.toml", | |
#] | |
[shell] |
This is a small tool designed to emulate the Sublime style Command Palette as follows.
It requires the use of a specific extension to load the js file from this gist.
I'm using the APC extension, and the usage is as follows.
# Don't print a new line at the start of the prompt | |
add_newline = false | |
# Replace the "❯" symbol in the prompt with "➜" | |
[character] # The name of the module we are configuring is "character" | |
symbol = "➜" # The "symbol" segment is being set to "➜" | |
error_symbol = "✗" | |
use_symbol_for_status = true | |
# Disable the package module, hiding it from the prompt completely |
###AnyDesk - How Enable Remote Access from ubuntu/debian terminal.
Here are the commands might be usefull in this purpose:
anydesk --get-status
: To get current status of anydesk, which might be offlien,online
or nothing.anydesk --get-id
: To get the ID that your system can be accessed by.anydesk --service
: To start anydesk service if not already running (for Linux).anydesk --restart-service
: To restart anydesk serviceanydesk --stop-service
: To stop anydesk service# ~/.config/starship.toml | |
[battery] | |
full_symbol = "🔋" | |
charging_symbol = "🔌" | |
discharging_symbol = "⚡" | |
[[battery.display]] | |
threshold = 30 | |
style = "bold red" |
# | |
# Spaceship ZSH Theme | |
# | |
# Author: Denys Dovhan, denysdovhan.com | |
# License: MIT | |
# https://github.com/denysdovhan/spaceship-zsh-theme | |
# ------------------------------------------------------------------------------ | |
# CONFIGURATION | |
# The default configuration that can be overridden in .zshrc |
# remap prefix from 'C-b' to 'C-x' | |
#unbind C-b | |
#set-option -g prefix C-x | |
#bind-key C-x send-prefix | |
# split panes using | and - | |
bind | split-window -h | |
bind _ split-window -v | |
unbind '"' | |
unbind % |
#rebind C-b => C-a | |
unbind C-b | |
set -g prefix C-a | |
bind C-a send-prefix | |
# 0 is too far from ` ;) | |
set -g base-index 1 | |
# Automatically set window title | |
set-window-option -g automatic-rename on |
// Copyright 2017. All Rights Reserved. | |
// Author: [email protected] (Fangjun Kuang) | |
#include <QtGui> | |
#include <QGraphicsRectItem> | |
#include <QGraphicsView> | |
#include <QApplication> | |
#include <QGraphicsSceneMouseEvent> | |
class CustomItem : public QGraphicsEllipseItem |