Compare commits

...

7 commits

Author SHA1 Message Date
Geoffrey Frogeye 0d86e537d1
Apparently it's Intel Graphics? 2022-11-04 14:19:38 +01:00
Geoffrey Frogeye eddb48e461
Disable power button
Oh I didn't commit this, probably why I still have the problem on the
Pinebook x)
2022-11-04 14:15:01 +01:00
Geoffrey Frogeye 9fac2c3701
cached_pass: Re-ask password if previously failed 2022-11-04 14:14:13 +01:00
Geoffrey Frogeye d5e9cc2273
camera_name_date: formatting pass 2022-11-04 14:13:55 +01:00
Geoffrey Frogeye 4030606ec8
Add screen brightness in jour/nuit/crepuscule
Wanted to do that in Ansible but those things have been living in the
script themselves forever and making this repo never fully commited,
got fed up of that and made a loosy "if $HOSTNAME" so I can move on wit
it.
Still need to do the same on the other devices though.
2022-11-04 14:12:16 +01:00
Geoffrey Frogeye 060e9db995
picture_name_date: Remove progress bar supportsuffixes 2022-11-04 14:09:01 +01:00
Geoffrey Frogeye ceaa2d1671
Make rssVideos use release date 2022-11-04 14:07:37 +01:00
10 changed files with 49 additions and 32 deletions

View file

@ -1,5 +1,5 @@
Section "Device"
Identifier "intel"
Identifier "Intel Graphics"
Driver "intel"
Option "Backlight" "intel_backlight"
EndSection

View file

@ -39,3 +39,8 @@
debug:
msg: "The Panfrost display driver configuration was changed, but needs a reboot to be applied."
listen: panfrost config changed
- name: Reload systemd-logind
command: systemctl kill -s HUP systemd-logind
become: yes
listen: systemd-logind config changed

View file

@ -356,6 +356,19 @@
- etc changed
- systemd changed
- name: Disable power button
lineinfile:
path: /etc/systemd/logind.conf
line: 'HandlePowerKey=ignore'
regexp: '^#? *HandlePowerKey='
insertafter: '^\[Login\]$'
become: yes
notify: systemd-logind config changed
# Reason: I sometimes press it accidentally
# (hoping to start it when it's already started,
# or really accidentally on the Pinebook).
# Suspend would be nice, but it doesn't have the locker then
# TODO Hibernation, if that's relevant
# $ sudo blkid | grep 'TYPE="swap"'
# $ sudoedit /etc/default/grub

View file

@ -19,7 +19,7 @@ chmod 700 "$BASEDIR"
name_base64="$(echo "$name" | base64)"
file="${BASEDIR}/${name_base64}"
if [ ! -f "${file}" ]
if [ ! -s "${file}" ]
then
notify-send -u low "cached_pass" "Asking to cache: ${name}"
pass ${name} > "${file}"

View file

@ -67,8 +67,8 @@ def main(args: argparse.Namespace) -> None:
new_filename = (
f"{m['Y']}-{m['M']}-{m['D']}_"
f"{m['h']}-{m['m']}-{m['s']}"
f"{m.get('dup', '')}"
f"{m.get('spec', '')}"
f"{m.get('dup') or ''}"
f"{m.get('spec') or ''}"
f"{args.suffix}"
f".{m['ext']}"
)

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# TODO De-hardcode
echo 30000 | sudo tee /sys/class/backlight/intel_backlight/brightness
xrandr --output HDMI-0 --brightness 1
if [ "$(cat /etc/hostname)" = "curacao.geoffrey.frogeye.fr" ]
then
echo 10000 | sudo tee /sys/class/backlight/intel_backlight/brightness
fi
automatrop -e base16_scheme=solarized-dark --tags color

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# TODO De-hardcode
echo 30000 | sudo tee /sys/class/backlight/intel_backlight/brightness
xrandr --output HDMI-0 --brightness 1
if [ "$(cat /etc/hostname)" = "curacao.geoffrey.frogeye.fr" ]
then
echo 40000 | sudo tee /sys/class/backlight/intel_backlight/brightness
fi
automatrop -e base16_scheme=solarized-light --tags color

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
# TODO De-hardcode
echo 1 | sudo tee /sys/class/backlight/intel_backlight/brightness
xrandr --output HDMI-0 --brightness 0.5
if [ "$(cat /etc/hostname)" = "curacao.geoffrey.frogeye.fr" ]
then
echo 1 | sudo tee /sys/class/backlight/intel_backlight/brightness
fi
automatrop -e base16_scheme=solarized-dark --tags color

View file

@ -9,7 +9,6 @@ import typing
import coloredlogs
import exifread
import progressbar
log = logging.getLogger(__name__)
coloredlogs.install(level="DEBUG", fmt="%(levelname)s %(message)s", logger=log)
@ -38,12 +37,7 @@ def main(args: argparse.Namespace) -> None:
log.warning("Counting files...")
kwargs = {"directory": args.dir, "skip_renamed": args.skip_renamed}
log.warning("Processing files...")
if args.hide_bar:
iterator = get_pictures(**kwargs)
else:
nb_imgs = len(list(get_pictures(**kwargs)))
iterator = progressbar.progressbar(get_pictures(**kwargs), max_value=nb_imgs)
for full_path in iterator:
for full_path in get_pictures(**kwargs):
# Find date
with open(full_path, 'rb') as fd:
exif_data = exifread.process_file(fd)
@ -62,7 +56,7 @@ def main(args: argparse.Namespace) -> None:
ext = os.path.splitext(full_path)[1].lower()
if ext == '.jpeg':
ext = '.jpg'
new_name = date.isoformat().replace(":", "-").replace("T", "_")
new_name = date.isoformat().replace(":", "-").replace("T", "_") + args.suffix
# First substitution is to allow images being sent to a NTFS filesystem
# Second substitution is for esthetics
new_path = os.path.join(args.dir, f"{new_name}{ext}")
@ -71,7 +65,7 @@ def main(args: argparse.Namespace) -> None:
while os.path.exists(new_path):
if full_path == new_path:
break
log.debug(f"{full_path} already exists, incrementing")
log.debug(f"{new_path} already exists, incrementing")
i += 1
new_path = os.path.join(args.dir, f"{new_name}_{i}{ext}")
@ -103,16 +97,16 @@ if __name__ == "__main__":
help="Do not actually rename, just show old and new path",
)
parser.add_argument(
"-s",
"-r",
"--skip-renamed",
action="store_true",
help="Skip images whose filename doesn't match usual camera output filenames.",
)
parser.add_argument(
"-b",
"--hide-bar",
action="store_true",
help="Do not show a progress bar. Also skip counting images",
"-s",
"--suffix",
default="",
help="Text to add before the extension",
)
args = parser.parse_args()
main(args)

View file

@ -148,7 +148,12 @@ class RVElement:
@property
def date(self) -> datetime.datetime:
return datetime.datetime.fromtimestamp(self.item["published"])
timestamp = (
int(self.item.get("timestampUsec", "0")) / 1000000
or int(self.item.get("crawlTimeMsec", "0")) / 1000
or self.item["published"]
)
return datetime.datetime.fromtimestamp(timestamp)
@property
def is_researched(self) -> bool:
@ -475,7 +480,7 @@ class RVDatabase:
def ytdl_opts(self) -> dict:
# Get user/system options
prev_argv = sys.argv
sys.argv = ['yt-dlp']
sys.argv = ["yt-dlp"]
_, _, _, ydl_opts = yt_dlp.parse_options()
sys.argv = prev_argv
return ydl_opts