summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.config/gtk-2.0/gtkfilechooser.ini4
-rw-r--r--.config/zsh/alias.zsh16
2 files changed, 3 insertions, 17 deletions
diff --git a/.config/gtk-2.0/gtkfilechooser.ini b/.config/gtk-2.0/gtkfilechooser.ini
index 0a61254..a305151 100644
--- a/.config/gtk-2.0/gtkfilechooser.ini
+++ b/.config/gtk-2.0/gtkfilechooser.ini
@@ -2,8 +2,8 @@
LocationMode=path-bar
ShowHidden=false
ShowSizeColumn=true
-GeometryX=0
-GeometryY=1024
+GeometryX=3366
+GeometryY=757
GeometryWidth=948
GeometryHeight=641
SortColumn=name
diff --git a/.config/zsh/alias.zsh b/.config/zsh/alias.zsh
index 4998eca..1ea2690 100644
--- a/.config/zsh/alias.zsh
+++ b/.config/zsh/alias.zsh
@@ -84,21 +84,7 @@ bssh() {
assh() {
user='admin'
host='bastion'
- if [ -z "$1" ]; then
- ssh $user@$host -- --osh
- return
- fi
- if [ "$1" != "--osh" ]; then
- tmp="$1"
- shift 1
- if ! grep -F '@' <<< "$tmp" >/dev/null 2>&1; then
- ssh $user@$host -t -- root@"$tmp" $*
- else
- ssh $user@$host -t -- "$tmp" $*
- fi
- else
- ssh $user@$host -t -- $*
- fi
+ ssh $user@$host -- --osh $*
}
upsrc() {
doas git -C /usr/src pull --ff-only