Guest User

Untitled

a guest
Jun 19th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. Aliases (.bashrc )
  2. alias ll='ls -lah'
  3. alias l='ll'
  4. alias updateme="sudo apt-get update && sudo apt-get upgrade -y && sudo apt-get dist-upgrade -y && sudo apt-get autoremove -y"
  5.  
  6. screen (.screenrc)
  7. # Set the window caption.
  8. # I use caption instead of hardstatus, so it is available per split window too
  9. # (hardstatus is only per complete screen).
  10. caption always "%{= KW}%-Lw%{= wb}%n %t %{= KW}%+Lw %-=| ${USER}@%H | %M%d %c%{-}"
  11. # Some decryption:
  12. # %{= KW} background light black (aka dark gray) with foreground light white
  13. # %{= wb} background dark white (ake light gray) with foreground dark blue
  14. # %-Lw all windows before the current window.
  15. # %n%f %t current window number, flags and title.
  16. # %+Lw all windows after the current window.
  17. # %-= pad remaining spaces.
  18. # %H hostname.
  19. # %M%d %s month and day (MmmDD) and current time (HH:MM).
Add Comment
Please, Sign In to add comment