dotfiles.git

commit fb1ac6307ca117d79f7dea71c1d2fb64daef1a26

Author: Adam Evyčędo <git@apiote.xyz>

remove unnecessary

  | 2 +-
 .gitignore | 3 ++-
 .local/bin/journal | 11 -----------
 .local/bin/sudo | 4 ----
 .local/bin/thumb | 21 ---------------------
 .profile | 12 ------------


diff --git a/.config/sh/variables.Mycroft b/.config/sh/variables.Mycroft
deleted file mode 100644
index 1462f83b95c270ac31df095c03fb99e46d4d3bc2..0000000000000000000000000000000000000000
--- a/.config/sh/variables.Mycroft
+++ /dev/null
@@ -1,2 +0,0 @@
-export PATH=~/.local/bin:/opt/texlive/2021/bin/x86_64-linuxmusl:/usr/local/bin:/usr/bin
-export HAREPATH=~/Code/dwd/hare




diff --git a/.config/sh/variables.mycroft b/.config/sh/variables.mycroft
new file mode 100644
index 0000000000000000000000000000000000000000..6922f91b5d018ff3f0d2ad832904266c12f15580
--- /dev/null
+++ b/.config/sh/variables.mycroft
@@ -0,0 +1,2 @@
+export PATH=~/.local/bin:/opt/texlive/2021/bin/x86_64-linuxmusl:/usr/local/bin:/usr/bin:/bin
+export HAREPATH=~/Code/dwd/hare




diff --git a/.gitignore b/.gitignore
index 8a4be971e42c310e3f68f4ffa33218bce7d03174..14b544d4e3ad85dea5a5346b7c30b46103ae2be8 100644
--- a/.gitignore
+++ b/.gitignore
@@ -13,8 +13,10 @@ /.local/share/ssh
 !/.local/share/ssh/config
 /.config/GIMP
 /.config/Thunar
+/.config/Yubico/u2f_keys
 /.config/aerc/accounts.conf
 /.config/calibre
+/.config/enchant
 /.config/gedit
 /.config/glib-2.0
 /.config/gmitohtml
@@ -78,4 +80,3 @@ /.local/share/vdirsyncer
 /.local/share/webkitgtk-4.0
 /.local/share/webkitgtk
 /.local/share/zathura
-




diff --git a/.local/bin/journal b/.local/bin/journal
deleted file mode 100755
index 2f1a9502a48d572b5e63de01883bf9fd68d86b0d..0000000000000000000000000000000000000000
--- a/.local/bin/journal
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-
-set -e
-
-cd ~/Code/current/asgard/
-./asgard eostre
-cp ./*.html ~/Documents/Creatio/Diary/Current/
-cd ~/Documents/Creatio/
-zip -r "diary_$(date '+%Y%m%d')" Diary/
-cd Diary
-echo 'yes' | ./convert




diff --git a/.local/bin/sudo b/.local/bin/sudo
deleted file mode 100755
index 623de906410f72262a57546f485d0b2a258c6297..0000000000000000000000000000000000000000
--- a/.local/bin/sudo
+++ /dev/null
@@ -1,4 +0,0 @@
-#!/bin/bash
-
-echo use doas!
-exit 127




diff --git a/.local/bin/thumb b/.local/bin/thumb
deleted file mode 100755
index 364743b11a223f255c5ba87f952003c753751765..0000000000000000000000000000000000000000
--- a/.local/bin/thumb
+++ /dev/null
@@ -1,21 +0,0 @@
-#!/bin/sh
-
-if [ "$(id -u)" -ne 0 ]
-then
-	echo must be run as root
-	exit 1
-fi
-
-if ! podman image exists thumb
-then
-	podman build ~adam/.config/podman/thumb -t thumb
-fi
-
-if [ $# -eq 1 ]
-then
-	device="/dev/sdb1"
-else
-	device="$1"
-fi
-
-podman run --rm -it --privileged --device "$device:/dev/sdb1" thumb ash -c 'mount /dev/sdb1 /home && python /ExtractCoverThumbs/__main__.py /home'




diff --git a/.profile b/.profile
deleted file mode 100644
index 75a5374c2c052ebe5ded96255d2d217f4504ad8b..0000000000000000000000000000000000000000
--- a/.profile
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/bin/sh
-
-. "$HOME/.config/sh/variables"
-. "$XDG_CONFIG_HOME/sh/variables.$(hostname)"
-if [ "$WAYLAND_DISPLAY" != "" ]
-then
-	. "$XDG_CONFIG_HOME/sh/variables.wayland"
-fi
-if [ "$(tty)" = "/dev/tty1" ] && command -v sway >/dev/null 2>&1
-then
-	sway
-fi