mirror of
https://gitea.blesmrt.net/mikaela/shell-things.git
synced 2024-12-23 11:12:48 +01:00
fix previous commit
This commit is contained in:
parent
2479d7971a
commit
e35ad04f01
@ -1,5 +1,14 @@
|
|||||||
PATH=$HOME/.local/bin/:$HOME/.local/sbin/:$HOME/.local/games/:/opt/local/bin/:/opt/local/sbin:/opt/local/games/:$PATH
|
PATH=$HOME/.local/bin/:$HOME/.local/sbin/:$HOME/.local/games/:/opt/local/bin/:/opt/local/sbin:/opt/local/games/:$PATH
|
||||||
|
|
||||||
|
# Sets environment variable CPUARCH to output of "uname -p" & UNAME to "uname"
|
||||||
|
UNAME=`uname`
|
||||||
|
CPUARCH=`uname -p`
|
||||||
|
|
||||||
|
# If we are on Mac, show hidden files in Finder and enable AirDrop over Ethernet and on unsupported (by Apple) Macs
|
||||||
|
if [ $UNAME = "Darwin" ]; then
|
||||||
|
defaults write com.apple.finder AppleShowAllFiles TRUE && defaults write com.apple.NetworkBrowser BrowseAllInterfaces 1
|
||||||
|
fi
|
||||||
|
|
||||||
# Use gpg-agent
|
# Use gpg-agent
|
||||||
eval $(gpg-agent --daemon)
|
eval $(gpg-agent --daemon)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user