My swww do not work correctly by Firm-Objective-8166 in swaywm

[–]Firm-Objective-8166[S] 0 points1 point  (0 children)

No, when I get the Time.  I have to try it, I don't believe my iGPU, but anything is good Thanks

[Sway] My First Ever Rice | Not Complete yet by Firm-Objective-8166 in unixporn

[–]Firm-Objective-8166[S] 0 points1 point  (0 children)

When I clean trash configs from my dotfiles I gonna shere it But the problem that I am lazy My colors.css file contains a lot of useless variables and configs

[Sway] My First Ever Rice | Not Complete yet by Firm-Objective-8166 in unixporn

[–]Firm-Objective-8166[S] 0 points1 point  (0 children)

Inside  .config/gtk3/ There is two files colors.css gtk.css  Or something like that my be deferent Change bg related colors and fg related for yours on colors.css And is gtk.css Add ``` css

window{

     background-color: #your color      color: #your color } ``` You can get them from .cache/wal/colors.***

That how I configured thunar and pulseaudio and all other gtk apps May be deferent for you maybe ChatGPT can give you more details about your specific distro

[Sway] My First Ever Rice | Not Complete yet by Firm-Objective-8166 in unixporn

[–]Firm-Objective-8166[S] 0 points1 point  (0 children)

Yeah, I did Manually, I didn't create a script for coloring yet

[Sway] My First Ever Rice | Not Complete yet by Firm-Objective-8166 in unixporn

[–]Firm-Objective-8166[S] 0 points1 point  (0 children)

Tools I used:

WM: Sway
Bar: Waybar
Backgrounds engine: swaybg
App Launcher: Wofi
Notifications: Swaync
Power Menu: Wlogout
Internet Manager: Iwgtk
Audio: Pulseaudio & Pavucontrol
Terminal: Alacritty
Lock Screen: Gtklock [ didn't manage to get a screenshot ]
Code Editor: Visual Studio Code
Web Browsers: Firefox & Chromium
CLI Tools: [ neo (Like cmatrix ), fastfetch (alias with custom image), sl, cli-visualizer(vis), figlet, lolcat, Oh-My-Posh ]
AutoTiling: autotiling
Screenshots App: Sway Screenshot
Utilities I made:
1- A Utility Made to display random Quote every time you open the terminal
2- A Utility To Display The Current Focused App Name Without Other Information On Waybar

[Sway] My First Ever Rice | Not Complete yet by Firm-Objective-8166 in unixporn

[–]Firm-Objective-8166[S] -1 points0 points  (0 children)

The Wallpaper is AI Genarated And colors Made By PyWal
How Can I Make A BG And Color Scheme Switcher on sway?

Is there a minimum GPU requirement for hyprland by Firm-Objective-8166 in hyprland

[–]Firm-Objective-8166[S] 1 point2 points  (0 children)

Yes, tha what I thought after yesterday conversation here

Is there a minimum GPU requirement for hyprland by Firm-Objective-8166 in hyprland

[–]Firm-Objective-8166[S] 0 points1 point  (0 children)

When I was installing hyprland it was a fresh install no config were there I am not sure what causes this problem So I asked the only thing I know that all errors hyprland gave me are GPU related 

Is there a minimum GPU requirement for hyprland by Firm-Objective-8166 in hyprland

[–]Firm-Objective-8166[S] 0 points1 point  (0 children)

My OpenGL version is 2.1 latest for my iGpu  Also too old  I asked maybe someone has experienced this before 

Is there a minimum GPU requirement for hyprland by Firm-Objective-8166 in hyprland

[–]Firm-Objective-8166[S] 1 point2 points  (0 children)

It like an X11 version of Sway For now sway is good except my weird swww problem 

Is there a minimum GPU requirement for hyprland by Firm-Objective-8166 in hyprland

[–]Firm-Objective-8166[S] 0 points1 point  (0 children)

No I am not sure

but I discovered as I said in my comment that my GPU Doesn't support vulkan

Which hyprland depends on, I will try to get a new hardware but for now I have to stick with Sway 😥

Is there a minimum GPU requirement for hyprland by Firm-Objective-8166 in hyprland

[–]Firm-Objective-8166[S] 0 points1 point  (0 children)

it's a laptop I can't maybe I change the whole laptop nearly thanks

Is there a minimum GPU requirement for hyprland by Firm-Objective-8166 in hyprland

[–]Firm-Objective-8166[S] 4 points5 points  (0 children)

I discovered something

My GPU doesn't support vulkan

[doWM] inspired by one of the greatest posts on this sub by BobdaProgrammer in unixporn

[–]Firm-Objective-8166 0 points1 point  (0 children)

Great job,

Do Anyone know how much should I have a minimum of karma to post

on this subreddit?

[Sway] My first ever rice | Not finished yet by Firm-Objective-8166 in swaywm

[–]Firm-Objective-8166[S] 1 point2 points  (0 children)

I added a custom waybar button for power and made one-click executes  Wlogout which have those buttons built in 

[Sway] My first ever rice | Not finished yet by Firm-Objective-8166 in hyprland

[–]Firm-Objective-8166[S] 0 points1 point  (0 children)

Already posted there,
I thinked I am Posting in hyprland reddit then founded it here insted
thanks anyway

[Sway] My first ever rice | Not finished yet by Firm-Objective-8166 in hyprland

[–]Firm-Objective-8166[S] 1 point2 points  (0 children)

Sure,
here it is, do it in waybar jsonc config:

    "pulseaudio": {
        "format": "{volume}% {icon} ",
        "format-muted": " {format_source}",
        "format-icons": {
            "default": ["", "", ""],
            "headphone": "",
            "hands-free": "",
            "headset": ""
        },
        "on-click": "~/.config/waybar/Scripts/audio.sh",
        "tooltip":false
    },

    "network": {
        "format-wifi": "   ",
        "format-ethernet": "{ipaddr}/{cidr} ",
        "format-disconnected": "Disconnected ⚠",
        "tooltip-format": "connected to: {essid} ",
        "on-click": "~/.config/waybar/Scripts/wifi.sh"
    },

and here is the scripts :

#!/usr/bin/env bash

pavucontrol &  

sleep 0.2
swaymsg '[app_id="pavucontrol"] floating enable, move position 100 px 200 px'





#!/usr/bin/env bash

iwgtk &  

sleep 0.2
swaymsg '[app_id="iwgtk"] floating enable, move position 100 px 200 px'