Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
49efbf5eaa | |||
ff1ea2b817 | |||
ddda43ae98 |
5 changed files with 1254 additions and 26 deletions
30
bash/.bashrc
30
bash/.bashrc
|
@ -155,26 +155,20 @@ alias ..="cd .."
|
||||||
# empty the screen (or use C-l)
|
# empty the screen (or use C-l)
|
||||||
alias c="clear"
|
alias c="clear"
|
||||||
|
|
||||||
# why wouldn't you want human readable sizes?
|
|
||||||
alias df="df -h"
|
|
||||||
|
|
||||||
# get outta here!
|
# get outta here!
|
||||||
alias e="exit"
|
alias e="exit"
|
||||||
|
|
||||||
# grep shortie
|
# ls is eza
|
||||||
alias g="grep --color=auto -i "
|
alias ls="eza"
|
||||||
|
|
||||||
# shorter ls
|
# shorter ls
|
||||||
alias l="ls -G --color"
|
alias l="eza"
|
||||||
|
|
||||||
# list files with details
|
# list files with details
|
||||||
alias ll="ls -lh --color"
|
alias ll="eza -lh --git"
|
||||||
|
|
||||||
# list all files.
|
# list all files.
|
||||||
alias la="ls -alh --color"
|
alias la="eza -lha --git"
|
||||||
|
|
||||||
# List directories.
|
|
||||||
alias ld="ls --color -Gd */"
|
|
||||||
|
|
||||||
# add some color to grep.
|
# add some color to grep.
|
||||||
alias grep="grep --color=auto"
|
alias grep="grep --color=auto"
|
||||||
|
@ -195,20 +189,6 @@ alias pc='python -ic "from __future__ import division; from math import *"'
|
||||||
alias nano='nano -ciw '
|
alias nano='nano -ciw '
|
||||||
|
|
||||||
|
|
||||||
# emacsclient
|
|
||||||
alias ec="emacsclient -n -c -a emacs"
|
|
||||||
|
|
||||||
if [[ HAS_GNOME ]]; then
|
|
||||||
alias nosleep="gnome-session-inhibit --inhibit-only"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# magic packets to wake up hosts
|
|
||||||
alias wake_richie="wakeonlan ec:b1:d7:44:91:40"
|
|
||||||
alias wake_ari="wakeonlan 3c:97:0e:97:32:84 6c:88:14:36:92:b0"
|
|
||||||
alias wake_uzi="wakeonlan f4:d4:88:7d:6a:e9 34:99:71:d8:a4:48"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# __ _ _
|
# __ _ _
|
||||||
# / _|_ _ _ __ ___| |_(_) ___ _ __ ___
|
# / _|_ _ _ __ ___| |_(_) ___ _ __ ___
|
||||||
# | |_| | | | '_ \ / __| __| |/ _ \| '_ \/ __|
|
# | |_| | | | '_ \ / __| __| |/ _ \| '_ \/ __|
|
||||||
|
|
|
@ -12,4 +12,4 @@ configurations:
|
||||||
-
|
-
|
||||||
mailbox: INBOX
|
mailbox: INBOX
|
||||||
onNewMail: "/home/amd/.local/bin/sync_email.sh"
|
onNewMail: "/home/amd/.local/bin/sync_email.sh"
|
||||||
onNewMailPost: 'notify-send --app-name neomutt --icon=mail-message-new --category=email.arrived "New email in inbox."'
|
#onNewMailPost: 'notify-send --app-name neomutt --icon=mail-message-new --category=email.arrived "New email in inbox."'
|
||||||
|
|
2
freecad/.config/FreeCAD/FreeCAD.conf
Normal file
2
freecad/.config/FreeCAD/FreeCAD.conf
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[General]
|
||||||
|
LastCacheCheck=@Variant(\0\0\0\xe\0%\x8c\x41)
|
27
freecad/.config/FreeCAD/system.cfg
Normal file
27
freecad/.config/FreeCAD/system.cfg
Normal file
|
@ -0,0 +1,27 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
|
||||||
|
<FCParameters>
|
||||||
|
<FCParamGroup Name="Root">
|
||||||
|
<FCParamGroup Name="Modules">
|
||||||
|
<FCParamGroup Name="Assembly">
|
||||||
|
<FCText Name="HelpIndex">Assembly/Help/index.html</FCText>
|
||||||
|
<FCText Name="WorkBenchName">Assembly</FCText>
|
||||||
|
<FCText Name="WorkBenchModule">AssemblyWorkbench.py</FCText>
|
||||||
|
</FCParamGroup>
|
||||||
|
<FCParamGroup Name="Path">
|
||||||
|
<FCText Name="HelpIndex">Path/Help/index.html</FCText>
|
||||||
|
<FCText Name="WorkBenchName">CAM</FCText>
|
||||||
|
<FCText Name="WorkBenchModule">PathWorkbench.py</FCText>
|
||||||
|
</FCParamGroup>
|
||||||
|
<FCParamGroup Name="Spreadsheet">
|
||||||
|
<FCText Name="HelpIndex">Spreadsheet/Help/index.html</FCText>
|
||||||
|
<FCText Name="WorkBenchName">Spreadsheet</FCText>
|
||||||
|
<FCText Name="WorkBenchModule">SpreadsheetWorkbench.py</FCText>
|
||||||
|
</FCParamGroup>
|
||||||
|
<FCParamGroup Name="Start">
|
||||||
|
<FCText Name="WorkBenchName">Start</FCText>
|
||||||
|
<FCText Name="WorkBenchModule">Start.py</FCText>
|
||||||
|
</FCParamGroup>
|
||||||
|
</FCParamGroup>
|
||||||
|
</FCParamGroup>
|
||||||
|
|
||||||
|
</FCParameters>
|
1219
freecad/.config/FreeCAD/user.cfg
Normal file
1219
freecad/.config/FreeCAD/user.cfg
Normal file
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue