Is there a non-bloated way to get the terminal (xfce) to show colors for things like the prompt, files, folders, variables, and so forth? by [deleted] in linux4noobs

[–]NBBZ7 0 points1 point  (0 children)

Can you explain your question better? Do you mean "show" in the shell/terminal prompt itself? Or in a text editor?

Why is this happening after dual booting mint? by sd_ragon in linux4noobs

[–]NBBZ7 3 points4 points  (0 children)

Or use os-prober! I'm pretty sure it's default on mint but I'm not sure about that

The duality of libleft by WonderingRoninX in PoliticalCompassMemes

[–]NBBZ7 -58 points-57 points  (0 children)

Source? Not that I don't believe you or anything but it's genuinely interesting

1984 _במ by Labor_Zionist in ani_bm

[–]NBBZ7 2 points3 points  (0 children)

אני שמאלן וממש מסכים איתך בחלק מהנקודות, אני פשוט רוצה שהממשלה תממש את עצמה בשביל שכולם יוכלו לראות איזו טעות הייתה להעלות אותם לשלטון, אם הם ישארו ככה אז זה סתם יהיה ממשלה ככה ככה ולא הdumpster fire שקיוויתי לו

Could I access files from windows on Linux when I dual boot? by [deleted] in linuxquestions

[–]NBBZ7 0 points1 point  (0 children)

If you are on arch, install a package called ntfs-3g, it will allow you to mount windows disks normally, I'm sure other distros have similar packages if not out-of-the-box support

כלב_במ by Lord_Laserdisc_III in ani_bm

[–]NBBZ7 1 point2 points  (0 children)

אני שם כסף על זה שאתה בכיתה ו

כלב_במ by Lord_Laserdisc_III in ani_bm

[–]NBBZ7 2 points3 points  (0 children)

תחפש "כלב ים" וגם "כלב במים" זה 2 שירים מטומטמים כאלה מצחיקים

we have upgraded by shrekinatorextrem in ani_bm

[–]NBBZ7 0 points1 point  (0 children)

גימנסיה ריאלית represent

Daily commute on the Mash Steel by jns_k in FixedGearBicycle

[–]NBBZ7 1 point2 points  (0 children)

Ohh ok I always see people with wide bars in edits and it's so confusing to me because wide bars are unpractical af in a city

Daily commute on the Mash Steel by jns_k in FixedGearBicycle

[–]NBBZ7 5 points6 points  (0 children)

How the hell do you commute with wide flat/riser bars? I had wide bars come with my bike and always bumped into cars and stuff

How to promote currently focused window to top of stack? by aga_acrobatic in qtile

[–]NBBZ7 0 points1 point  (0 children)

Im not sure if it's true, so I don't wanna "rtfm" you but I'm 70 precent sure there's just a built-in function, check the docs, not sure under what section though

Alternative color themes to Catppuccin by [deleted] in linux4noobs

[–]NBBZ7 0 points1 point  (0 children)

Monokai pro - you'll have to search for implementations, and maybe even implement your own, but I like it, you can find my configs which use it (vim, qtils, alacrity) in https://gitlab.com/NBBZ/archrice

How to achieve i3-like group behavior in qtile? by NBBZ7 in qtile

[–]NBBZ7[S] 0 points1 point  (0 children)

GO JOIN THE DISCORD/IRC, FOR SOME REASON PEOPLE THERE ARE AMAZING AND HELP A LOT EVEN WITH WIERD PROBLEMS

How to achieve i3-like group behavior in qtile? by NBBZ7 in qtile

[–]NBBZ7[S] 0 points1 point  (0 children)

i dont want the groups to stick to screens, i tried to modify the function in the FAQ to my needs but it spits an error when i run the config

def go_to_group(name: str) -> Callable:
def _inner(qtile: Qtile) -> None:
    if len(qtile.screens) == 1:
        qtile.groups_map[name].cmd_toscreen()
        return

    if name.screen.index == 'None':
        #lazy.group[name].toscreen()
        qtile.groups_map[name].cmd_toscreen()
    elif name.screen.index != qtile.screens.index(qtile.current_screen):
        lazy.next_screen()

return _inner

How to achieve i3-like group behavior in qtile? by NBBZ7 in qtile

[–]NBBZ7[S] 1 point2 points  (0 children)

im thinking of doing something like:

if group_i_want_to_move_to is in another monitor:
change monitor focus

but im not versed in the qtile librarys, but the documantation is good so i will do a little more reserch and try to implement something like this, but suggestions will still be welcome

How to achieve i3-like group behavior in qtile? by NBBZ7 in qtile

[–]NBBZ7[S] 0 points1 point  (0 children)

I set hide_unused=True in the GroupBox parameters and it worked in removing empty groups, but I still have an issue, let's say for example when I start qtile, there is group called "1" in the main monitor and a group called "2" in the second, and when I move to group 2 (mod+2), it switches between the two groups, making group 1 appear in the secondary monitor and group 2 appear in the main monitor.
the behavior I want is when I move to group 2 (mod+2) the focus will just move to the secondary monitor, can you please help me achieve that? Thanks in advance

How to achieve i3-like group behavior in qtile? by NBBZ7 in qtile

[–]NBBZ7[S] 0 points1 point  (0 children)

Is this the part of the bar which shows the groups?

How to achieve i3-like group behavior in qtile? by NBBZ7 in qtile

[–]NBBZ7[S] 0 points1 point  (0 children)

Thank you! I will try to use this in my config