UBports Robot Logo UBports Forum
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • Search
    • Register
    • Login
    1. Home
    2. sixwheeledbeast
    3. Topics
    S
    Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 2
    • Posts 14
    • Groups 0

    Topics

    • S

      Fairphone 5 - 24.04-1.0

      Watching Ignoring Scheduled Pinned Locked Moved Fairphone 5
      6
      3 Votes
      6 Posts
      347 Views
      KenedaK
      @MrFrog222 You should not install packages nor make your system r/w. It's not a UBports supported way of using Ubuntu Touch. You should use click apps, libertine contener, or crackle way... Or use snapz0r. It's absolutely normal not being able to extend "/"... And doing so is definitely not supported. https://forums.ubports.com/search?in=titlesposts&term=crackle &matchWords=all&by=&categories=&searchChildren=false&hasTags=&replies=&repliesFilter=atleast&timeFilter=newer&timeRange=&sortBy=relevance&sortDirection=desc&showAs=topics
    • S

      For devices with no Notification LED is it possible to use flashlight instead?

      Watching Ignoring Scheduled Pinned Locked Moved Fairphone 5
      7
      0 Votes
      7 Posts
      467 Views
      S
      To progress further with the initial flashlight idea, controlling the flash directly appears to work fine in the following way. #!/usr/bin/env bash flashOff() { printf '%s' "0" > /sys/class/leds/led:torch_0/brightness printf '%s' "0" > /sys/class/leds/led:switch_0/brightness } flashOn() { # 2 appears to be the minimum brightness value possible printf '%s' "2" > /sys/class/leds/led:torch_0/brightness printf '%s' "1" > /sys/class/leds/led:switch_0/brightness } So with a loop I can have a nice flashing pattern at the minimum brightness. Just need to find what to hook into so I can have it only running only while there is a green notifications icon. As for using the screen, I think the green envelope icon, possibly slowly moving along the top edge of the screen (to minimise any burn in); would be a nice option there.