Compare commits
2 Commits
f4a41439c1
...
c7569bceaa
| Author | SHA1 | Date |
|---|---|---|
|
|
c7569bceaa | |
|
|
7d3c7545b3 |
|
|
@ -37,8 +37,8 @@ ksh() {
|
||||||
}
|
}
|
||||||
|
|
||||||
alias tintMaison='ssh -A -L localhost:5488:localhost:5489 nereide@naxos.nereide.fr "ssh -p5422 -L localhost:5489:rfidprod-integration.cluster-cdb9sc2xntwg.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"'
|
alias tintMaison='ssh -A -L localhost:5488:localhost:5489 nereide@naxos.nereide.fr "ssh -p5422 -L localhost:5489:rfidprod-integration.cluster-cdb9sc2xntwg.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"'
|
||||||
alias tintBureau="ssh -v -p 5422 -L localhost:5488:rfidprod-preprod.cluster-cdb9sc2xntwg.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"
|
alias tintBureau="ssh -v -p 5422 -L localhost:5489:rfidprod-integration.cluster-cdb9sc2xntwg.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"
|
||||||
alias tprepMaison='ssh -A -L localhost:5488:localhost:5489 nereide@naxos.nereide.fr "ssh -p5422 -L localhost:5489:rfidprod-integration.cluster-cdb9sc2xntwg.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"'
|
alias tprepMaison='ssh -A -L localhost:5488:localhost:5489 nereide@naxos.nereide.fr "ssh -p5422 -L localhost:5489:rfidprod-preprod.cluster-cdb9sc2xntwg.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"'
|
||||||
alias tprepBureau="ssh -v -p 5422 -L localhost:5488:rfidprod-preprod.cluster-cdb9sc2xntwg.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"
|
alias tprepBureau="ssh -v -p 5422 -L localhost:5488:rfidprod-preprod.cluster-cdb9sc2xntwg.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"
|
||||||
alias tprodMaison='ssh -A -L localhost:5488:localhost:5489 nereide@naxos.nereide.fr "ssh -p5422 -L localhost:5489:rfidprod-production.cluster-cppfo25bfalv.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"'
|
alias tprodMaison='ssh -A -L localhost:5488:localhost:5489 nereide@naxos.nereide.fr "ssh -p5422 -L localhost:5489:rfidprod-production.cluster-cppfo25bfalv.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"'
|
||||||
alias tprodBureau="ssh -v -p 5422 -L localhost:5488:rfidprod-production.cluster-cppfo25bfalv.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"
|
alias tprodBureau="ssh -v -p 5422 -L localhost:5488:rfidprod-production.cluster-cppfo25bfalv.eu-west-1.rds.amazonaws.com:5432 ofbiz@pp-sftp-technical.decathlon.net"
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,15 @@
|
||||||
|
[Desktop Entry]
|
||||||
|
Version=1.1
|
||||||
|
Type=Application
|
||||||
|
Terminal=false
|
||||||
|
Name=Zen
|
||||||
|
GenericName=Web Browser
|
||||||
|
StartupWMClass=zen-alpha
|
||||||
|
Comment=Cool Browser
|
||||||
|
Icon=firefox
|
||||||
|
Exec=/home/gil/.local/bin/zen-browser %u
|
||||||
|
Categories=GNOME;GTK;Network;WebBrowser;
|
||||||
|
MimeType=application/json;application/pdf;application/rdf+xml;application/rss+xml;application/x-xpinstall;application/xhtml+xml;application/xml;audio/flac;audio/ogg;audio/webm;image/avif;image/gif;image/jpeg;image/png;image/svg+xml;image/webp;text/html;text/xml;video/ogg;video/webm;x-scheme-handler/chrome;x-scheme-handler/http;x-scheme-handler/https;x-scheme-handler/mailto;
|
||||||
|
StartupNotify=true
|
||||||
|
Keywords=Internet;WWW;Browser;Web;Explorer;
|
||||||
|
X-GNOME-FullName=Zen Web Browser
|
||||||
|
|
@ -10,6 +10,9 @@ groups | grep -q sudo || return
|
||||||
|
|
||||||
[ ! -d "/etc/apt/keyrings/packages.mozilla.org.asc" ] && wget -qO - https://packages.mozilla.org/apt/repo-signing-key.gpg | sudo tee /etc/apt/keyrings/packages.mozilla.org.asc > /dev/null && echo "deb [signed-by=/etc/apt/keyrings/packages.mozilla.org.asc] https://packages.mozilla.org/apt mozilla main" | sudo tee -a /etc/apt/sources.list.d/mozilla.list > /dev/null
|
[ ! -d "/etc/apt/keyrings/packages.mozilla.org.asc" ] && wget -qO - https://packages.mozilla.org/apt/repo-signing-key.gpg | sudo tee /etc/apt/keyrings/packages.mozilla.org.asc > /dev/null && echo "deb [signed-by=/etc/apt/keyrings/packages.mozilla.org.asc] https://packages.mozilla.org/apt mozilla main" | sudo tee -a /etc/apt/sources.list.d/mozilla.list > /dev/null
|
||||||
|
|
||||||
|
# install zen browser
|
||||||
|
[ ! -f "$HOME/.local/bin/zen-browser" ] && wget https://github.com/zen-browser/desktop/releases/latest/download/zen-specific.AppImage -O ~/.local/bin/zen-browser && chmod +x ~/.local/bin/zen-browser
|
||||||
|
|
||||||
# sudo usermod -aG sudo $user # pour passer sudoers, puis reboot
|
# sudo usermod -aG sudo $user # pour passer sudoers, puis reboot
|
||||||
sudo apt update
|
sudo apt update
|
||||||
sudo apt install -y sxhkd firefox wmctrl yadm openjdk-17-jdk xclip maven vim-gtk3 vim vim-nox fzf cmake python3-tldextract uuid-runtime \
|
sudo apt install -y sxhkd firefox wmctrl yadm openjdk-17-jdk xclip maven vim-gtk3 vim vim-nox fzf cmake python3-tldextract uuid-runtime \
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue