This commit is contained in:
fz0x1 2024-11-24 18:47:52 +01:00
parent b7591e4663
commit 1e64a7d670
16 changed files with 55 additions and 31 deletions

View file

@ -8,4 +8,4 @@ set postponed = "+Drafts"
set record = "+Sent"
set trash = "+Trash"
mailboxes =INBOX =Sent =Service =Hosting =Service =Keys =Drafts =Trash ='Receiving guarantee notifications' =Spam
mailboxes =INBOX =Sent =Umka =Service =Hosting =Service =Backup =Notes =Keys =Drafts =Trash ='Receiving guarantee notifications' =Spam

View file

@ -1,9 +1,9 @@
# general settings
auto-reload yes
max-items 50
# external browser
# some settings
include config-os
include miniflux
# unbind keys
unbind-key ENTER
@ -31,3 +31,5 @@ color article default default
highlight article "^(Title):.*$" blue default
highlight article "https?://[^ ]+" red default
highlight article "\\[image\\ [0-9]+\\]" green default
max-items 0

BIN
global/.newsboat/miniflux Normal file

Binary file not shown.

View file

@ -1,5 +0,0 @@
https://www.opennet.ru/opennews/opennews_all_utf.rss
https://www.linux.org.ru/section-rss.jsp?section=1
https://xakep.ru/feed/
https://www.securitylab.ru/_services/export/rss/
https://www.cyberciti.com/atom/atom.xml

View file

@ -124,6 +124,10 @@ alias s_diary="cd ~/PKM/diary/ && git commit -am \"\$(date +%Y%m%d)\" && git pus
alias s_ledger="cd ~/PKM/ledger/ && git commit -am \"\$(date +%Y%m%d)\" && git push origin master ; cd ~"
## screenshots
alias scrn="screenshot.sh"
## secure deletion files
alias rrmm="shred -n 7 -z -u"
## secure deletion files in directory
alias frmm="find . -type f -exec shred -n 7 -z -u {} +"
# bindkeys
## autosuggest

Binary file not shown.

View file

@ -1,5 +0,0 @@
#!/usr/bin/env sh
pkill -u "$USER" -USR1 dunst
~/.config/i3/i3lock
pkill -u "$USER" -USR2 dunst

View file

@ -1,12 +0,0 @@
#!/usr/bin/env sh
connected_monitors=$(xrandr | grep " connected" | awk '{ print $1 }')
if echo "$connected_monitors" | grep -q "HDMI"; then
xrandr --output eDP-1 --off
xrandr --output HDMI-1-0 --mode 2560x1440 --rate 165.00 --dpi 120
# xrandr --output eDP-1 --left-of HDMI-1-0
xrandr --output HDMI-1-0 --primary
else
xrandr --output eDP-1 --mode 2560x1600 --rate 240.00 --dpi 160
fi