mobsenpai

joined 1 year ago
[–] [email protected] 1 points 4 days ago

I am guessing shibuya kaho but with no confidence

 

Any way to semi achieve the image search like pinterest without using it? I've tried using google, technically it should give the same or better results but how the hell pinterest gives better search results. Also pinterest removes the context behind the image and is a privacy nightmare. I want to move away from it.

------\\------- Anyone wondering what did I end up with? Here's what I am doing. I have deactivated my pinterest account and if I specifically want results from pinterest and pinterest only then I use services such as binterest (actually that the only one working right now) and if I instant like something I take a pic of it and save in my proton drive (cloud) and if I need more recommendations out of it then I just use the google image search on that image and there's a camera like icon if you click on it, it shows more closely related images and I think that works the best instead of the general related stuff that come up upon selecting the image (the sidebar) and I keep doing that on every next image I click on.

[–] [email protected] 2 points 3 weeks ago* (last edited 3 weeks ago)

My other guess: marry my husband It was from those popular manhwas. Something like this, the fl sat in middle being enough of his affection

[–] [email protected] 2 points 3 weeks ago* (last edited 3 weeks ago) (2 children)

Lol! thats truee. Um I don't know it's been bugging me for so long.. It was comething like this.

 

cross-posted from: https://lemmy.world/post/26024644

"I'm searching for a manga and I'm hoping someone can help me identify it. A key detail I remember is how the author portrayed the male lead's change in personality after he starts dating the female lead. He was reserved before, but became very affectionate afterward. Crucially, there was a panel showing this transformation side-by-side: him being indifferent to her before, and then acting like an excited, puppy-like boyfriend after. Does anyone know which manga this could be?"

My guesse(s) are: kiss sixth sense but couldn't find the pic.

 

"I'm searching for a manga and I'm hoping someone can help me identify it. A key detail I remember is how the author portrayed the male lead's change in personality after he starts dating the female lead. He was reserved before, but became very affectionate afterward. Crucially, there was a panel showing this transformation side-by-side: him being indifferent to her before, and then acting like an excited, puppy-like boyfriend after. Does anyone know which manga this could be?"

My guesse(s) are: kiss sixth sense but couldn't find the pic.

 

Guys please give a star on my github 👉 dots

 

cross-posted from: https://lemmy.world/post/25786273

cross-posted from: https://lemmy.world/post/25765733

general {
  after_sleep_cmd=hyprctl dispatch dpms on
  before_sleep_cmd=loginctl lock-session
  lock_cmd=hyprlock
}

listener {
  on-timeout=loginctl lock-session
  timeout=300
}

listener {
  on-resume=hyprctl dispatch dpms on
  on-timeout=hyprctl dispatch dpms off
  timeout=330
}

listener {
  on-timeout=systemctl suspend
  timeout=600
}

Guys I feel like there's something wrong or odd in this config, cuz, I don't know whats responsible for this but, it looks like things aren't working well together, I said it looks like cuz I never caugth an actual error. So what happens is that after I leave my laptop idle, the hypridle starts doing its thing and most of the times it works, my laptop is suspended, hyprlock works etc, but sometimes, after I press any button on my keyboard to wake my laptop, I can see that my laptop is up, but all I can see is black screen, and then I have to hard shutdown the laptop, so somethings is not adding up here.

 

cross-posted from: https://lemmy.world/post/25765733

general {
  after_sleep_cmd=hyprctl dispatch dpms on
  before_sleep_cmd=loginctl lock-session
  lock_cmd=hyprlock
}

listener {
  on-timeout=loginctl lock-session
  timeout=300
}

listener {
  on-resume=hyprctl dispatch dpms on
  on-timeout=hyprctl dispatch dpms off
  timeout=330
}

listener {
  on-timeout=systemctl suspend
  timeout=600
}

Guys I feel like there's something wrong or odd in this config, cuz, I don't know whats responsible for this but, it looks like things aren't working well together, I said it looks like cuz I never caugth an actual error. So what happens is that after I leave my laptop idle, the hypridle starts doing its thing and most of the times it works, my laptop is suspended, hyprlock works etc, but sometimes, after I press any button on my keyboard to wake my laptop, I can see that my laptop is up, but all I can see is black screen, and then I have to hard shutdown the laptop, so somethings is not adding up here.

 
general {
  after_sleep_cmd=hyprctl dispatch dpms on
  before_sleep_cmd=loginctl lock-session
  lock_cmd=hyprlock
}

listener {
  on-timeout=loginctl lock-session
  timeout=300
}

listener {
  on-resume=hyprctl dispatch dpms on
  on-timeout=hyprctl dispatch dpms off
  timeout=330
}

listener {
  on-timeout=systemctl suspend
  timeout=600
}

Guys I feel like there's something wrong or odd in this config, cuz, I don't know whats responsible for this but, it looks like things aren't working well together, I said it looks like cuz I never caugth an actual error. So what happens is that after I leave my laptop idle, the hypridle starts doing its thing and most of the times it works, my laptop is suspended, hyprlock works etc, but sometimes, after I press any button on my keyboard to wake my laptop, I can see that my laptop is up, but all I can see is black screen, and then I have to hard shutdown the laptop, so somethings is not adding up here.

1
submitted 4 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]
 

cross-posted from: https://lemmy.world/post/21426498

I use nixos + greetd + tuigreet + hyprland. I missed to mention that I wanted to disable or hide the logs that gets shows when starting hyprland from tty terminal by writing Hyprland or when using greetd tuigreet. After entering my username and password, These logs show before hyprland starts, I want to avoid that

0
submitted 4 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]
 

When using tty or greetd to start it. I use nixos + greetd + tuigreet + hyprland.

1
submitted 4 months ago* (last edited 4 months ago) by [email protected] to c/[email protected]
 

Edit: Solved, check the comments

cross-posted from: https://lemmy.world/post/21359091

Using this works:

    services.greetd = {
      enable = true;
      settings = {
        initial_session = {
          command = "Hyprland";
          user = "yashraj";
        };
        default_session = {
          command = "${lib.getExe pkgs.greetd.tuigreet} --time --cmd Hyprland";
          user = "yashraj";
        };
      };
    };

But using this doesn't:

    services.greetd = {
      enable = true;
      settings = {
        default_session = {
          user = "yashraj";
          command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --sessions ${pkgs.hyprland}/share/wayland-session --remember --remember-session";
        };
      };
    };

I wan't to be able to use --sessions. what could I be doing wrong? I am using latest nixos stable.

The only error returned here is after I enter my username 'yashraj' then my password 'nixos' is: expected Args or Cancel, got Pamresponse {resp: some("nixos")}

Notes:

I haven't commited the greetd file to my github yet. But I've still attached the link to my github if it may be relevant to solve this issue.

Please give any info

[–] [email protected] 1 points 7 months ago

ha ha!! take that!

[–] [email protected] 1 points 7 months ago
[–] [email protected] 2 points 7 months ago

Bro you carried it. Thank you for your effort, I was able to find the magazines, some of them are not translated yet so I will wait and come back again. But thanks again.

[–] [email protected] 2 points 7 months ago

Gotcha~ I will take care of it in future.

[–] [email protected] 2 points 7 months ago* (last edited 7 months ago)

looks amazing!!!

Could I get the hex codes you used for this rice?

[–] [email protected] 3 points 7 months ago

got it. thanks

 

Problem -> When doing file transfers (mtp) or running some cli commands like nixos-rebuild, when the hyprlock kicks in they are pause at that point and only resume after unlock.

One thing I am kind of noticing that it may be the systemctl suspend command that is suspending the processes. But overall I am confused with the best combination of pairing both the two programs.

Here is the config (for hypridle)

general {
  before_sleep_cmd=loginctl lock-session
  lock_cmd=hyprlock
}

listener {
  on-timeout=suspend-script
  timeout=1800
}

(The suspend script)

      pw-cli i all 2>&1 | grep running -q
      # Only suspend if audio isn't running
      if [ $? == 1 ]; then
        systemctl suspend
      fi

Let me know if you have any solution. The link attached to this post is for my github hosting my nixos dotfiles, maybe that can also help.

[–] [email protected] 26 points 8 months ago

lol. I am glad I became privacy conscious before this happened.

 

I always use all:unset in my css files and I did the same when configuring the swaync notification but somehow when using it inside global selector *{} it doesn't show the volumeslider which is shows in a notification, related pictures will be attached. I wanna use all:unset and so I want to know how to re-enable volumeslider without removing all:unset. I've found this config to also use it but its in scss so I didn't test it.

with all:unset using all:unset

without all:unset without all:unset

Full style.css ->

* {
  all: unset;
  font-family: "FiraMono Nerd Font";
  font-size: 10pt;
  font-weight: normal;
}

.notification {
  background: #3c3836;
  border: 1px solid #504945;
  border-radius: 8px;
  padding: 7px;
}

.notification-content {
  background: #3c3836;
  color: #ebdbb2;
}

.notification-row {
  margin: 2px;
}

.close-button {
  background: #cc241d;
  border-radius: 50%;
  color: #282828;
}

.close-button:hover {
  background: #fb4934;
  transition: all 0.15s ease-in-out;
}

.time {
  color: #98971a;
  font-size: 9pt;
  margin-right: 24px;
}

.control-center {
  background: #3c3836;
  border: 1px solid #504945;
  border-radius: 8px;
  padding: 8px;
}

.control-center-list-placeholder {
  background: #3c3836;
  color: #7c6f64;
}

.widget-title {
  background: #3c3836;
  color: #ebdbb2;
}

.widget-title > button {
  background: #98971a;
  color: #282828;
  border-radius: 4px;
  padding: 2px;
}

.widget-title > button:hover {
  background: #b8bb26;
  color: #282828;
  transition: all 0.15s ease-in-out;
}

.widget-dnd {
  background: #3c3836;
  color: #ebdbb2;
}

.widget-dnd > switch {
  background: #665c54;
  border-radius: 4px;
}

.widget-dnd > switch:checked {
  background: #d65d0e;
}

.widget-dnd > switch slider {
  background: #282828;
  border-radius: 4px;
}

[–] [email protected] 1 points 9 months ago* (last edited 9 months ago)

Both are separate ones.

[–] [email protected] 3 points 10 months ago

Hm looks amazing. Tq.

view more: next ›