Adjust opacity for popups, update aliases for SSHFS

master
Quentin Duchemin 2020-09-24 13:55:16 +02:00
parent ad303d1eda
commit f30c1db88b
Signed by: Chosto
GPG Key ID: 0547178FEEDE7D6B
2 changed files with 83 additions and 85 deletions

View File

@ -418,6 +418,6 @@ wintypes:
tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; }; tooltip = { fade = true; shadow = true; opacity = 0.75; focus = true; full-shadow = false; };
dock = { shadow = false; } dock = { shadow = false; }
dnd = { shadow = false; } dnd = { shadow = false; }
popup_menu = { opacity = 0.8; } popup_menu = { opacity = 1.0; }
dropdown_menu = { opacity = 0.8; } dropdown_menu = { opacity = 0.8; }
}; };

12
.zshrc
View File

@ -102,13 +102,11 @@ alias cp="cpv"
alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME' alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME'
# Mount VPS as FUSE # Mount VPS as FUSE
alias ovh='sshfs chosto@51.75.250.228:/home/chosto /mnt/ovh' alias ovh='mkdir -p ~/sshfs/ovh && sshfs chosto@51.75.250.228:/home/chosto ~/sshfs/ovh'
alias pica01='sshfs qduchemi@pica01.picasoft.net:/DATA/docker /mnt/pica01' alias pica01='mkdir -p ~/sshfs/pica01 && sshfs qduchemi@pica01.picasoft.net:/DATA/docker ~/sshfs/pica01'
alias pica02='sshfs qduchemi@pica02.picasoft.net:/DATA/docker /mnt/pica02' alias pica02='mkdir -p ~/sshfs/pica02 && sshfs qduchemi@pica02.picasoft.net:/DATA/docker ~/sshfs/pica02'
alias pica_test='sshfs qduchemi@pica01-test.picasoft.net:/DATA/docker /mnt/pica01-test' alias pica_test='mkdir -p ~/sshfs/pica01-test && sshfs qduchemi@pica01-test.picasoft.net:/DATA/docker ~/sshfs/pica01-test'
alias sshfs_u='find ~/sshfs -mindepth 1 -maxdepth 1 -type d -exec umount {} \;'
# SSH port forwarding for Picasoft LDAP
alias ldap_pica='sudo ssh -L 389:localhost:389 qduchemi@monitoring.picasoft.net -i ~/.ssh/id_rsa'
# Start ssh-agent and retain passphrase for 1 hour # Start ssh-agent and retain passphrase for 1 hour
# ssh-add is not used for convenience # ssh-add is not used for convenience