adding some tweaks to env

This commit is contained in:
Chris Cochrun 2023-07-12 11:32:32 -05:00
parent fe1e6c695b
commit 0f7392671c
5 changed files with 11 additions and 5 deletions

View file

@ -103,6 +103,7 @@ misc {
# for windows named/classed as abc and xyz
windowrule=opaque,firefox
windowrule=float,dolphin
windowrule=float,org.freedesktop.impl.portal.desktop.kde
windowrule=size 60% 60%,dolphin
windowrule=float,mpv
windowrule=float,title:Picture-in-Picture

View file

@ -10,6 +10,10 @@
swww
starship
# The guix version of dolphin isn't built for wayland and can't find the icon theme
# dolphin
# kdenlive
# glaxnimate
# ark
pmbootstrap
element-desktop-wayland

View file

@ -114,7 +114,7 @@
"dolphin"
"ffmpegthumbs"
"ffmpegthumbnailer"
"kio-fuse"
"kio"
"kio-extras"
"nautilus"
"dconf"
@ -123,6 +123,7 @@
"tracker-miners"
"gvfs"
"kfind"
"kiconthemes"
"ark"
"kdenlive-fix"
"gimp"

View file

@ -22,13 +22,13 @@
# Let Home Manager install and manage itself.
programs.home-manager.enable = true;
xdg.userDirs.desktop = "${config.home.homeDirectory}/desk";
xdg.userDirs.desktop = "${config.home.homeDirectory}";
xdg.userDirs.documents = "${config.home.homeDirectory}/docs";
xdg.userDirs.download = "${config.home.homeDirectory}/dls";
xdg.userDirs.music = "${config.home.homeDirectory}/music";
xdg.userDirs.pictures = "${config.home.homeDirectory}/pics";
xdg.userDirs.publicShare = "${config.home.homeDirectory}/public";
# xdg.userDirs.temptlates = "${config.home.homeDirectory}/templates";
xdg.userDirs.publicShare = "${config.home.homeDirectory}";
xdg.userDirs.temptlates = "${config.home.homeDirectory}";
xdg.userDirs.videos = "${config.home.homeDirectory}/vids";
accounts.email = {

View file

@ -1,6 +1,6 @@
#!/bin/sh
for filename in *.mov; do
ffmpeg -hwaccel cuda -hwaccel_output_format cuda -i "${filename}" -c:v hevc_nvenc -c:a aac -crf 22 "${filename%.*}".mp4
ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi -hwaccel_device /dev/dri/renderD128 -i "${filename}" -vf 'format=nv12,hwupload' -c:v hevc_vaapi -c:a aac -crf 22 "${filename%.*}".mp4
rm $filename
done