From 75b47fca281ed5ba0e8ba63bb6a75dde904d5171 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Fri, 8 Jan 2021 02:27:26 +0100 Subject: Added clipboard support for project-open --- bin/project-open | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'bin') diff --git a/bin/project-open b/bin/project-open index 955d31d..adb27a4 100755 --- a/bin/project-open +++ b/bin/project-open @@ -34,12 +34,13 @@ else "clone") while [ -z "$remote_choice" ] do - remote_choice=$(printf 'github.com\ncacharle.xyz\nother' | dmenu -p "Remote location") + remote_choice=$(printf 'github.com\ncacharle.xyz\nclipboard\nother' | dmenu -p "Remote location") done case "$remote_choice" in - "github.com") prefix='git@github.com:cacharle/' ;; - "cacharle.xyz") prefix='git@cacharle.xyz:/srv/git/' ;; - "other") ;; + github.com) prefix='git@github.com:cacharle/' ;; + cacharle.xyz) prefix='git@cacharle.xyz:/srv/git/' ;; + clipboard) dest="$(xclip -selection clipboard -o)" ;; + other) ;; esac url="$prefix$(echo "$dest" | dmenu -p "Enter repository url: $prefix")" st -e /bin/sh -c "git clone --recursive '$url' '$dest_path' && cd '$dest_path' && exec $SHELL" || -- cgit From 22fb4594ec830f0072e9f0b45bac3a5f19897987 Mon Sep 17 00:00:00 2001 From: Charles Cabergs Date: Sat, 20 Feb 2021 23:46:53 +0100 Subject: Switching back to solarized (weird bug when openning file with autocmd, takes 2/3 seconds), Added qutebrowser larouse search engine and blocking 3rd party cookies --- bin/tag-music | 2 +- bin/touchpad-toggle | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) (limited to 'bin') diff --git a/bin/tag-music b/bin/tag-music index e801132..826a83a 100755 --- a/bin/tag-music +++ b/bin/tag-music @@ -25,7 +25,7 @@ do song="$(echo "$song" | cut -d '-' -f 2-)" fi # echo $track $song - echo $song_file + # echo $song_file taffy --artist "$artist" --album "$album" --title "$song" --track "$track" "$song_file" done done diff --git a/bin/touchpad-toggle b/bin/touchpad-toggle index f0a86a1..e4dc959 100755 --- a/bin/touchpad-toggle +++ b/bin/touchpad-toggle @@ -4,6 +4,9 @@ touchpad_name='ETPS/2 Elantech Touchpad' active="$(xinput list-props "$touchpad_name" | grep 'Device Enabled' | cut -f 3)" -[ "$active" -eq 1 ] && - xinput disable "$touchpad_name" || +if [ "$active" -eq 1 ] +then + xinput disable "$touchpad_name" +else xinput enable "$touchpad_name" +fi -- cgit