update config
This commit is contained in:
parent
efdbb4b184
commit
95e25e6dee
10
.tmux.conf
10
.tmux.conf
|
@ -15,6 +15,14 @@ set -g @plugin 'tmux-plugins/tmux-sensible'
|
|||
|
||||
set -g @plugin 'catppuccin/tmux'
|
||||
set -g @catppuccin_flavour 'macchiato' # or frappe, macchiato, mocha
|
||||
|
||||
set -g @catppuccin_window_tabs_enabled on # or off to disable window_tabs
|
||||
#set -g @catppuccin_date_time "%Y-%m-%d %H:%M"
|
||||
|
||||
set -g @catppuccin_date_time "off"
|
||||
set -g @catppuccin_user "off"
|
||||
set -g @catppuccin_host "on"
|
||||
|
||||
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||||
run '~/.tmux/plugins/tpm/tpm'
|
||||
# vim: ft=tmux
|
||||
# vim: ft=tmuxset -g @catppuccin_date_time "%Y-%m-%d %H:%M"
|
||||
|
|
8
.zshrc
8
.zshrc
|
@ -130,7 +130,7 @@ source $ZSH/oh-my-zsh.sh
|
|||
typeset -g POWERLEVEL9K_INSTANT_PROMPT=off
|
||||
|
||||
alias vim=nvim
|
||||
export vflgeist=/home/crimsen/git/flaschengeist/flaschengeist/venv/bin/activate
|
||||
|
||||
if [ -n "$VIRTUAL_ENV" ]; then
|
||||
source $VIRTUAL_ENV/bin/activate;
|
||||
fi
|
||||
|
@ -140,10 +140,10 @@ fi
|
|||
|
||||
tmux has-session -t "default" 2>/dev/null
|
||||
if [ $? != 0 ]; then
|
||||
TMUX='' tmux new-session -s "default" -d
|
||||
TMUX='' tmux new-session -s default -d
|
||||
fi
|
||||
if [[ -z "$TMUX" ]]; then
|
||||
tmux attach -t default
|
||||
else
|
||||
tmux switch-client -t default
|
||||
#else
|
||||
# tmux switch-client -t default
|
||||
fi
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
set $gnome-schema org.gnome.desktop.interface
|
||||
|
||||
exec_always {
|
||||
gsettings set $gnome-schema gtk-theme 'Catppuccin-Macchiato-Standard-Blue-Dark'
|
||||
#gsettings set $gnome-schema icon-theme 'Your icon theme'
|
||||
#gsettings set $gnome-schema cursor-theme 'Your cursor Theme'
|
||||
#gsettings set $gnome-schema font-name 'Your font name'
|
||||
}
|
|
@ -25,3 +25,10 @@
|
|||
bindsym $mod+Shift+0 move container to workspace number 10
|
||||
# Note: workspaces can have any name you want, not just numbers.
|
||||
# We just use 1-10 as the default.
|
||||
|
||||
workspace_layout tabbed
|
||||
|
||||
assign [app_id="Alacritty"] 1
|
||||
assign [class="Google-chrome"] 2
|
||||
assign [class="jetbrains-studio"] 3
|
||||
assign [app_id="org.gnome.Nautilus"] 4
|
|
@ -0,0 +1,2 @@
|
|||
exec alacritty
|
||||
exec google-chrome-stable
|
Loading…
Reference in New Issue