
@blogwart
AN machen ihren Job?
Ist doch super!
Warum sollten sie auch mehr leisten als wofür sie bezahlt werden?
Warum der Extra-Schritt?
BTW: Wie erklären sich dann die Milliarden Überstunden jedes Jahr?
Da hat sich etwas in die sehr falsche Richtung entwickelt.
Wie schaut die Sache eigentlich auf AG-Seite aus? Wird da (für die AN) der extra-Schritt gegangen?
Gerade Christdemokraten wie ich, die sich seit Jahren auch öffentlich gegen jedes #Bashing unter Demokraten gestellt & für faires, dialogisches #Miteinander eingesetzt haben, werden durch solche Aktionen getroffen!
Vertrauen ist kostbar & geht schnell verloren. Und ich bleibe dabei: Wer Angriffe auf Demokraten & deren Familien im Netz sogar noch hämisch bejubelt, trägt zur digitalen Gewalt & medialen Zerblasung von Demokratien bei. Das muss aufhören - jetzt!
Ein fröhliches Guten Morgen an alle 😀.
Wir arbeitsscheuen, Lifestyle Teilzeitbeschäftigten, haben schon wieder Wochenende.
Euch allen ein erholsames, damit wir ab Montag den Karren wieder aus dem Dreck ziehen.
#Wochenende #friedrichmerz #bashing #CDU #bundesregierung #wochenende
Edit your clipboard in $EDITOR
Requirements: moreutils, which contains vipe command, Wayland for clipboard. vipe is a command that takes in text, creates a temporary file with that text, and prints the content in the editor when it closes. Code: # Change editor if necessary. Also see the notes below. # export EDITOR="kate -b" wl-paste | vipe | wl-copy -n 2>/dev/null # wl-paste: Gets your clipboard content, and print that # vipe: Gets the printed clipboard content, open an editor pre-filled with it # wl-copy: Gets the edited result, add it back to your clipboard without the newline at the end Notes: You must save the content in the editor before quitting. The editor must not run detached. Otherwise, vipe thinks the editor is done editing, and does nothing. For example, use environment variable EDITOR="kate -b" (flag to make kate to run in blocking mode) to use kate for editing your clipboard.