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 | |
# Define autostart directory and file | |
AUTOSTART_DIR="$HOME/.config/autostart" | |
AUTOSTART_FILE="$AUTOSTART_DIR/guake.desktop" | |
# Ensure the directory exists | |
mkdir -p "$AUTOSTART_DIR" | |
# Create the autostart file |
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
[general] | |
compat-delete='delete-sequence' | |
default-shell='/usr/bin/tmux' | |
display-n=0 | |
display-tab-names=0 | |
gtk-use-system-default-theme=true | |
hide-tabs-if-one-tab=false | |
history-size=1000 | |
max-tab-name-length=100 | |
mouse-display=true |
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
export PS1="\[\033[38;5;12m\]\u\[$(tput sgr0)\]\[\033[38;5;7m\]@\[$(tput sgr0)\]\[\033[38;5;3m\]\h\[$(tput sgr0)\][\[$(tput sgr0)\]\[\033[38;5;2m\]\W\[$(tput sgr0)\]]\[$(tput sgr0)\]\[\033[38;5;6m\]\\$\[$(tput sgr0)\] \[$(tput sgr0)\]" |
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
set -g default-terminal "xterm-256color" | |
# Send prefix | |
set-option -g prefix C-a | |
unbind-key C-a | |
bind-key C-a send-prefix | |
# Use Alt-arrow keys to switch panes | |
bind -n M-Left select-pane -L | |
bind -n M-Right select-pane -R |