This file contains 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
# Remove current tab from tabbed | |
super + mod1 + t; r | |
tabc.sh $(bspc query -N -n focused) remove | |
# At given direction: join two windows into a new tabbed or add window to an existing tabbed | |
super + mod1 + t; {Left,Down,Up,Right} | |
tabc.sh $(bspc query -N -n {west,south,north,east}) add $(bspc query -N -n focused) |
This file contains 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 python2.7 | |
#based on https://gist.github.com/hhatto/6405956 from hhato | |
import sys | |
new_vim_color = [] | |
xtermMap = { | |
'0': '#161616', '1': '#ac3c67', '2': '#8f8e24', '3': '#c18401', '4': '#017da4', | |
'5': '#7c3194', '6': '#09a3aa', '7': '#676763', '8': '#373b41', '9': '#c02e57', | |
'10': '#e5dd62', '11': '#e9cb1f', '12': '#072c38', '13': '#b294bb', '14': '#76c4ad', |
This file contains 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
#!/bin/bash | |
GEOMETRY="80x20+570+300" | |
FONT="RobotoMono Nerd Font:size=12" | |
CLASS="stLaunch" | |
_st_fzf() { | |
fzf +m --tiebreak=length,end --layout=reverse --color=prompt:7,pointer:7,spinner:2,info:8,hl:2,hl+:2,marker:0 --margin=1,2 --prompt='∴ ' $@ | |
} |