Merge branch 'master' of github.com:LukeSmithxyz/voidrice
This commit is contained in:
commit
b6d72cc07c
3 changed files with 1493 additions and 6 deletions
1483
.fontawesome
Normal file
1483
.fontawesome
Normal file
File diff suppressed because it is too large
Load diff
|
@ -5,7 +5,11 @@
|
|||
# Must have xclip installed to even show menu.
|
||||
xclip -h >/dev/null || exit
|
||||
|
||||
chosen=$(grep -v "#" ~/.config/emoji | dmenu -i -l 20 -fn Monospace-18)
|
||||
if [ -e ~/.config/fontawesome ]; then
|
||||
chosen=$(grep -v "#" -h ~/.config/emoji ~/.config/fontawesome | dmenu -i -l 20 -fn Monospace-18)
|
||||
else
|
||||
chosen=$(grep -v "#" ~/.config/emoji | dmenu -i -l 20 -fn Monospace-18)
|
||||
fi
|
||||
|
||||
[ "$chosen" != "" ] || exit
|
||||
|
||||
|
|
10
.tmux.conf
10
.tmux.conf
|
@ -1,13 +1,13 @@
|
|||
set -g prefix C-a
|
||||
setw -g mode-keys vi
|
||||
#setw -g mode-bg black
|
||||
setw -g mode-style bg=black
|
||||
set-option -g default-terminal "xterm-256color"
|
||||
#set-option -g pane-active-border-fg green
|
||||
set-option -g pane-active-border-style fg=green
|
||||
set-window-option -g xterm-keys on # for vim
|
||||
set-window-option -g mode-keys vi # vi key
|
||||
set-window-option -g monitor-activity on
|
||||
#set-window-option -g window-status-current-fg white
|
||||
#setw -g window-status-current-attr reverse
|
||||
set-window-option -g window-status-current-style fg=white
|
||||
setw -g window-status-current-style reverse
|
||||
setw -g automatic-rename
|
||||
set -g mouse on
|
||||
set -g history-limit 30000
|
||||
|
@ -36,7 +36,7 @@ bind-key -n C-up prev
|
|||
bind-key -n C-left prev
|
||||
bind-key -n C-right next
|
||||
bind-key -n C-down next
|
||||
#set-window-option -g window-status-current-bg red
|
||||
set-window-option -g window-status-current-style bg=red
|
||||
bind C-j previous-window
|
||||
bind C-k next-window
|
||||
#bind-key C-a last-window # C-a C-a for last active window
|
||||
|
|
Loading…
Reference in a new issue