XR for Universal Blue and Fedora Atomic Desktops
vr fedora-atomic linux
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add OS files to gitignore

+45 -6
.DS_Store

This is a binary file and will not be displayed.

+45 -6
.gitignore
··· 1 + ### Linux template 2 + *~ 3 + 4 + # temporary files which can be created if a process still has a handle open of a deleted file 5 + .fuse_hidden* 6 + 7 + # KDE directory preferences 8 + .directory 9 + 10 + # Linux trash folder which might appear on any partition or disk 11 + .Trash-* 12 + 13 + # .nfs files are created when an open file is removed but is still being accessed 14 + .nfs* 15 + 16 + ### Zig template 1 17 .zig-cache/ 2 18 zig-out/ 3 - /release/ 4 - /debug/ 5 - /build/ 6 - /build-*/ 7 - /docgen_tmp/ 8 - .idea/ 19 + 20 + ### macOS template 21 + # General 22 + .DS_Store 23 + .AppleDouble 24 + .LSOverride 25 + 26 + # Icon must end with two \r 27 + Icon 28 + 29 + # Thumbnails 30 + ._* 31 + 32 + # Files that might appear in the root of a volume 33 + .DocumentRevisions-V100 34 + .fseventsd 35 + .Spotlight-V100 36 + .TemporaryItems 37 + .Trashes 38 + .VolumeIcon.icns 39 + .com.apple.timemachine.donotpresent 40 + 41 + # Directories potentially created on remote AFP share 42 + .AppleDB 43 + .AppleDesktop 44 + Network Trash Folder 45 + Temporary Items 46 + .apdisk 47 +