update
This commit is contained in:
parent
1186cc21b1
commit
7fe922bcee
6 changed files with 21 additions and 17 deletions
|
|
@ -1,15 +0,0 @@
|
|||
[Desktop Entry]
|
||||
Icon=/home/user/.local/share/JetBrains/Toolbox/toolbox.svg
|
||||
Exec=/home/user/.local/share/JetBrains/Toolbox/bin/jetbrains-toolbox --minimize
|
||||
Version=1.0
|
||||
Type=Application
|
||||
Categories=Development
|
||||
Name=JetBrains Toolbox
|
||||
StartupWMClass=jetbrains-toolbox
|
||||
Terminal=false
|
||||
MimeType=x-scheme-handler/jetbrains;
|
||||
X-GNOME-Autostart-enabled=true
|
||||
StartupNotify=false
|
||||
X-GNOME-Autostart-Delay=10
|
||||
X-MATE-Autostart-Delay=10
|
||||
X-KDE-autostart-after=panel
|
||||
|
|
@ -7,7 +7,7 @@
|
|||
## upstream: https://github.com/catppuccin/kitty/blob/main/themes/mocha.conf
|
||||
## blurb: Soothing pastel theme for the high-spirited!
|
||||
|
||||
hide_window_decorations yes
|
||||
hide_window_decorations no
|
||||
font_family GoMono Nerd Font
|
||||
#font_family JetBrainsMono Nerd Font Mono
|
||||
bold_font auto
|
||||
|
|
|
|||
|
|
@ -25,6 +25,16 @@ new() {
|
|||
tmux switch-client -t "$name"
|
||||
}
|
||||
|
||||
goland-new() {
|
||||
|
||||
dir=${1:-}
|
||||
|
||||
[ -z "${dir}" ] && dir=$(find $HOME/Documents/gitlab -mindepth 2 -maxdepth 2 -type d | awk -F/ '{print $(NF-1)"/"$NF " " $0}' | fzf --reverse --header "New Session" --with-nth=1 | awk '{print $2}')
|
||||
[ -z "$dir" ] && return 1
|
||||
|
||||
sleep 1 && goland $dir &
|
||||
}
|
||||
|
||||
switch() {
|
||||
|
||||
tmux list-sessions -F '#{session_name}' |
|
||||
|
|
@ -114,5 +124,6 @@ window) window ;;
|
|||
notes) notes ;;
|
||||
popup) popup ;;
|
||||
scratch) scratch ;;
|
||||
goland-new) goland-new $2 ;;
|
||||
*) echo "Please enter an action" ;;
|
||||
esac
|
||||
|
|
|
|||
|
|
@ -30,6 +30,10 @@ tmux-new () {
|
|||
~/.config/scripts/sessions.sh new $1
|
||||
}
|
||||
|
||||
goland-new () {
|
||||
~/.config/scripts/sessions.sh goland-new $1
|
||||
}
|
||||
|
||||
load-profile () {
|
||||
ansible-playbook /home/user/.dotfiles/ansible/.config/ansible/local.yml -K
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue