Комментарии:
Dmenu: "do you have time to talk about our lord and savior, DT?"
ОтветитьSo I threw a small shell script together to edit my configs. Its relatively easier to understand. All you have to do is dump your paths in one file line by line. (Replace nvim/nnn and the path with whatever you want).
Thought it would be helpful.
PS. DT. Love your channel so much! I learnt a lot from it. Thank you for your content :)
#!/usr/bin/bash
choice=$(cat "/home/eragon/Documents/scripts/listofscripts.txt" |dmenu -l 10)
echo $choice
if [ -d $choice ]
then
echo "Directory"
nnn $choice
else
echo "File"
nvim $choice
fi
Cool video. Lately I've been thinking about writing a dmenu scripts that launches Steam games without the need to open the Steam library window. Maybe with this tutorial I'll try it soon. I wish there were a way for the script to update itself, but I don't think there's a Steam file I can easily parse to automatically find games installed via Steam.
On another note, do you recommend a good dmenu script that can parse .desktop files but unlike i3-dmenu-desktop works with any window manager like, oh I don't know dwm, the actual tiling window manager made by the same suckless guys as dmenu itself? (what were the i3 guys thinking hard coding i3-dmenu-desktop to integrate with i3)
Is that you in your wallpaper?
ОтветитьHello DT you are the best❤️
ОтветитьYou should check out how sxmo (simple X11 mobile) uses dmenu on the PinePhone. I originally typed a comment with some examples, but I clicked something that took me away from this video which then erased my two paragraphs of text, so look at their scripts yourself.
Their dmenu scripts that are run based on the X window title are cool and remind me of Microsoft's UWP menuing system. Although I believe for that system to work, developers had to code their application to use their proprietary menu system API, but these dmenu scripts are implemented in an extensible unix fashion: all selecting the options presented by dmenu does is send key combinations to your applications, so I could rewrite the script to list whatever entries with whatever keystrokes I want.
If anyone wants to use these with rofi, it's a very simple find and replace: Find "dmenu", Replace with "rofi -dmenu".
ОтветитьI think learning a POSIX shell is way better then Bash. Why? Simple. That script can be runned on different OS's like BSD, Solaris, AIX, HP-UX, etc., not just on GNU/Linux where bash is the default shell. Beside Bourne Shell code is more elegant the bash. I have scripts which run on FreeBSD, OpenBSD, Solaris, HP-UX and GNU/Linux without the need of modification. They just run.
#!/bin/sh. This is the way! :)
Hey DT, can you make a video on dmenu-flexipatch, dwm-flexipatch, st-flexipatch, etc?
ОтветитьWhy do you exit 1 on quit? Is quitting an error?
ОтветитьThat is some great stuff right there!
ОтветитьWhy "exit 1"? That should be a zero imo.
ОтветитьDT can I make this on Rofi too rigth?? 🧐
ОтветитьDT, this is one of the most useful videos you have done. Videos like this, describing simple tools that have far-reaching uses is something we need more of. Please.
ОтветитьI watched your wallpaper vid already, this is the first time I've experienced visceral wallpaper envy. /sexy
ОтветитьThat's incredible. I'm going to steal the code. I'm getting into Linux for the past year or so and I've been learning much in this channel. Nice as well been joining this Linux community as an escape from the madness all over the mainstream web platforms.
ОтветитьNice seeing this type of videos again
ОтветитьI wish dmenu had an option to specify a separate output list, so for DT's dmconf script he could just display
"alacritty awesome bash..."
but selecting one of them would return the file path.
Here is my scrappy solution:
grep "$(echo -e "[1] first\n[2] second\n[3] third" | dmenu | cut -d' ' -f1)" <<< "[1] goat
[2] cheese
[3] ham" | cut d' ' -f2
What is it that you put in your Xmonad config to launch these scripts? I've tried creating a few of these and they always launch kind of buggy
ОтветитьUsing awk to select a field is overkill!
I once created an similar script that uses associative arrays in bash and avoids subshells (pipes):
configs=(zprofile "$XDG_CONFIG_HOME/zsh/.zprofile" Xresources "$XDG_CONFIG_HOME/X11/Xresources" ...)
$EDITOR ${configs[$(dmenu -l 20 -p "Edit config: " <<<$(printf "%s\n" ${!configs[@]}))]}
Hey DT, do you use dmenu as your launcher? If so, do you use the path version or do you have a script that's working with .desktop files?
Ответить@DistroTube Do you use any lockscreen?I have been through your dotfiles but didn't anything that mentioned slock, xscreensaver etc? Do you mind making a video on it?
ОтветитьI made a simple script to search songs from my music folder by filename pattern, select with dmenu, and queue it to my playlist. It's the best thing since sliced bread.
ОтветитьI figured out what DT stands for ... Donald trump
DT real name is donald trump
No witty message at the end? I feel like waiting for a post-credits scene on a movie only to be yelled at to get out of the theater...
Ответитьyou save my time, already using your scripts, and edit it a little for my machine
ОтветитьQutebrowser stores bookmarks in a text file, its easy to pipe in dmenu.
ОтветитьI recently made my first rofi script, which replaces "Open with NVIM" in the right click menu with a script that finds all your open NVIM sessions and opens the file in the one you pick with nvim-remote. I usually navigate files in the terminal of course, but this can be useful when downloading files from the browser. I live in tmux and usually have a lot of sessions open. If I'm working on something I don't want it to open a new terminal, the file is probably related to something I'm already working on.
ОтветитьI automate tasks with shell scripting nice handy feature 😉
ОтветитьLove this channel. Simple. Straightforward.
ОтветитьVery useful, thank you Derek. Keep it coming!
ОтветитьWell done, will try it out later! Thank you very much for this information <3
Ответитьthe best thing is to use fzf with dmenu
ОтветитьPlayed around with dmenu yesterday and there are so many possibilities; exaclty what I'd expect from suckless
ОтветитьShell scripting with Dmenu? are you friend of that guy named Luke? 🤣
ОтветитьWhat's the point of the first script? You're using emacs for editing all config files. Just use named bookmarks that is available in vanilla emacs (use a namespace format like config/bookmarkname to easily find config files). With Helm and other fancy stuff it's trivial to setup a better menu.
ОтветитьWhat would I use to have vim open in the terminal for editing config files? DMEDITOR="What?"
Ответитьive been meaning to make up some rofi/dmenu scripts for a while now. things like selecting multiple files and then choosing in the menu which scripts to send the file list to. like renaming or removing certain characters, resizing images, converting videos etc, there really is tons of things you can do. and the beauty of it all is that you only have to write each script one, then give it a descriptive name. beats having to remember all of the commands off the top of your head and having to type them out
Ответитьgood stuff. going to start writing scripts for my dmenu. thank you for showcasing this
Ответитьd search is actually availalbe in chromium browsers. you can edit your search engines and can include shebangs or just triggers when to activate one
Ответитьmay I suggest using exit 0 instead of exit 1 when it is not an error?
ОтветитьThanks DT for this
I need to move some of my configs to dmenu, right now I have 7~8 aliases for config edits like
vi_zsh // for zsh config
vi_vi // vim config
vi_(etc)
Awesome ! Thanks for this video. I will play around with dmenu :)
Ответитьwhile using sxhkd the script open, but when I press enter on dmenu, it doesn't open the config file
ОтветитьThis is very sick. I have looked for this kind of thing many times and this version seems to be very simple + useful.
Very nice examples as well - this is in the top 5 most useful ideas of computer use I think & definitely want others to learn this
I'm actually having a lot of fun just trying to shell script my way into getting the perfect Desktop environment out of my Window Manager.
Just earlier today, I made a script that reads your steam game folder, then generates a Rofi menu to choose between these games.
I came up with a script that sets some certain color configs to constantly be cycling in a rainbow style. I'm not even going to use that, but it was fun to make.
I've got a ton of these ideas just to mess around with, and this video gave me a few more.
It really is a good way to learn shell scripting.
Feel so sorry for the first script man, I mean I could do that in a loooott less, just using la on .config or anything else, greppping things I want , output that to a file, and use sed and tr and cut maybe to just format it. (I know it sounds complicated but in essence this will take like 2 or 3 lines max
Edit: the second script is similar to the first but makes much more sense in the second, the first would be much easier
If I have my dm-record (copy of yours) in my ~/.dotfiles/bin how can I call it from dmenu?
ОтветитьI know this is an older vid but I just discovered dmenu and this has helped me immensely. Thanks for sharing.
Ответитьdmenu kinda sucks, very slow
Ответить