-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.linux
More file actions
executable file
·27 lines (21 loc) · 805 Bytes
/
.linux
File metadata and controls
executable file
·27 lines (21 loc) · 805 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#
# Contains scripts applicable to postfix only
#
# ---[ aliases ]---------------------------------------------------------
# Simulate pbcopy and pbpaste for copying to and from the pasteboard/clipboard
#
# from: http://whereswalden.com/2009/10/23/pbcopy-and-pbpaste-for-linux/
alias pbcopy='xsel --clipboard --input'
alias pbpaste='xsel --clipboard --output'
# apt-get helpers.
alias ai='sudo apt-fast install'
alias o='thunar || nautilus'
alias oo='thunar . || nautilus . &'
if hash giggle 2>/dev/null; then
alias gitx='giggle 2>/dev/null &'
else
alias gitx='gitk 2>/dev/null &'
fi
# Hide/Show desktop icons
alias hidedesktopicons="gsettings set org.gnome.desktop.background show-desktop-icons false"
alias showdesktopicons="gsettings set org.gnome.desktop.background show-desktop-icons true"