Skip to content

Instantly share code, notes, and snippets.

View hatoba29's full-sized avatar

hatoba29

View GitHub Profile
@hatoba29
hatoba29 / no-gap-rt-fav.css
Created March 9, 2021 00:51
CSS addon for TweetDeckPlayer by gaeulbyul
/* CSS addon for TweetDeckPlayer by gaeulbyul */
/* This fills small gap between RT/fav icon and counter */
span.pull-right.icon-favorite-toggle.margin-l--2.margin-t--1.txt-size--12.js-like-count.like-count {
margin-left: 0px !important;
padding-left: 2px !important;
}
span.pull-right.icon-retweet-toggle.margin-l--3.margin-t--1.txt-size--12.js-retweet-count.retweet-count {
margin-left: 0px !important;
@hatoba29
hatoba29 / onedarkpro.sh
Last active October 12, 2020 01:10
shell script for setting color scheme in TTY
if [ "$TERM" = "linux" ]; then
echo -en "\e]P02D3139" #black
echo -en "\e]P87F848E" #darkgrey
echo -en "\e]P1F44747" #darkred
echo -en "\e]P9E06C75" #red
echo -en "\e]P298C379" #darkgreen
echo -en "\e]PA98C379" #green
echo -en "\e]P3E5C07B" #brown
echo -en "\e]PBE5C07B" #yellow
echo -en "\e]P4528BFF" #darkblue
@hatoba29
hatoba29 / hatoba29.json
Last active May 21, 2021 07:18
karabiner keymap
{
"title": "Keymaps by hatoba29",
"rules": [
{
"description": "Change input method between KOR/JPN/ENG",
"manipulators": [
{
"type": "basic",
"description": "change eng to kor",
"from": {
@hatoba29
hatoba29 / .Xresources
Last active March 31, 2020 07:05
Xresources
!! one dark pro
! special
*.foreground: #c8c8c8
*.background: #282c34
*.cursorColor: #c8c8c8
! black
*.color0: #2d3139
*.color8: #7f848e
@hatoba29
hatoba29 / polybar.config
Created December 14, 2019 14:41
polybar setting
[colors]
red = #f92a72
green = #a6e22e
orange = #fd971f
purple = #ae81ff
blue = #66d9ef
background = #222222
foreground = #cfcfcf
@hatoba29
hatoba29 / i3.config
Created December 14, 2019 14:27
i3 configuration
# i3 config file (v4)
# Set modkey as Mod4(Super)
set $mod Mod4
# Font for window titles. Will also be used by the bar unless a different font
# is used in the bar {} block below.
font fixed
# Use pactl to adjust volume in PulseAudio.
@hatoba29
hatoba29 / onedark.rofi
Created December 12, 2019 01:32
onedark Rofi theme (customed by me)
/*
* ROFI One Dark
*
* Based on OneDark.vim (https://github.com/joshdick/onedark.vim)
*
* Author: Benjamin Stauss
* User: me-benni
* Edit: hatoba29
*
*/
@hatoba29
hatoba29 / init.vim
Last active January 2, 2024 04:46
neovim settings
"""
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
"""
call plug#begin('~/.vim/plugged')
Plug 'joshdick/onedark.vim'
Plug 'sheerun/vim-polyglot'
Plug 'itchyny/lightline.vim'