

Yup, found it just the other day when I wanted to have ls -l
output in multiple columns instead of a single one.
Yup, found it just the other day when I wanted to have ls -l
output in multiple columns instead of a single one.
You need to add a space between the paragraphs for it to work.
Like this.
I still have to wait a long time for the video to load in the Mpv cache
In my experience the video loads in a few seconds compared to the minutes it’d take for it to download, but I get your second point.
So my new workflow is to use Piped to find a video, then copy the end of the link and type “yt-dlp <C-S-v>” in a terminal, wait for the video(s) to download, and open in mpv.
Why not just pass the YouTube link to mpv so you don’t have to wait for the video to download?
I’ve been using it for years and never encountered any issues (besides the fact that they’ve removed comments from the download pages).
I’ve had this same situation happen to me before and my solution was to search -x
instead of just x
.
My guess is that sway checks sets the opacity when the window open, so when the first rule matches (app_id=.*
) it skips all others, so maybe try putting the other 2 rules above the first one?
Sorry if my comment is incomprehensible, I’ve just woken up.
I love the different attitudes the first line of the posts has.
Mine’s pretty simple:
## .bashrc export BLA=$(tput setaf 0) # Black export RED=$(tput setaf 1) # Red export GRE=$(tput setaf 2) # Green export YEL=$(tput setaf 3) # Yellow export BLU=$(tput setaf 4) # Blue export MAG=$(tput setaf 5) # Magenta export CYA=$(tput setaf 6) # Cyan export WHI=$(tput setaf 7) # White export BOL=$(tput bold) # Bold export ITA=$(tput sitm) # Italic export UL=$(tput smul) # Underline export NC=$(tput sgr0) # No color & format _branch() { local branch=$(__git_ps1 "%s") if [[ -z $branch ]]; then printf "${BLA}null${NC}" else printf "${CYA}$branch" fi } PS1='.\[$(_pwd)\] \[$BLA\]〜 \[$MAG\]git\[$BLA\]:\[$(_branch)\] \n \[$NC$CYA\]\! \[$MAG\]\$ \[$NC\]' ## .inputrc set vi-ins-mode-string \1\e[34m\2.INS set vi-cmd-mode-string \1\e[33m\2.CMD