diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rwxr-xr-x | bin/guiscripts/vrec | 6 | ||||
| -rw-r--r-- | config/essentials/gnupg/gpg-agent.conf | 1 | ||||
| -rw-r--r-- | config/theme/gtk-2.0/gtkfilechooser.ini | 11 |
4 files changed, 7 insertions, 12 deletions
@@ -4,3 +4,4 @@ config/essentials/gnupg/* config/extra/pikaur.conf config/theme/gtk-3.0/bookmarks tags +config/theme/gtk-2.0/gtkfilechooser.ini diff --git a/bin/guiscripts/vrec b/bin/guiscripts/vrec index 91443f4..d7baecf 100755 --- a/bin/guiscripts/vrec +++ b/bin/guiscripts/vrec @@ -117,7 +117,11 @@ case "$option" in ;; last) file="$(find "$dir" -type f -iname '*.mp4' -printf '%Ts %p\n' | sort -n -r | head -n 1 | cut -f 2- -d' ')" - printf '%s' "$file" + if [ -z "$1" ]; then + printf '%s' "$file" | clipp + else + printf '%s' "$file" + fi ;; full) record_cmd 0 0 1920 1080 "$dir" "$output" ;; audio) diff --git a/config/essentials/gnupg/gpg-agent.conf b/config/essentials/gnupg/gpg-agent.conf index 5ac350f..7e49ab6 100644 --- a/config/essentials/gnupg/gpg-agent.conf +++ b/config/essentials/gnupg/gpg-agent.conf @@ -1,2 +1,3 @@ max-cache-ttl 60480000 default-cache-ttl 60480000 +allow-preset-passphrase diff --git a/config/theme/gtk-2.0/gtkfilechooser.ini b/config/theme/gtk-2.0/gtkfilechooser.ini deleted file mode 100644 index 29c842b..0000000 --- a/config/theme/gtk-2.0/gtkfilechooser.ini +++ /dev/null @@ -1,11 +0,0 @@ -[Filechooser Settings] -LocationMode=path-bar -ShowHidden=false -ShowSizeColumn=true -GeometryX=542 -GeometryY=201 -GeometryWidth=836 -GeometryHeight=697 -SortColumn=name -SortOrder=ascending -StartupMode=recent |
