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 # for windows named/classed as abc and xyz
windowrule=opaque,firefox windowrule=opaque,firefox
windowrule=float,dolphin windowrule=float,dolphin
windowrule=float,org.freedesktop.impl.portal.desktop.kde
windowrule=size 60% 60%,dolphin windowrule=size 60% 60%,dolphin
windowrule=float,mpv windowrule=float,mpv
windowrule=float,title:Picture-in-Picture windowrule=float,title:Picture-in-Picture

View file

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

View file

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

View file

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

View file

@ -1,6 +1,6 @@
#!/bin/sh #!/bin/sh
for filename in *.mov; do 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 rm $filename
done done