aboutsummaryrefslogtreecommitdiff
path: root/.zsh_aliases
diff options
context:
space:
mode:
authorCharles Cabergs <me@cacharle.xyz>2020-09-27 15:16:30 +0200
committerCharles Cabergs <me@cacharle.xyz>2020-09-27 15:16:30 +0200
commit901207d1651a555cfd45828abd2f441a44be5a7c (patch)
tree695409213d23846d7c3a2139e9af0c46220f6fad /.zsh_aliases
parentcb9e981c80476a7297ecd7c80ba9cd8eafe0f0d1 (diff)
downloaddotfiles-901207d1651a555cfd45828abd2f441a44be5a7c.tar.gz
dotfiles-901207d1651a555cfd45828abd2f441a44be5a7c.tar.bz2
dotfiles-901207d1651a555cfd45828abd2f441a44be5a7c.zip
Added dual resolution, minishell_test flags
Diffstat (limited to '.zsh_aliases')
-rw-r--r--.zsh_aliases4
1 files changed, 3 insertions, 1 deletions
diff --git a/.zsh_aliases b/.zsh_aliases
index 5627844..1115abc 100644
--- a/.zsh_aliases
+++ b/.zsh_aliases
@@ -79,7 +79,7 @@ gpa() {
alias lpassp='lpass show --password --clip' # put password in clipboard
# helper to switch between dual and single monitor setup
-alias dual='xrandr --output LVDS1 --primary --left-of VGA1 --output VGA1 --auto'
+alias dual='xrandr --output LVDS1 --primary --left-of VGA1 --output VGA1 --mode 1280x1024'
alias single='xrandr --output VGA1 --off'
# edit config files
@@ -137,3 +137,5 @@ pacman-url() {
grep-kill() {
ps aux | grep "$1" | tr -s ' ' | cut -d ' ' -f 2 | xargs kill
}
+
+alias filter-valgrind="sed -e 's/==[0-9]*==/==/' -e 's/0x[0-9A-F]*//'"