Skip to content

Instantly share code, notes, and snippets.

View EgZvor's full-sized avatar

Egor Zvorykin EgZvor

  • Санкт-Петербург
View GitHub Profile
@EgZvor
EgZvor / fzy.zsh
Created August 15, 2019 23:56
fzy bindings for zsh mirrored from fzf and simplified
# CTRL-T - Paste the selected file path(s) into the command line
__fsel() {
setopt localoptions pipefail 2> /dev/null
rg --files --hidden --glob '!.git/' | fzy
local ret=$?
echo
return $ret
}
fzy-file-widget() {
[urgency_low]
frame_color = "#8be9fd"
foreground = "#8be9fd"
background = "#282A36"
timeout = 4
[urgency_normal]
frame_color = "#50fa7b"
foreground = "#50fa7b"
background = "#282A36"
#----------------------------------------------------
# file: ~/.ncmpcpp/config
# based on: t60r/dots
# vim:nu:ai:si:et:ts=4:sw=4:fdm=indent:fdn=1:ft=conf:
#----------------------------------------------------
playlist_disable_highlight_delay = "3"
message_delay_time = "1"
header_visibility = "no"
statusbar_visibility = "yes"
/* Dracula colors */
* {
black: rgba ( 40, 42, 54, 100 % );
gray: rgba ( 68, 71, 90, 100 % );
white: rgba ( 248, 248, 242, 100 % );
light-gray: rgba ( 98, 114, 164, 100 % );
cyan: rgba ( 139, 233, 253, 100 % );
green: rgba ( 80, 250, 123, 100 % );
orange: rgba ( 255, 184, 108, 100 % );
pink: rgba ( 255, 121, 198, 100 % );
!!!!!!!!!!!!!!!!!!!!!!!
! Dracula colorscheme !
!!!!!!!!!!!!!!!!!!!!!!!
urxvt.foreground: #F8F8F2
urxvt.background: #282A36
urxvt.color0: #000000
urxvt.color1: #FF5555
urxvt.color2: #50FA7B
urxvt.color3: #F1FA8C
urxvt.color4: #BD93F9
from i3pystatus import Status
# pylint: disable=C0330
# flake8: noqa: E128
status = Status()
DRACULA_THEME = {
"background": "#282a36",
"current line": "#44475a",
@EgZvor
EgZvor / config.rasi
Created February 9, 2018 10:23
Dracula theme for rofi (put in ~/.config/rasi)
// Dracula colors
* {
background: rgba ( 40, 42, 54, 100 % );
current-line: rgba ( 68, 71, 90, 100 % );
selection: rgba ( 68, 71, 90, 100 % );
foreground: rgba ( 248, 248, 242, 100 % );
comment: rgba ( 98, 114, 164, 100 % );
cyan: rgba ( 139, 233, 253, 100 % );
green: rgba ( 80, 250, 123, 100 % );
orange: rgba ( 255, 184, 108, 100 % );
@EgZvor
EgZvor / myi3pystatus.py
Last active February 2, 2018 10:16
i3pystatus configuration (do not name this file as i3pystatus.py , because it will mess up python imports)
from i3pystatus import Status
status = Status()
DRACULA_THEME={
"background": "#282a36",
"current line": "#44475a",
"selection": "#44475a",
"foreground": "#f8f8f2",
"comment": "#6272a4",
@EgZvor
EgZvor / rxvt_dracula.Xresources
Last active December 11, 2021 00:00
Dracula theme for rxvt terminal
! Dracula color scheme
URxvt.foreground: #F8F8F2
URxvt.background: #282A36
URxvt.color0: #000000
URxvt.color8: #44475A
URxvt.color1: #FF5555
URxvt.color9: #FFB86C
URxvt.color2: #50FA7B
URxvt.color10: #50FA7B
URxvt.color3: #E6DB74
{
"cells": [
{
"cell_type": "code",
"execution_count": 35,
"metadata": {
"collapsed": false
},
"outputs": [
{