mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-01-18 03:48:44 +01:00
b2c252d82a
After a considerable amount of research, I finally understand how to use chmod and what file permissions in linux actually mean. It turns out that git can commit both regular files (644 permission) and executable files (755 permission). This is great since changing file permissions manually after a git clone is no longer needed. This useful feature is enabled by default, however, it seems like I disabled it a long time ago. If this is you, simply re-enable it by setting `filemode` to true in your .git/config.
8 lines
234 B
Bash
Executable File
8 lines
234 B
Bash
Executable File
#!/bin/sh
|
|
# New Start: A modern Arch workflow built with an emphasis on functionality.
|
|
# Copyright (C) 2017-2018 Donovan Glover
|
|
|
|
DATETIME=`date +%F_%H%M%S`
|
|
shotgun ~/$DATETIME.png
|
|
feh ~/$DATETIME.png --geometry 3200x1800 --scale-down
|