From ae5ebcee4d4c69ae1d6c1b01250107dcb3c1d51f Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Thu, 23 Jan 2020 15:24:39 -0500 Subject: [PATCH 1/3] sxhkd removed from i3 and dwm --- .xprofile | 1 - 1 file changed, 1 deletion(-) diff --git a/.xprofile b/.xprofile index f1e73b33..f7418610 100644 --- a/.xprofile +++ b/.xprofile @@ -8,7 +8,6 @@ setbg & # set the background with the `setbg` script xcompmgr & # xcompmgr for transparency $STATUSBAR & # script for updating the status bar dunst & # dunst for notifications -sxhkd -m 1 & # Bind keys with sxhkd xset r rate 300 50 & # Speed xrate up unclutter & # Remove mouse when idle mpd-module-update & # Check for when to update the mpd module From e32a1f5779f3626219316a57e796bfa6bf623b68 Mon Sep 17 00:00:00 2001 From: mhdzli <50514359+mhdzli@users.noreply.github.com> Date: Fri, 24 Jan 2020 03:41:33 +0330 Subject: [PATCH 2/3] Allow access to phone date (#462) Sometimes android phones ask for permission to allow access to phone data --- .local/bin/dmenumount | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.local/bin/dmenumount b/.local/bin/dmenumount index 67844024..e01c7eb3 100755 --- a/.local/bin/dmenumount +++ b/.local/bin/dmenumount @@ -31,6 +31,8 @@ mountusb() { \ mountandroid() { \ chosen=$(echo "$anddrives" | dmenu -i -p "Which Android device?" | cut -d : -f 1) getmount "$HOME -maxdepth 3 -type d" + simple-mtpfs --device "$chosen" "$mp" + echo "OK" | dmenu -i -p "Tap Allow on your phone if it asks for permission and then press enter" simple-mtpfs --device "$chosen" "$mp" notify-send "🤖 Android Mounting" "Android device mounted to $mp." } From aa2ff4f2adc7182e7a58f58f7df57536cc94868b Mon Sep 17 00:00:00 2001 From: Vlad Doster Date: Sun, 26 Jan 2020 19:51:34 -0500 Subject: [PATCH 3/3] fix(added zsh history) ref #465 Added zsh history --- .config/zsh/.zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 63c0049b..4a93e7ba 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -7,6 +7,11 @@ PS1="%B%{$fg[red]%}[%{$fg[yellow]%}%n%{$fg[green]%}@%{$fg[blue]%}%M %{$fg[magent [ -f "$HOME/.config/shortcutrc" ] && source "$HOME/.config/shortcutrc" [ -f "$HOME/.config/aliasrc" ] && source "$HOME/.config/aliasrc" +# History +HISTSIZE=1000 +SAVEHIST=1000 +HISTFILE=$ZDOTDIR/.history + autoload -U compinit zstyle ':completion:*' menu select zmodload zsh/complist