add stuff in public workflow

This commit is contained in:
Tykayn 2023-08-15 22:23:40 +02:00 committed by tykayn
parent a610a9f945
commit 882fd84c96
13 changed files with 466 additions and 4 deletions

9
assets/.bash_aliases Normal file
View file

@ -0,0 +1,9 @@
#!/bin/bash
# these bash aliases are meant to be added in your user folder,
# in a file named: .bash_aliases (with the dot at the beginning)
# done for my blog http://www.cipherbliss.com
############################ current
# load aliases from workflow folder
. $WORKFLOW_PATH/assets/.bash_aliases

View file

@ -0,0 +1,48 @@
# -*- coding: utf-8; mode: python; -*-
# Time-stamp: <2017-12-08 15:34:30 vk>
# ===================================================================== ##
# ##
# These are guessfilename configuration settings. ##
# ##
# You might not want to modify anything if you do not know, what ##
# you are doing :-) ##
# ##
# ===================================================================== ##
# INTEGRATION: modify variables in this file according to your requirements
MY_INSURANCE_ID = "1234567"
SOCIAL_SECURITY_NUMBER = "0987654321"
LOAN_INSTITUTE = "My Bank"
LOAN_ID = "123 456 789"
SALARY_STARTSTRING = "salaire"
RECHTSCHUTZVERSICHERUNG = "wtf_is_this_param"
VOLTINO_Kundennummer = "wtf_is_this_param"
# ===================================================================== ##
# ##
# These are INTERNAL configuration settings. ##
# ##
# You might not want to modify anything if you do not REALLY know, ##
# what you are doing :-) ##
# ##
# ===================================================================== ##
# the assert-statements are doing basic sanity checks on the configured variables
# please do NOT change them unless you are ABSOLUTELY sure what this means for the rest of lazyblorg!
#assert type(FILENAME_TAG_SEPARATOR) == unicode
#assert type(BETWEEN_TAG_SEPARATOR) == unicode
# END OF FILE #################################################################
# Local Variables:
# mode: flyspell
# eval: (ispell-change-dictionary "en_US")
# End:

76
assets/konsole.profile Normal file
View file

@ -0,0 +1,76 @@
[Appearance]
AntiAliasFonts=true
BoldIntense=true
ColorScheme=Solarized
DimmValue=56
Font=Noto Mono,16,-1,5,50,0,0,0,0,0
LineSpacing=0
TabColor=invalid
UseFontLineChararacters=false
[Cursor Options]
CursorShape=0
CustomCursorColor=255,255,255
CustomCursorTextColor=0,0,0
UseCustomCursorColor=false
[Encoding Options]
DefaultEncoding=UTF-8
[General]
Command=/usr/bin/zsh
DimWhenInactive=true
Environment=TERM=xterm-256color,COLORTERM=truecolor
Icon=utilities-terminal
LocalTabTitleFormat=%d : %n
Name=Profile 1
RemoteTabTitleFormat=(%u) %H
ShowTerminalSizeHint=true
SilenceSeconds=10
StartInCurrentSessionDir=true
TerminalCenter=true
TerminalColumns=110
TerminalMargin=20
TerminalRows=28
[Interaction Options]
AllowEscapedLinks=false
AlternateScrolling=true
AutoCopySelectedText=false
CopyTextAsHTML=true
CtrlRequiredForDrag=true
DropUrlsAsText=true
EscapedLinksSchema=http://;https://;file://
MiddleClickPasteMode=0
MouseWheelZoomEnabled=true
OpenLinksByDirectClickEnabled=false
PasteFromClipboardEnabled=false
PasteFromSelectionEnabled=true
TrimLeadingSpacesInSelectedText=false
TrimTrailingSpacesInSelectedText=false
TripleClickMode=0
UnderlineFilesEnabled=false
UnderlineLinksEnabled=true
WordCharacters=:@-./_~?&=%+#
[Keyboard]
KeyBindings=default
[Scrolling]
HighlightScrolledLines=true
HistoryMode=1
HistorySize=10000
ScrollBarPosition=1
ScrollFullPage=1
[Terminal Features]
BellMode=1
BidiRenderingEnabled=true
BlinkingCursorEnabled=false
BlinkingTextEnabled=true
FlowControlEnabled=true
PeekPrimaryKeySequence=
ReverseUrlHints=false
UrlHintsModifiers=0
VerticalLine=false
VerticalLineAtChar=80

35
assets/root_bashrc.txt Normal file
View file

@ -0,0 +1,35 @@
# some more ls aliases
alias ll='ls -alF'
alias la='ls -A'
alias l='ls -CF'
# Alias definitions.
# You may want to put all your additions into a separate file like
# ~/.bash_aliases, instead of adding them here directly.
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
# enable programmable completion features (you don't need to enable
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
# sources /etc/bash.bashrc).
#if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
# . /etc/bash_completion
#fi
##### more things to manage zfs and tykayn scripts : #####
source /home/tykayn/.bash_aliases
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$(rbenv init -)"
echo "loading zfs keys"
zfs load-key poule/encrypted
zfs mount -a
##### more things to manage zfs and tykayn scripts : #####