You know, people are dying, the economy is collapsing and the world is falling apart, but at least I can watch Luke's videos everyday and customize my ThinkPad just as I want it, so everthing is going to be alright.
I envision a ruinous landscape and someone in a half collapsed building, clutching their ThinkPad, just pressing shortcuts to change their background to different pre-apocalypse scenes of beaches, swimming pools overlooking cities and mountains.
"People give arch users a hard time, but really it's wayland users who won't shutup about the stupid software they use" -- man with youtube channel dedicated mostly to talking the software he uses btw I use sway
@@sr.junior4670 nothing is bloated it might appear bloated to me because i don't need most of the stuff in it but there's people who need that so its not bloated for them . u choose but its probably less bloated
I wrote a simple wallpaper function: fnd_wall_fnc(){ cd ~/Pictures/wallpapers-master/ f_bg=`find -maxdepth 5 -type f | shuf -n 1` feh --bg-scale $f_bg } It might be crude, but it works.
I'm more or less new to linux in general, but I'm happy with using feh like this: while true; do for f in ~/Pictures/Backgrounds/*; do feh --bg-fill --no-fehbg "$f" sleep 1800 done done I just launch that from my bspwmrc. I have never heard of the shuf command, I might give that a try next. Edit: That shuf thing works a treat: while true; do feh --bg-fill --no-fehbg "$(find "$HOME/Pictures/Backgrounds/" -name "*.jpg" -o -name "*.jpeg" -o -name "*.png" -type f | shuf -n 1)" sleep 1800 done
I find using sxiv's marking capability useful in scripts: You can mark a bunch of files, and with the -o command you can send the filenames to stdout. These names can be piped into a script to remove/move the image files. I'm trying to figure other useful things you can do with the marking capability.
Man please .... make more videos like that. you and Distrotube are very good on that....and make a colab with him... Good teachers should work together
My problem with pywal is that sometimes it selects colors that are too similar. Sometimes there is no way around it because the image is pretty monochromatic to begin with but there are pictures that seem pretty colorful yet suffer from the same problem.
I have a shortcut mapped to running `sxiv -art $HOME/Pictures` to browse all my pictures in sxiv. Important to note here are the r and t flags: -r automatically searches the given directories recursively for images and -t opens sxiv directly in thumbnail mode. From there I can ofc run all my keyhandlers like for setting my wallpaper with setroot or rotating them etc
There's no "just" using feh. feh is an image-viewer that also can add backgrounds. xwallpaper has wallpaper settings as its main function. You can see the other features it adds. Since I use sxiv (which is quite a bit better than feh), there's no reason for me to have another image viewer installed. I suppose if I were still using feh, I might just keep using it for wallpapers though.
you're 2 days late with this video, I already installed feh like a pleb the way I start it on login is using a user level systemd service instead of bloating my rc files.
@@LukeSmithxyz A way bigger oof is that for 2 weeks I thought nor sddm nor ly can start my bspwm session and it freezes on login. Turns out bspwm does nothing with the video buffer on start (why would it) and as soon as I installed picom this grey shit greeted me. Looking back I don't even know what did I expect.
@jujé >xwallpaper: 20kB >feh: 172 kB Seems virgin to me, that's mostly because feh also works as an image viewer. Sxiv on the other hand weights 40kB and works as an image viewer. If you stay because of the randomize option just shuffle them with "shuf" and if necesary use grep
And now is the challenge: How to get currently set x11 wallpaper? I would like to set up different wallpaper per "output" with two xwallpaper commands, but for this I would have to find out which wallpaper is set on the other screen? The xwallpaper will only set all screens at once, so I need previous file location or a way to get the currently set x11 wallpaper. Any ideas?
You're thinking of xsetroot. setroot can do many more things like also flip wallpapers, make them greyscale, choose a focus point on the image when zooming etc. And all that while still being a smaller install than xwallpaper
Noob here. Just a question: On setbg, when you pass a directory as an argument, the script retrieves a random image of such directory and moves (I think it does at least?) it to ~/.config/wall.png. What if the selected image is a .jpg/.jpeg? It would rename it as wall.png. Shouldn't this cause a problem because it isn't really being converted to .png format, but only renamed with a .png extension?
Good question. I think `xwallpaper` doesn't care about the extension and checks which image format it is by using `file` or a similar utility that recognizes file type by reading the contents. The only problem I can see is the inconsistency you speak of, which may fool yourself into thinking that's a png image, but it's not. It's better to rename to somethink like "wall.image" or simply "wall".
Im really late to your comment, but the file extension doesn't matter to well written programs, since they will check the magic number of the file (first few bytes) to determine the file format. I have my wallpaper set as ~/.config/wallpaper, i could even name it wallpaper.exe and it would still work.
Hi man, thx for the amzing content. One thing though, how did you look for the setbg script there? What was the shortcut to look for it like that? Sorry I know it's complete off-topic. But anyways thanks again.
Hey Luke, out of curiosity, do you use a password manager, and if so, which one? I've been using keepass for quite some time now, though that's a GUI application.
> though that's a GUI application Not really, KeePass is just a format for the password database. There's a CLI interface for it in the ArchWiki, see wiki.archlinux.org/index.php/KeePass#Installation
How would you do this with multiple monitors, actually the issue I have is that one of them is vertical but --screen maps 1 as a single screen. I assume its up to change that in xorg conf?
Why is your wallpaper called "wall.png"? Your wallpapers seem to be mostly JPEG images. Is the file extension necessary for xwallpaper? If not, why use one at all?
What do you think about musl or other non-GNU linkers that reduce bloat in terms of compiling programs. I know a static "exit status" program takes up like 16k with GNU libs and
Well, it's quite sad actually. To me it seems that nearly all Linux videos are like that ... Distro review: 10 minutes talk about default theme. 2 minutes ... oh, by the way it's based on Ubuntu LTS. Working with Linux like a pro: how to set (tiling-wm-of-the-year) tiling window manager (1 hour video editing config file in view as follow up to 20 minutes video how to set color scheme in alacritty terminals as follow up 1 hour video about terminals, 20 minutes video why i switched from previous terminal and 1 hour video about working with (n)vim, 20 minutes about setting power line font, ... No Linux videos: how to use Linux for some actual productive work or how to make money using Linux except having 100K youtube viewers.
Hey Luke, I have a idea for a upcoming techie tutorial to do in Linux: I am still learning Linux stuff but I wanna generate Text to Speech audio from text files, playing those (dynamically?) at a extremely low volume and overlay audio/visuals over it, keeping controls over both of them. Do you have resources on how to do that? Thanks from a user of the subliminal community.
Well there's `espeak` to generate text to speech and I've just checked: `mpv` has a --speed CLI option to speed up or slowdown music/video that it plays.
I've been over here using feh for this for so long and now I realize its just bloat! man xorg does so much more than I really thought it could. Time to start reading man pages.
I just use feh as my image viewer and it have a option to set the wallpaper. feh --bg-max /path/to/file it write a executable : ~/.fehbg you can run everytime your WM start. Why not set the entire feh command at the startup command ? Well ppl are lazy
xinitrc runs if you run the commands xinit or startx manually. xprofile runs if you use a desktop manager. I have xprofile sourced from my xinit so I can be compatible with both alternatives.
Oh, just found Luke's response to the same question a bit below: > xinitrc runs if you run the commands xinit or startx manually. > > xprofile runs if you use a desktop manager. I have xprofile sourced from my xinit so I can be compatible with both alternatives. The comment: th-cam.com/video/IUvM2Hc6jtk/w-d-xo.html&lc=UgwXvsTJXdlRfl-_iZ94AaABAg.96iA21MwbAA96iCWjX2RgG
Man I really want to ask you this question how to have memory like yours , my main problem when first time I tested Linux 11 Years ago was me not remember all commands in fact I have very short memory
he reads the decumentation, makes a script for what he wants, puts it in auto start, makes a little decumentation or a comment on top of it to know what it does and never sees it again probably XD
@@superjmm12345 I do the same think but the number of commands / shortcuts I need to remember drive me crazy , I'm person with short memory issue I sawyer I I didn't had the issue I'll be already system administrator on very top company on the world I which if I could recover from this .
@@superjmm12345 I do the same think but the number of commands / shortcuts I need to remember drive me crazy , I'm person with short memory issue I sawyer I I didn't had the issue I'll be already system administrator on very top company on the world I which if I could recover from this .
In JWM, before I realized wallpapers were bloat, I was just using nitrogen (setting the wallpaper through nitrogen in the terminal, then running nitrogen --restore when I was starting jwm). I wasn't into anything fancy, like switching wallpapers. A quick look at the dependencies and size, nitrogen depends on {gtkmm, hicolor-icon-theme and librsvg} and has ~460 KiB. If you have sxiv, you already have hicolor-icon-theme and if you have imagemagick, you probably already have the optional libsrsvg. I think nitrogen may have a GUI for browsing wallpapers, though I never used it. Xwallpaper on the other hand depends on {pixman, libpng, libxpm, xcb-util, xcb-util-image, libjpeg-turbo, libseccomp and libseccomp.so=2-64} and has ~44 KiB in size. There must be some other programs that have at least a few of those packages as dependencies. The reason I don't really like wallpapers is because the only time I see them is basically only when I startx and maybe when switching workspaces. I keep my applications either maximized, or occupying the whole screen, no pixel lost (except the small title bar and window borders). I guess I could put a cronjob in place to change the wallpaper every now and again with a random one inside a folder, but I probably wouldn't notice, because I can't see my workspace. And I don't like transparency effects. Sure, they look cool in UNIX PR on, but when you want to get things done, they are distracting, especially if they change.
You know, people are dying, the economy is collapsing and the world is falling apart, but at least I can watch Luke's videos everyday and customize my ThinkPad just as I want it, so everthing is going to be alright.
I envision a ruinous landscape and someone in a half collapsed building, clutching their ThinkPad, just pressing shortcuts to change their background to different pre-apocalypse scenes of beaches, swimming pools overlooking cities and mountains.
If you're customizing a Thinkpad, what happens outside is probably of no concern
I have remote learning instead of free time :p
Big chillen
yes.
Why are they called wallpapers? It's a desktop; They should be called tablecloths 😏
because tablecloths are put on the surface of the desk but the monitor is vertical to the desk. what else is put vertically? wallpapers XD
No you're both wrong as he is using a Window Manager, they are curtains
They'll always be "desktop backgrounds" to me.
guys.. to have video wallpaper just change it 60 times every second ..no performance dip because arch btw😎
Just run pywal with it so you have a "video" color scheme as well
@@Noukkis cool, now i just need a supercomputer for it to actually be able to run at 60fps 😂
"People give arch users a hard time, but really it's wayland users who won't shutup about the stupid software they use"
-- man with youtube channel dedicated mostly to talking the software he uses
btw I use sway
Luke, you should really have a terminal shortcut for increasing the font on a predefined larger size, since we see you doing it every time?
what I learned:
>feh is bloat
>no matter how weird you may be, you're a "normal person" if you don't use wayland
this comment is written from using wayland
It generates a color scheme based on wallpaper colors! Woow!!! I love it! Your video deserve my like.
It took a pandemic to get Luke to go back to making videos. Whatever it takes!
Trinity College Dublin Library! Greetings from Dublin :-)
wayland users gtfo
I don't actually know the differences I'm just joining the bandwagon
why would anyone use wayland
I’d it’s probably less blot. يحيى عبسي - YahiaPsy
@@ichaa3tech
I like all the smoothness without tearing and stuff, still, Wayland is not ready (for me)
@@sr.junior4670 nothing is bloated it might appear bloated to me because i don't need most of the stuff in it but there's people who need that so its not bloated for them . u choose but its probably less bloated
@@HungNguyen-lz5xb might try it as well after 10 years
I wrote a simple wallpaper function:
fnd_wall_fnc(){
cd ~/Pictures/wallpapers-master/
f_bg=`find -maxdepth 5 -type f | shuf -n 1`
feh --bg-scale $f_bg
}
It might be crude, but it works.
Why not just use feh -rz --bg-fill ~/Pictures/wallpapers-master/*
I'm more or less new to linux in general, but I'm happy with using feh like this:
while true; do
for f in ~/Pictures/Backgrounds/*; do
feh --bg-fill --no-fehbg "$f"
sleep 1800
done
done
I just launch that from my bspwmrc.
I have never heard of the shuf command, I might give that a try next.
Edit: That shuf thing works a treat:
while true; do
feh --bg-fill --no-fehbg "$(find "$HOME/Pictures/Backgrounds/" -name "*.jpg" -o -name "*.jpeg" -o -name "*.png" -type f | shuf -n 1)"
sleep 1800
done
feh --bg-fill --no-fehbg --randomize --recursive ~/Pictures/Backgrounds/
@@stnsls ._.
Don't do this
I'm a wayland user and i never felt so much shame after only 45sc of Luke Smith. :'(
Xorg is bloated btw.
Wow, I was using feh to handle my wallpapers before now.
Using sxiv and xwallpaper is more aligned with the UNIX philosophy.
I find using sxiv's marking capability useful in scripts:
You can mark a bunch of files, and with the -o command you can send the filenames to stdout.
These names can be piped into a script to remove/move the image files.
I'm trying to figure other useful things you can do with the marking capability.
BTW, pywal actually sets the background you last selected if you run `wal -R` and it doesn't have to be in one specific location
You can combine ueberzug with fzf to make an interactive prompt with previews inside the terminal
Man please .... make more videos like that. you and Distrotube are very good on that....and make a colab with him... Good teachers should work together
My problem with pywal is that sometimes it selects colors that are too similar. Sometimes there is no way around it because the image is pretty monochromatic to begin with but there are pictures that seem pretty colorful yet suffer from the same problem.
Hey Lewk, could you do a video on configuring a WM with a programming language and not just stinky shell script?
I think it'd be interesting.
Thx
I have a shortcut mapped to running `sxiv -art $HOME/Pictures` to browse all my pictures in sxiv.
Important to note here are the r and t flags: -r automatically searches the given directories recursively for images and -t opens sxiv directly in thumbnail mode.
From there I can ofc run all my keyhandlers like for setting my wallpaper with setroot or rotating them etc
"for all you normal people"
*cries in Wayland*
I use sway/wayland btw.
Thank's Luke for out of the barn ideas.
Thanks for the video and good morning.
So what if any benefits are there to xwallpaper over just using feh or wise-versa?
There's no "just" using feh. feh is an image-viewer that also can add backgrounds. xwallpaper has wallpaper settings as its main function. You can see the other features it adds. Since I use sxiv (which is quite a bit better than feh), there's no reason for me to have another image viewer installed. I suppose if I were still using feh, I might just keep using it for wallpapers though.
Was just wondering this myself actually
If you can make a 12 minute tutorial for setting a wallpaper, you know you're under GNU/Linux
I use: feh --bg-fill wallpaper.jpg
There are other options besides "-fill". You can use the -z random switch too.
Feh is bloated
At 8:15
That is the tightest shit I have ever seen.
Thanks for the information luke
I use Wayland BTW
Computers are bloat. Just cut it out and go mechanical Babbage computer. You'll never go back
You can just calculate with pebbles. Ancient Egyptians have done it and their society lasted 3500 years.
Lol 😂😂😂🤣🤣🤣
you're 2 days late with this video, I already installed feh like a pleb
the way I start it on login is using a user level systemd service instead of bloating my rc files.
big double ooff
@@LukeSmithxyz A way bigger oof is that for 2 weeks I thought nor sddm nor ly can start my bspwm session and it freezes on login. Turns out bspwm does nothing with the video buffer on start (why would it) and as soon as I installed picom this grey shit greeted me.
Looking back I don't even know what did I expect.
The virgin nitrogen vs the chad xwallpaper
i use feh, is it virgin dude?? :'(
@@hicfool It's Chad-like, so it's fine to use it as well.
@@SimGunther ty bro :)
@jujé
>xwallpaper: 20kB
>feh: 172 kB
Seems virgin to me, that's mostly because feh also works as an image viewer. Sxiv on the other hand weights 40kB and works as an image viewer. If you stay because of the randomize option just shuffle them with "shuf" and if necesary use grep
@@omerresnikoff3565 I don't think my pc is going to explode just because of some Kb's bro we're in 2020
Luke Smith what distro and GUI do you use.
@The Great Drake Thank you
Nitrogen is the best wallpaper setter change my mind
And now is the challenge: How to get currently set x11 wallpaper?
I would like to set up different wallpaper per "output" with two xwallpaper commands, but for this I would have to find out which wallpaper is set on the other screen? The xwallpaper will only set all screens at once, so I need previous file location or a way to get the currently set x11 wallpaper. Any ideas?
I use feh to set wallpaper, works fine.
How do you set up your terminal windows to be separated so nicely? I like that you can see through the padding inbetween individual windows!
I use setroot. It's even smaller than xwallpaper and actually does way more
But can't it only set solid colors?
You're thinking of xsetroot. setroot can do many more things like also flip wallpapers, make them greyscale, choose a focus point on the image when zooming etc. And all that while still being a smaller install than xwallpaper
Noob here. Just a question: On setbg, when you pass a directory as an argument, the script retrieves a random image of such directory and moves (I think it does at least?) it to ~/.config/wall.png. What if the selected image is a .jpg/.jpeg? It would rename it as wall.png. Shouldn't this cause a problem because it isn't really being converted to .png format, but only renamed with a .png extension?
Good question. I think `xwallpaper` doesn't care about the extension and checks which image format it is by using `file` or a similar utility that recognizes file type by reading the contents. The only problem I can see is the inconsistency you speak of, which may fool yourself into thinking that's a png image, but it's not. It's better to rename to somethink like "wall.image" or simply "wall".
Im really late to your comment, but the file extension doesn't matter to well written programs, since they will check the magic number of the file (first few bytes) to determine the file format. I have my wallpaper set as ~/.config/wallpaper, i could even name it wallpaper.exe and it would still work.
If you use mv for setting the random wallpaper, won't that eventually remove everything in the directory?
Exactly my question
the shuffling is taking effect, you don't notice the missings as easily.
I was also wondering why copy the whole image with cp, when you can create a symbolic link.
I'm irrationally allergic to bloat so I use Wayland. Sway's actually pretty awesome, and it's gotten me into doing more programming in C.
Hi man, thx for the amzing content. One thing though, how did you look for the setbg script there? What was the shortcut to look for it like that? Sorry I know it's complete off-topic. But anyways thanks again.
4:53 - what is that `se' command?
Can't find it either. I checked bin and aliasrc but didn't see it anywhere
@@yiannisspanos694 I found out what it was. It's basic `vim $(fzf)`, where fzf is a Go program called fuzzy finder.
Hey Luke, out of curiosity, do you use a password manager, and if so, which one?
I've been using keepass for quite some time now, though that's a GUI application.
> though that's a GUI application
Not really, KeePass is just a format for the password database. There's a CLI interface for it in the ArchWiki, see wiki.archlinux.org/index.php/KeePass#Installation
How would you do this with multiple monitors, actually the issue I have is that one of them is vertical but --screen maps 1 as a single screen. I assume its up to change that in xorg conf?
Luke, why do you have a Halo wallpaper at 10:59 if you don't condone video games?
Hey I subbed on your openbox tutorial video. Just curious, but why not just use nitrogen like you did in the tutorial? Seems a little easier imo
Why is your wallpaper called "wall.png"? Your wallpapers seem to be mostly JPEG images.
Is the file extension necessary for xwallpaper? If not, why use one at all?
Extensions are a social construct
I don't think xwallpaper reads the extension, but with it, it becomes more obvious for everyone using LARBS that it is the current wallpaper
That's my guess at least
Turbo virgin Xorg vs chad Wayland
Hey, Luke! I dont have a .profile. should I just create it? Also how do you make the desktop change randomly within a folder every minute?
Luke will you do a guide on ricing?
I'm trying to figure out whether you use i3 or dwm?
it's dwm
I’m a wallpaper hopper. Just add variety
xwallpaper --tile, because full-sized wallpapers are bloat.
I demand dynamic wallpapers
Oh, fuck yeah. Stretch that wallpaper.
What is this magic se command and what does it do? It seems pretty useful.
What do you think about musl or other non-GNU linkers that reduce bloat in terms of compiling programs. I know a static "exit status" program takes up like 16k with GNU libs and
Install feh. Install Fluxbox. Add fbsetbg with desired switches to your Fluxbox init script. Never think about it again.
I feel personally touched by this video because the thumbnail wallpaper is literally one I've been using for 10 years!
Hey Luke, could you give me the name of the wallpaper at 7:37? I think it would be perfectily suited for rice I have in mind :)
wall.png
Well, it's quite sad actually. To me it seems that nearly all Linux videos are like that ...
Distro review: 10 minutes talk about default theme. 2 minutes ... oh, by the way it's based on Ubuntu LTS.
Working with Linux like a pro: how to set (tiling-wm-of-the-year) tiling window manager (1 hour video editing config file in view as follow up to 20 minutes video how to set color scheme in alacritty terminals as follow up 1 hour video about terminals, 20 minutes video why i switched from previous terminal and 1 hour video about working with (n)vim, 20 minutes about setting power line font, ...
No Linux videos: how to use Linux for some actual productive work or how to make money using Linux except having 100K youtube viewers.
I wish there were something like DWM for Wayland. Sway is not the same thing.
But where is a good place to get the wallpapers?
just curious why `xwallpaper` and not `feh` or anything else...
At @1:15 , is there an alternative to restarting an application, for fixing its layout?
why isn't it working on my xfce
is xfce's built in wallpaper setter messing up something? how to i stop that
Wouldn't it make more sense to store the wallpaper in .local/share?
Why do you use your mouse to swap windows?
How do you query Xresources variables efficiently?
how can you do this to set different wallpapers for different monitors?
Hey Luke, I have a idea for a upcoming techie tutorial to do in Linux:
I am still learning Linux stuff but I wanna generate Text to Speech audio from text files, playing those (dynamically?) at a extremely low volume and overlay audio/visuals over it, keeping controls over both of them.
Do you have resources on how to do that? Thanks from a user of the subliminal community.
Well there's `espeak` to generate text to speech and I've just checked: `mpv` has a --speed CLI option to speed up or slowdown music/video that it plays.
You could launch `espeak` on the background with & (see sh(1)) and then play mpv for the visuals.
Dhiego Vinicius nice tips FOSS comrade. Good to know
Colored man pages? How?
Use most as pager.
export pager=most
You can also use less with colors, see wiki.archlinux.org/index.php/Color_output_in_console#man
Hey Luke ,i want c your new vid about the installation for Arch linux in laptop.
My setup is similar but uses the -o parameter of sxiv to get a picture that was marked by pressing M.
LATEST VIDEO ON HOW TO INSTALL KOMOREBI! 2020 CHECK IT OUT NOW th-cam.com/video/I_2ccVxa8Jo/w-d-xo.html
so, no more reason to user feh then, huh?
Yes, my plan to turn you all into Ricers is almost complete. Muahahahaha.
What's the program he is using when he types "se" and then searches for files?
Most likely an alias to a script (or even it's full name) that uses fuzzy finder
awesomeness
1:50 Bop it
I've been over here using feh for this for so long and now I realize its just bloat! man xorg does so much more than I really thought it could. Time to start reading man pages.
Me a GUI weeb.
*Right click* "Set as wallpaper."
How is called that "file manager" he pops out of his terminal sometimes?
I'm not sure but you can use "ranger" which is a terminal file manager.
Just use feh 🙂
I just use feh as my image viewer and it have a option to set the wallpaper. feh --bg-max /path/to/file it write a executable : ~/.fehbg you can run everytime your WM start. Why not set the entire feh command at the startup command ? Well ppl are lazy
so when you run xstart or whatever, it runs both .xprofile and .xinitrc
What are the differences between these two then?
xinitrc runs if you run the commands xinit or startx manually.
xprofile runs if you use a desktop manager. I have xprofile sourced from my xinit so I can be compatible with both alternatives.
10:53 Halo Reach wallpaper?
What should/shouldnt go in the xinitrc and xprofile? I am not sure what to put in which file.
I also want to know.
Oh, just found Luke's response to the same question a bit below:
> xinitrc runs if you run the commands xinit or startx manually.
>
> xprofile runs if you use a desktop manager. I have xprofile sourced from my xinit so I can be compatible with both alternatives.
The comment: th-cam.com/video/IUvM2Hc6jtk/w-d-xo.html&lc=UgwXvsTJXdlRfl-_iZ94AaABAg.96iA21MwbAA96iCWjX2RgG
@@dhiegov Thank you! Really appreciate it!!
@@SiddharthDushantha You're welcome :)
Hey Luke, can you post those scripts someplace.
Here they are github.com/LukeSmithxyz/voidrice
wayland is the future but the future is not now
desktop environments contain window managers
feh gang rise up.
The people demand a link to the alien world image at 7:32!
Cool Script 👍👍
Man I really want to ask you this question how to have memory like yours , my main problem when first time I tested Linux 11 Years ago was me not remember all commands in fact I have very short memory
he reads the decumentation, makes a script for what he wants, puts it in auto start, makes a little decumentation or a comment on top of it to know what it does and never sees it again probably XD
@@superjmm12345 I do the same think but the number of commands / shortcuts I need to remember drive me crazy , I'm person with short memory issue I sawyer I I didn't had the issue I'll be already system administrator on very top company on the world I which if I could recover from this .
@@superjmm12345 I do the same think but the number of commands / shortcuts I need to remember drive me crazy , I'm person with short memory issue I sawyer I I didn't had the issue I'll be already system administrator on very top company on the world I which if I could recover from this .
*cries in swaywm*
In JWM, before I realized wallpapers were bloat, I was just using nitrogen (setting the wallpaper through nitrogen in the terminal, then running nitrogen --restore when I was starting jwm). I wasn't into anything fancy, like switching wallpapers. A quick look at the dependencies and size, nitrogen depends on {gtkmm, hicolor-icon-theme and librsvg} and has ~460 KiB. If you have sxiv, you already have hicolor-icon-theme and if you have imagemagick, you probably already have the optional libsrsvg. I think nitrogen may have a GUI for browsing wallpapers, though I never used it. Xwallpaper on the other hand depends on {pixman, libpng, libxpm, xcb-util, xcb-util-image, libjpeg-turbo, libseccomp and libseccomp.so=2-64} and has ~44 KiB in size. There must be some other programs that have at least a few of those packages as dependencies.
The reason I don't really like wallpapers is because the only time I see them is basically only when I startx and maybe when switching workspaces. I keep my applications either maximized, or occupying the whole screen, no pixel lost (except the small title bar and window borders). I guess I could put a cronjob in place to change the wallpaper every now and again with a random one inside a folder, but I probably wouldn't notice, because I can't see my workspace. And I don't like transparency effects. Sure, they look cool in UNIX PR on, but when you want to get things done, they are distracting, especially if they change.
on 4:53 how did he do the search OMG