├── .github ├── apps.png ├── latest.png ├── launcher.png ├── lockscreen.png ├── preview.png └── volume.png ├── .gitignore ├── DEBIAN └── control ├── PKGBUILD ├── README.md └── src └── usr ├── bin └── calla └── share ├── calla ├── Xresources ├── compositor.conf ├── desktop │ ├── color │ │ ├── .backup │ │ │ ├── bloom │ │ │ │ ├── bloom.json │ │ │ │ └── bloom.png │ │ │ ├── dark │ │ │ │ ├── dark.json │ │ │ │ ├── dark.json.bak │ │ │ │ └── dark.png │ │ │ ├── light │ │ │ │ ├── light.json │ │ │ │ └── light.png │ │ │ ├── sakura │ │ │ │ ├── sakura.json │ │ │ │ └── sakura.png │ │ │ ├── shore │ │ │ │ ├── shore.json │ │ │ │ └── shore.png │ │ │ └── wave │ │ │ │ ├── wave.json │ │ │ │ └── wave.png │ │ ├── dark │ │ │ ├── dark.json │ │ │ └── dark.png │ │ ├── desktop.lua │ │ ├── light │ │ │ ├── light.json │ │ │ └── light.png │ │ ├── solarized │ │ │ ├── solarized.json │ │ │ └── solarized.png │ │ └── terminal.sh │ ├── config │ │ ├── bind.lua │ │ ├── init.lua │ │ ├── main.lua │ │ ├── rule.lua │ │ └── shot.lua │ ├── json.lua │ ├── rc.lua │ ├── signal │ │ ├── brightness.lua │ │ ├── desktop.lua │ │ ├── init.lua │ │ ├── playerctl.lua │ │ └── volume.lua │ └── theme │ │ ├── brightness.lua │ │ ├── control │ │ ├── calendar.lua │ │ ├── init.lua │ │ ├── media.lua │ │ ├── notifs.lua │ │ ├── profile.lua │ │ ├── sliders.lua │ │ ├── system.lua │ │ └── toggles.lua │ │ ├── desktop.lua │ │ ├── dock.lua │ │ ├── icons │ │ ├── battery0.svg │ │ ├── battery10.svg │ │ ├── battery100.svg │ │ ├── battery25.svg │ │ ├── battery50.svg │ │ ├── battery80.svg │ │ ├── batterynone.svg │ │ ├── bluetoothoff.svg │ │ ├── bluetoothon.svg │ │ ├── brightness0.svg │ │ ├── brightness100.svg │ │ ├── brightness25.svg │ │ ├── brightness50.svg │ │ ├── brightness75.svg │ │ ├── calla.png │ │ ├── calla.svg │ │ ├── clock.svg │ │ ├── close.png │ │ ├── close.svg │ │ ├── compositoroff.svg │ │ ├── compositoron.svg │ │ ├── down.svg │ │ ├── error.svg │ │ ├── exit.svg │ │ ├── floating.png │ │ ├── left.svg │ │ ├── lock.svg │ │ ├── maximize.png │ │ ├── minimize.png │ │ ├── musicoff.svg │ │ ├── musicon.svg │ │ ├── next.svg │ │ ├── notificationsoff.svg │ │ ├── notificationson.svg │ │ ├── pause.svg │ │ ├── play.svg │ │ ├── previous.svg │ │ ├── restart.svg │ │ ├── right.svg │ │ ├── settings.svg │ │ ├── shutdown.svg │ │ ├── stop.svg │ │ ├── submenu.png │ │ ├── tile.png │ │ ├── up.svg │ │ ├── volume0.svg │ │ ├── volume100.svg │ │ ├── volume25.svg │ │ ├── volume50.svg │ │ ├── volumemute.svg │ │ ├── volumewarn.svg │ │ ├── wifinotconnected.svg │ │ ├── wifioff.svg │ │ ├── wifion.svg │ │ └── wifisearching.svg │ │ ├── init.lua │ │ ├── launcher.lua │ │ ├── lock.lua │ │ ├── notif.lua │ │ ├── panel.lua │ │ ├── preview.lua │ │ ├── settings.lua │ │ ├── theme.lua │ │ ├── title.lua │ │ └── volume.lua └── xsettingsd ├── fonts └── TTF │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── RobotoMono-Bold.ttf │ ├── RobotoMono-BoldItalic.ttf │ ├── RobotoMono-ExtraLight.ttf │ ├── RobotoMono-ExtraLightItalic.ttf │ ├── RobotoMono-Italic.ttf │ ├── RobotoMono-Light.ttf │ ├── RobotoMono-LightItalic.ttf │ ├── RobotoMono-Medium.ttf │ ├── RobotoMono-MediumItalic.ttf │ ├── RobotoMono-Regular.ttf │ ├── RobotoMono-SemiBold.ttf │ ├── RobotoMono-SemiBoldItalic.ttf │ ├── RobotoMono-Thin.ttf │ └── RobotoMono-ThinItalic.ttf ├── themes ├── dark │ ├── assets │ │ ├── svg │ │ │ ├── check.svg │ │ │ └── radio.svg │ │ └── symbolic │ │ │ ├── check.symbolic.png │ │ │ └── radio.symbolic.png │ ├── gtk-3.0 │ │ ├── gtk.css │ │ └── gtk.css.map │ └── index.theme ├── light │ ├── assets │ │ ├── svg │ │ │ ├── check.svg │ │ │ └── radio.svg │ │ └── symbolic │ │ │ ├── check.symbolic.png │ │ │ └── radio.symbolic.png │ ├── gtk-3.0 │ │ ├── gtk.css │ │ └── gtk.css.map │ └── index.theme └── solarized │ ├── assets │ ├── svg │ │ ├── check.svg │ │ └── radio.svg │ └── symbolic │ │ ├── check.symbolic.png │ │ └── radio.symbolic.png │ ├── gtk-3.0 │ ├── gtk.css │ └── gtk.css.map │ └── index.theme └── xsessions └── calla.desktop /.github/apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/.github/apps.png -------------------------------------------------------------------------------- /.github/latest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/.github/latest.png -------------------------------------------------------------------------------- /.github/launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/.github/launcher.png -------------------------------------------------------------------------------- /.github/lockscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/.github/lockscreen.png -------------------------------------------------------------------------------- /.github/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/.github/preview.png -------------------------------------------------------------------------------- /.github/volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/.github/volume.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | pkg/ 2 | *.tar.* 3 | *.deb 4 | package/ -------------------------------------------------------------------------------- /DEBIAN/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/DEBIAN/control -------------------------------------------------------------------------------- /PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/PKGBUILD -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/README.md -------------------------------------------------------------------------------- /src/usr/bin/calla: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/bin/calla -------------------------------------------------------------------------------- /src/usr/share/calla/Xresources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/Xresources -------------------------------------------------------------------------------- /src/usr/share/calla/compositor.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/compositor.conf -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/bloom/bloom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/bloom/bloom.json -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/bloom/bloom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/bloom/bloom.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/dark/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/dark/dark.json -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/dark/dark.json.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/dark/dark.json.bak -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/dark/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/dark/dark.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/light/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/light/light.json -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/light/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/light/light.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/sakura/sakura.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/sakura/sakura.json -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/sakura/sakura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/sakura/sakura.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/shore/shore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/shore/shore.json -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/shore/shore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/shore/shore.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/wave/wave.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/wave/wave.json -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/.backup/wave/wave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/.backup/wave/wave.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/dark/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/dark/dark.json -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/dark/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/dark/dark.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/desktop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/desktop.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/light/light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/light/light.json -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/light/light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/light/light.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/solarized/solarized.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/solarized/solarized.json -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/solarized/solarized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/solarized/solarized.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/color/terminal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/color/terminal.sh -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/config/bind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/config/bind.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/config/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/config/init.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/config/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/config/main.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/config/rule.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/config/rule.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/config/shot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/config/shot.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/json.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/json.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/rc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/rc.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/signal/brightness.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/signal/brightness.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/signal/desktop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/signal/desktop.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/signal/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/signal/init.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/signal/playerctl.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/signal/playerctl.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/signal/volume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/signal/volume.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/brightness.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/brightness.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/control/calendar.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/control/calendar.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/control/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/control/init.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/control/media.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/control/media.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/control/notifs.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/control/notifs.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/control/profile.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/control/profile.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/control/sliders.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/control/sliders.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/control/system.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/control/system.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/control/toggles.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/control/toggles.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/desktop.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/desktop.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/dock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/dock.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/battery0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/battery0.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/battery10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/battery10.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/battery100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/battery100.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/battery25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/battery25.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/battery50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/battery50.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/battery80.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/battery80.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/batterynone.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/batterynone.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/bluetoothoff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/bluetoothoff.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/bluetoothon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/bluetoothon.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/brightness0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/brightness0.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/brightness100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/brightness100.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/brightness25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/brightness25.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/brightness50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/brightness50.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/brightness75.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/brightness75.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/calla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/calla.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/calla.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/calla.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/clock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/clock.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/close.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/close.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/close.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/compositoroff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/compositoroff.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/compositoron.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/compositoron.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/down.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/error.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/error.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/exit.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/exit.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/floating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/floating.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/left.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/left.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/lock.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/lock.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/maximize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/maximize.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/minimize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/minimize.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/musicoff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/musicoff.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/musicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/musicon.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/next.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/notificationsoff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/notificationsoff.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/notificationson.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/notificationson.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/pause.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/pause.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/play.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/play.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/previous.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/previous.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/restart.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/restart.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/right.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/right.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/settings.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/shutdown.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/shutdown.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/stop.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/stop.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/submenu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/submenu.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/tile.png -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/up.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/volume0.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/volume0.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/volume100.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/volume100.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/volume25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/volume25.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/volume50.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/volume50.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/volumemute.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/volumemute.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/volumewarn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/volumewarn.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/wifinotconnected.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/wifinotconnected.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/wifioff.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/wifioff.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/wifion.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/wifion.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/icons/wifisearching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/icons/wifisearching.svg -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/init.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/init.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/launcher.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/launcher.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/lock.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/lock.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/notif.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/notif.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/panel.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/panel.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/preview.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/preview.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/settings.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/settings.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/theme.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/theme.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/title.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/title.lua -------------------------------------------------------------------------------- /src/usr/share/calla/desktop/theme/volume.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/desktop/theme/volume.lua -------------------------------------------------------------------------------- /src/usr/share/calla/xsettingsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/calla/xsettingsd -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-Black.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-Bold.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-Italic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-Light.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-Medium.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-Regular.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-Thin.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-Bold.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-BoldItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-ExtraLight.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-ExtraLightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-ExtraLightItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-Italic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-Light.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-LightItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-Medium.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-MediumItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-Regular.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-SemiBold.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-SemiBoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-SemiBoldItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-Thin.ttf -------------------------------------------------------------------------------- /src/usr/share/fonts/TTF/RobotoMono-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/fonts/TTF/RobotoMono-ThinItalic.ttf -------------------------------------------------------------------------------- /src/usr/share/themes/dark/assets/svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/dark/assets/svg/check.svg -------------------------------------------------------------------------------- /src/usr/share/themes/dark/assets/svg/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/dark/assets/svg/radio.svg -------------------------------------------------------------------------------- /src/usr/share/themes/dark/assets/symbolic/check.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/dark/assets/symbolic/check.symbolic.png -------------------------------------------------------------------------------- /src/usr/share/themes/dark/assets/symbolic/radio.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/dark/assets/symbolic/radio.symbolic.png -------------------------------------------------------------------------------- /src/usr/share/themes/dark/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/dark/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /src/usr/share/themes/dark/gtk-3.0/gtk.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/dark/gtk-3.0/gtk.css.map -------------------------------------------------------------------------------- /src/usr/share/themes/dark/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/dark/index.theme -------------------------------------------------------------------------------- /src/usr/share/themes/light/assets/svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/light/assets/svg/check.svg -------------------------------------------------------------------------------- /src/usr/share/themes/light/assets/svg/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/light/assets/svg/radio.svg -------------------------------------------------------------------------------- /src/usr/share/themes/light/assets/symbolic/check.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/light/assets/symbolic/check.symbolic.png -------------------------------------------------------------------------------- /src/usr/share/themes/light/assets/symbolic/radio.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/light/assets/symbolic/radio.symbolic.png -------------------------------------------------------------------------------- /src/usr/share/themes/light/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/light/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /src/usr/share/themes/light/gtk-3.0/gtk.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/light/gtk-3.0/gtk.css.map -------------------------------------------------------------------------------- /src/usr/share/themes/light/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/light/index.theme -------------------------------------------------------------------------------- /src/usr/share/themes/solarized/assets/svg/check.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/solarized/assets/svg/check.svg -------------------------------------------------------------------------------- /src/usr/share/themes/solarized/assets/svg/radio.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/solarized/assets/svg/radio.svg -------------------------------------------------------------------------------- /src/usr/share/themes/solarized/assets/symbolic/check.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/solarized/assets/symbolic/check.symbolic.png -------------------------------------------------------------------------------- /src/usr/share/themes/solarized/assets/symbolic/radio.symbolic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/solarized/assets/symbolic/radio.symbolic.png -------------------------------------------------------------------------------- /src/usr/share/themes/solarized/gtk-3.0/gtk.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/solarized/gtk-3.0/gtk.css -------------------------------------------------------------------------------- /src/usr/share/themes/solarized/gtk-3.0/gtk.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/solarized/gtk-3.0/gtk.css.map -------------------------------------------------------------------------------- /src/usr/share/themes/solarized/index.theme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/themes/solarized/index.theme -------------------------------------------------------------------------------- /src/usr/share/xsessions/calla.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Stardust-kyun/calla/HEAD/src/usr/share/xsessions/calla.desktop --------------------------------------------------------------------------------