Switch.yaml help

Capture 1
is there a way to make a switch from switch.yaml not be 2 lightning bolts (above) but a toggle switch instead(below)?
Capture 2

my switch.yaml code:

- platform: template
  switches:
    bedroom_ac:
      friendly_name: Bedroom Ac
      turn_on:
        service: switch.toggle
        data:
          entity_id: switch.bedroom_ac
      turn_off:
        service: switch.toggle
        data:
          entity_id: switch.bedroom_ac

    living_room_ac:
      friendly_name: Living Room AC
      turn_on:
        service: switch.toggle
        data:
          entity_id: switch.living_room_ac
      turn_off:
        service: switch.toggle
        data:
          entity_id: switch.living_room_ac

    projector:
      friendly_name: Projector
      turn_on:
        service: switch.toggle
        data:
          entity_id: switch.projector
      turn_off:
        service: switch.toggle
        data:
          entity_id: switch.projector

If you set the customization for the switches to the following I think that gives you the toggle instead of the lightening bolts:

assumed_state: false

I have it set as a global customization in my configuration.yaml under the homeassistant: section

homeassistant:
  customize_glob:
    switch.*:
      assumed_state: false