adding some tweaks to env
This commit is contained in:
parent
fe1e6c695b
commit
0f7392671c
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
||||
|
|
|
@ -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 = {
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue